Compare commits

...

1 Commits

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

  Original commit: fix: add complexity score to tm list and tm show (#1270)\n\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
2025-10-03 16:53:58 +00:00
2 changed files with 61 additions and 0 deletions

View File

@@ -29,6 +29,11 @@ sidebarTitle: "CLI Commands"
# List tasks with a specific status and include subtasks # List tasks with a specific status and include subtasks
task-master list --status=<status> --with-subtasks task-master list --status=<status> --with-subtasks
``` ```
**Complexity Display**: If you've run `analyze-complexity`, task complexity scores will be displayed with color-coded indicators:
- 🟢 **Easy** (1-3): Green
- 🟡 **Medium** (4-6): Yellow
- 🔴 **Hard** (7-10): Red
</Accordion> </Accordion>
<Accordion title="Show Next Task"> <Accordion title="Show Next Task">
@@ -36,6 +41,8 @@ sidebarTitle: "CLI Commands"
# Show the next task to work on based on dependencies and status # Show the next task to work on based on dependencies and status
task-master next task-master next
``` ```
**Complexity Display**: If complexity analysis has been performed, the next task will display its complexity score with a color-coded indicator.
</Accordion> </Accordion>
<Accordion title="Show Specific Task"> <Accordion title="Show Specific Task">
@@ -48,6 +55,8 @@ sidebarTitle: "CLI Commands"
# View a specific subtask (e.g., subtask 2 of task 1) # View a specific subtask (e.g., subtask 2 of task 1)
task-master show 1.2 task-master show 1.2
``` ```
**Complexity Display**: If complexity analysis has been performed, the task details will include the complexity score with a color-coded indicator and the recommended number of subtasks.
</Accordion> </Accordion>
<Accordion title="Update Tasks"> <Accordion title="Update Tasks">

52
output.txt Normal file

File diff suppressed because one or more lines are too long