From 7defcba46520211d939642a55c45adc1c23d15d9 Mon Sep 17 00:00:00 2001 From: Ben Vargas Date: Mon, 16 Jun 2025 12:40:20 -0600 Subject: [PATCH] fix(docs): correct invalid commands in claude-code usage examples - Remove non-existent 'do', 'estimate', and 'analyze' commands - Replace with actual Task Master commands: next, show, set-status - Use correct syntax for parse-prd and analyze-complexity --- docs/examples/claude-code-usage.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/examples/claude-code-usage.md b/docs/examples/claude-code-usage.md index dfd3b2af..3e46a476 100644 --- a/docs/examples/claude-code-usage.md +++ b/docs/examples/claude-code-usage.md @@ -42,16 +42,19 @@ Once configured, you can use Claude Code with all Task Master commands: ```bash # Generate tasks from a PRD -task-master parse-prd "Build a todo app with React" - -# Get a complexity estimate -task-master estimate +task-master parse-prd --input=prd.txt # Analyze project complexity -task-master analyze +task-master analyze-complexity -# Work on tasks -task-master do task-001 +# Show the next task to work on +task-master next + +# View a specific task +task-master show task-001 + +# Update task status +task-master set-status --id=task-001 --status=in-progress ``` ## Requirements