Compare commits

...

1 Commits

Author SHA1 Message Date
github-actions[bot]
468106af1e 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: expand_all now uses complexity analysis recommendations (#1287)\n\nCo-authored-by: Claude <noreply@anthropic.com>\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
2025-10-11 10:01:13 +00:00
4 changed files with 55 additions and 3 deletions

View File

@@ -124,6 +124,8 @@ sidebarTitle: "CLI Commands"
# Research-backed generation for all tasks
task-master expand --all --research
```
When you run `task-master expand --all` after `task-master analyze-complexity`, the expand operation automatically uses the recommended subtask counts from the complexity analysis instead of applying uniform defaults. This ensures each task is broken down according to its actual complexity level.
</Accordion>
<Accordion title="Clear Subtasks">

View File

@@ -40,7 +40,7 @@ The MCP tools can be categorized in the same way as the core functionalities:
- **`parse_prd`**: Parses a PRD to generate tasks.
- **`expand_task`**: Expands a task into subtasks.
- **`expand_all`**: Expands all eligible tasks.
- **`expand_all`**: Expands all eligible tasks, automatically using complexity analysis recommendations when available.
- **`analyze_project_complexity`**: Analyzes task complexity.
- **`complexity_report`**: Displays the complexity analysis report.

View File

@@ -197,7 +197,7 @@ Task Master will:
task-master analyze-complexity --research
```
Review the complexity report to identify tasks that need expansion.
Review the complexity report to identify tasks that need expansion and determine optimal subtask counts.
### Step 4: Expand Tasks
@@ -205,7 +205,7 @@ Review the complexity report to identify tasks that need expansion.
task-master expand --all --research
```
Break down complex tasks into manageable subtasks while preserving dependency chains.
Break down complex tasks into manageable subtasks while preserving dependency chains. The expand operation automatically uses the complexity analysis recommendations to determine the appropriate number of subtasks for each task based on its complexity level.
---

50
output.txt Normal file

File diff suppressed because one or more lines are too long