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
This commit is contained in:
Ben Vargas
2025-06-16 12:40:20 -06:00
committed by Ralph Khreish
parent 3e838ed34b
commit 7defcba465

View File

@@ -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