Agent Skillsstella/stella › stella-cli

stella-cli

GitHub

stella CLI 是法律工作区的命令行客户端,支持安装、OAuth 认证及基于 MCP 注册表的命令执行。提供 JSON 输出、深度载荷注入、游标分页及破坏性操作确认,旨在赋能脚本与 Agent 自动化交互。

packages/cli/skills/stella-cli/SKILL.md stella/stella

Trigger Scenarios

需要调用 stella 平台 API 或执行法律相关任务 需要在脚本或 Agent 中解析结构化数据 需要处理 OAuth 登录状态

Install

npx skills add stella/stella --skill stella-cli -g -y
More Options

Non-standard path

npx skills add https://github.com/stella/stella/tree/main/packages/cli/skills/stella-cli -g -y

Use without installing

npx skills use stella/stella@stella-cli

指定 Agent (Claude Code)

npx skills add stella/stella --skill stella-cli -a claude-code -g -y

安装 repo 全部 skill

npx skills add stella/stella --all -g -y

预览 repo 内 skill

npx skills add stella/stella --list

SKILL.md

Frontmatter
{
    "name": "stella-cli",
    "metadata": {
        "type": "reference",
        "library": "@stll\/cli"
    },
    "description": "Drive the stella command-line client (@stll\/cli), a legal-workspace CLI whose command surface is generated from the stella MCP tool registry. Covers install, OAuth login, the full command tree grouped by domain, JSON output for scripting, the --input escape hatch for deep payloads, cursor pagination, destructive-op confirmation, and exit codes."
}

stella CLI

@stll/cli is the command-line client for stella, an open-source legal workspace. Curated tools use stella <domain> <action>; generated capability commands use stella capability <domain> <action>. Both surfaces are generated from the stella MCP tool registry, so they mirror exactly the tools a stella server exposes. Every command works for humans, scripts, and agents alike.

Install

npm i -g @stll/cli

Authenticate

stella auth login

