docs: fix deprecated CLI commands in README

- workflow add (was: add)
- workflow list (was: list)
- thread list (was: threads)
- thread show (was: thread)

小橘 🍊
This commit is contained in:
2026-05-07 16:15:29 +00:00
parent 4a925b98af
commit 7d3954097d
+8 -8
View File
@@ -39,7 +39,7 @@ bun install
bun run build
# Register a workflow bundle
uncaged-workflow add solve-issue dist/packages/workflow-template-solve-issue/solve-issue.esm.js
uncaged-workflow workflow add solve-issue dist/packages/workflow-template-solve-issue/solve-issue.esm.js
# Run a workflow
uncaged-workflow run solve-issue --prompt "Fix bug #42"
@@ -48,15 +48,15 @@ uncaged-workflow run solve-issue --prompt "Fix bug #42"
## CLI Usage
```bash
uncaged-workflow help # Show all commands
uncaged-workflow list # List registered workflows
uncaged-workflow run <name> # Start a workflow thread
uncaged-workflow threads # List all threads
uncaged-workflow thread <id> # Inspect a thread
uncaged-workflow skill # Show workflow skill info
uncaged-workflow help # Show all commands
uncaged-workflow workflow list # List registered workflows
uncaged-workflow run <name> # Start a workflow thread
uncaged-workflow thread list # List all threads
uncaged-workflow thread show <id> # Inspect a thread
uncaged-workflow skill # Agent-consumable reference docs
```
See `uncaged-workflow --help` for the full command reference.
See `uncaged-workflow help` for the full command reference.
## Development