* feat: add task master (tm) custom slash commands Add comprehensive task management system integration via custom slash commands. Includes commands for: - Project initialization and setup - Task parsing from PRD documents - Task creation, update, and removal - Subtask management - Dependency tracking and validation - Complexity analysis and task expansion - Project status and reporting - Workflow automation This provides a complete task management workflow directly within Claude Code. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * chore: add changeset --------- Co-authored-by: neno-is-ooo <204701868+neno-is-ooo@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com>
49 lines
1.0 KiB
Markdown
49 lines
1.0 KiB
Markdown
Parse a PRD document to generate tasks.
|
|
|
|
Arguments: $ARGUMENTS (PRD file path)
|
|
|
|
## Intelligent PRD Parsing
|
|
|
|
Analyzes your requirements document and generates a complete task breakdown.
|
|
|
|
## Execution
|
|
|
|
```bash
|
|
task-master parse-prd --input=$ARGUMENTS
|
|
```
|
|
|
|
## Parsing Process
|
|
|
|
1. **Document Analysis**
|
|
- Extract key requirements
|
|
- Identify technical components
|
|
- Detect dependencies
|
|
- Estimate complexity
|
|
|
|
2. **Task Generation**
|
|
- Create 10-15 tasks by default
|
|
- Include implementation tasks
|
|
- Add testing tasks
|
|
- Include documentation tasks
|
|
- Set logical dependencies
|
|
|
|
3. **Smart Enhancements**
|
|
- Group related functionality
|
|
- Set appropriate priorities
|
|
- Add acceptance criteria
|
|
- Include test strategies
|
|
|
|
## Options
|
|
|
|
Parse arguments for modifiers:
|
|
- Number after filename → `--num-tasks`
|
|
- `research` → Use research mode
|
|
- `comprehensive` → Generate more tasks
|
|
|
|
## Post-Generation
|
|
|
|
After parsing:
|
|
1. Display task summary
|
|
2. Show dependency graph
|
|
3. Suggest task expansion for complex items
|
|
4. Recommend sprint planning |