Login runs an OAuth 2.1 authorization-code flow with PKCE against the stella server, using a loopback listener (http://127.0.0.1/callback, ephemeral port) to capture the code. Credentials are stored per server origin, so one machine can hold sessions for several servers at once. Point at a non-default server with --server <url>; scope the session with --scopes (default scopes: openid profile email stella:read stella:search). stella auth whoami shows the active session; stella auth logout clears it.

Conventions every agent must know

  • Output format: table is the default only on a TTY; piped/non-TTY output defaults to JSON. Force it with --output json|table (or --json / --table). Always pass --output json when scripting or parsing.
  • Deep payloads: any command accepts --input '<json>' for the whole tool argument object, --input @file to read JSON from a file, or --input - to read JSON from stdin. Individual string flags also take gh-style @file / @- sugar (use @@ to pass a literal leading @).
  • Array flags are repeatable: pass the flag once per value.
  • Pagination: list commands take --cursor <c> and --limit <n>; --all follows cursors up to bounded ceilings. The nextCursor resume hint is written to stderr (more: --cursor <c>) so piped JSON on stdout stays clean.
  • Destructive commands (delete/remove) prompt for confirmation on a TTY and require --yes when there is no TTY to confirm on. The CLI owns the server's confirm gate: it injects confirm: true only after you confirm (or pass --yes), so there is no separate --confirm flag to pass.
  • Errors print error: <message> (and hint: <next step> when the server supplies one) to stderr as plain text, never to stdout, so a scripted stdout stays clean even with --output json. Every tool error carries a stable machine code that maps to the process exit code (see below): branch on the exit code, and read the error:/hint: lines for the human-readable message.
  • MCP resources: stella reference list enumerates static server resources; stella reference show <name> prints one.

Exit codes

Code Meaning
0 success
1 unexpected internal error
2 usage or input validation error
3 authentication required or failed (run stella auth login)
4 server or tool error
5 feature disabled for this organization
6 resource not found
7 confirmation aborted (a destructive op was declined)
8 permission denied (member role lacks the required permission)
9 usage entitlement exceeded
10 conflict with current state (duplicate or concurrent change)

The exit code lines up with the tool-error code: validation_error -> 2, missing_scope -> 3, feature_disabled -> 5, not_found -> 6, confirmation_required -> 7, and rate_limited / upstream_unavailable / unknown_tool / internal_error -> 4. A legacy server that tags only a bare feature_disabled code (no envelope) still maps to 5; anything else falls to 4.

Capability commands (full surface)

Beyond the curated commands above, the CLI generates 293 capability commands from the server's capability catalog: every safe handler that is not a curated tool, reached through the generic invoke_capability path. Every generated command lives at stella capability <domain> <action>; multi-segment capability actions are flattened with hyphens into <action>.

  • Discover: stella capability list [--domain <d>] [--access read|write] enumerates them (paginated); stella capability describe <id> prints one capability's full input schema, scope, and flags.
  • Invoke by id (forward-compatible with any server): stella capability invoke <id> --input '<json>', where the JSON is { body?, params?, query? }.
  • Flags: each capability command derives flags from its input schema; workspace-scoped capabilities take a required --workspace <id>. Deep or ambiguous payloads use --input (the whole { body?, params?, query? }).
  • Dry run: --dry-run validates the input server-side and returns without executing (maps to validateOnly).
  • Destructive capabilities prompt on a TTY and need --yes off a TTY; the server's per-capability confirm gate is satisfied automatically once confirmed.
  • Exit codes are identical to the curated commands (see above).

Filing feedback

stella feedback send files a bug, feature request, or docs issue with the maintainers. Content is sanitized server-side (emails, ids, secrets, URLs, and IPs are redacted); never include tenant data, client or matter names, ids, or secrets: describe the problem, reproduction steps, and expected vs actual result. Pass --kind, --title, and --body.

  • github (preferred): returns a prefilled new-issue URL and a gh command the human opens and submits under their own GitHub account. The CLI never publishes anything itself.

Command tree

Generated from the MCP tool registry; Access is the OAuth scope the command requires (request it at stella auth login --scopes).

Domain Command Access Notes
audit-log stella audit-log list admin_read paginated
capability stella capability describe read
capability stella capability invoke read
capability stella capability list read paginated
case-law stella case-law read read paginated; windowed text
case-law stella case-law search search paginated
clause stella clause delete knowledge_write destructive (needs --yes off a TTY)
clause stella clause list read paginated
clause stella clause save knowledge_write
contact stella contact delete matters_write destructive (needs --yes off a TTY)
contact stella contact list read paginated
contact stella contact lookup-registry read
contact stella contact read read
contact stella contact save matters_write
document stella document delete documents_write destructive (needs --yes off a TTY)
document stella document field set documents_write
document stella document list read paginated
document stella document properties list read paginated
document stella document read read
document stella document save documents_write
feedback stella feedback send feedback
invoice stella invoice list read paginated
legislation stella legislation search read paginated
matter stella matter delete matters_write destructive (needs --yes off a TTY)
matter stella matter link-contact matters_write
matter stella matter list read paginated
matter stella matter save matters_write
organization stella organization add-member admin_write
organization stella organization remove-member admin_write destructive (needs --yes off a TTY)
organization stella organization set-jurisdictions onboarding
organization stella organization update-settings admin_write
playbook stella playbook list read paginated
playbook stella playbook run knowledge_write
rate stella rate resolve read
search stella search matters search paginated
search stella search read read paginated; windowed text
task stella task list read paginated
task stella task save matters_write
template stella template fill templates
template stella template list templates paginated
template stella template save templates
template stella template save-filled new-document documents_write + templates
template stella template save-filled new-version documents_write + templates
time-entry stella time-entry delete billing_write destructive (needs --yes off a TTY)
time-entry stella time-entry list read paginated
time-entry stella time-entry save billing_write
usage stella usage get read

Version History

  • dd81665 Current 2026-08-16 07:10

    新增 Playbooks 功能支持,包括首页启动、ID 幂等性及迁移修复;重构文件传输机制,引入 CapabilityTransport 区分输入/输出类型并消除配置漂移。

  • 85792bd 2026-07-24 16:12

Same Skill Collection

.agents/skills/click-around/SKILL.md
.agents/skills/conventions-ai/SKILL.md
.agents/skills/conventions-db/SKILL.md
.agents/skills/conventions-i18n/SKILL.md
.agents/skills/conventions-ingestion/SKILL.md
.agents/skills/conventions-perf/SKILL.md
.agents/skills/conventions-scale/SKILL.md
.agents/skills/conventions-security/SKILL.md
.agents/skills/conventions-use-effect/SKILL.md
.agents/skills/conventions-ux/SKILL.md
.agents/skills/dev/SKILL.md
.agents/skills/finish-pr/SKILL.md
.agents/skills/new-handler/SKILL.md
.agents/skills/open-pr/SKILL.md
.agents/skills/plan/SKILL.md
.agents/skills/product-deep-think/SKILL.md
.agents/skills/product-think/SKILL.md
.agents/skills/rabbit-round/SKILL.md
.agents/skills/regression-hunt/SKILL.md
.agents/skills/security-audit/SKILL.md
.agents/skills/update-deps/SKILL.md
.ai/local-skills/click-around/SKILL.md
.ai/local-skills/conventions-ai/SKILL.md
.ai/local-skills/conventions-db/SKILL.md
.ai/local-skills/conventions-i18n/SKILL.md
.ai/local-skills/conventions-ingestion/SKILL.md
.ai/local-skills/conventions-perf/SKILL.md
.ai/local-skills/conventions-scale/SKILL.md
.ai/local-skills/conventions-security/SKILL.md
.ai/local-skills/conventions-use-effect/SKILL.md
.ai/local-skills/conventions-ux/SKILL.md
.ai/local-skills/dev/SKILL.md
.ai/local-skills/new-handler/SKILL.md
.ai/local-skills/open-pr/SKILL.md
.ai/local-skills/plan/SKILL.md
.ai/local-skills/product-deep-think/SKILL.md
.ai/local-skills/rabbit-round/SKILL.md
.ai/local-skills/security-audit/SKILL.md
.ai/local-skills/update-deps/SKILL.md
packages/skills/blueprints/answer-from-sources/SKILL.md
packages/skills/blueprints/blank/SKILL.md
packages/skills/blueprints/check-against-rules/SKILL.md
packages/skills/blueprints/intake-to-draft/SKILL.md
.agents/skills/conventions-testing/SKILL.md
.ai/local-skills/conventions-testing/SKILL.md

Metadata

Files
0
Version
dd81665
Hash
50992cdb
Indexed
2026-07-24 16:12

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-16 20:12
浙ICP备14020137号-1 $mapa de visitantes$