From 7d3954097d2a3c18c5f84414e38f45191f81c7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Thu, 7 May 2026 16:15:29 +0000 Subject: [PATCH] docs: fix deprecated CLI commands in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - workflow add (was: add) - workflow list (was: list) - thread list (was: threads) - thread show (was: thread) 小橘 🍊 --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b6f59b7..e1abab0 100644 --- a/README.md +++ b/README.md @@ -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 # Start a workflow thread -uncaged-workflow threads # List all threads -uncaged-workflow thread # 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 # Start a workflow thread +uncaged-workflow thread list # List all threads +uncaged-workflow thread show # 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