Compare commits

...

1 Commits

Author SHA1 Message Date
github-actions[bot]
a2f9baccdd docs: auto-update documentation based on changes in next branch
This PR was automatically generated to update documentation based on recent changes.

  Original commit: feat: implement api update-task (#1214)\n\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
2025-09-17 23:54:49 +00:00
2 changed files with 66 additions and 0 deletions

View File

@@ -99,8 +99,30 @@ sidebarTitle: "CLI Commands"
# Set status for subtasks
task-master set-status --id=1.1,1.2 --status=<status>
# Output in JSON format
task-master set-status --id=<id> --status=<status> --format=json
# Silent mode (suppress output)
task-master set-status --id=<id> --status=<status> --silent
# Specify project root directory
task-master set-status --id=<id> --status=<status> --project=/path/to/project
```
**Valid Status Values:**
- `pending` - Ready to work on
- `in-progress` - Currently being worked on
- `done` - Completed and verified
- `deferred` - Postponed
- `cancelled` - No longer needed
- `blocked` - Waiting on external factors
- `review` - Ready for review
**Output Formats:**
- `text` (default) - Human-readable colored output
- `json` - Machine-readable JSON format for programmatic usage
When marking a task as "done", all of its subtasks will automatically be marked as "done" as well.
</Accordion>

44
output.txt Normal file

File diff suppressed because one or more lines are too long