* Fix Cursor deeplink installation with copy-paste instructions (#723) * fix: expand-task (#755) * docs: Update o3 model price (#751) * docs: Auto-update and format models.md * docs: Auto-update and format models.md * feat: Add Claude Code task master commands Adds Task Master slash commands for Claude Code under /project:tm/ namespace --------- Co-authored-by: Joe Danziger <joe@ticc.net> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Co-authored-by: Volodymyr Zahorniak <7808206+zahorniak@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: neno-is-ooo <204701868+neno-is-ooo@users.noreply.github.com>
71 lines
1.5 KiB
Markdown
71 lines
1.5 KiB
Markdown
Validate all task dependencies for issues.
|
|
|
|
## Dependency Validation
|
|
|
|
Comprehensive check for dependency problems across the entire project.
|
|
|
|
## Execution
|
|
|
|
```bash
|
|
task-master validate-dependencies
|
|
```
|
|
|
|
## Validation Checks
|
|
|
|
1. **Circular Dependencies**
|
|
- A depends on B, B depends on A
|
|
- Complex circular chains
|
|
- Self-dependencies
|
|
|
|
2. **Missing Dependencies**
|
|
- References to non-existent tasks
|
|
- Deleted task references
|
|
- Invalid task IDs
|
|
|
|
3. **Logical Issues**
|
|
- Completed tasks depending on pending
|
|
- Cancelled tasks in dependency chains
|
|
- Impossible sequences
|
|
|
|
4. **Complexity Warnings**
|
|
- Over-complex dependency chains
|
|
- Too many dependencies per task
|
|
- Bottleneck tasks
|
|
|
|
## Smart Analysis
|
|
|
|
The validation provides:
|
|
- Visual dependency graph
|
|
- Critical path analysis
|
|
- Bottleneck identification
|
|
- Suggested optimizations
|
|
|
|
## Report Format
|
|
|
|
```
|
|
Dependency Validation Report
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
✅ No circular dependencies found
|
|
⚠️ 2 warnings found:
|
|
- Task #23 has 7 dependencies (consider breaking down)
|
|
- Task #45 blocks 5 other tasks (potential bottleneck)
|
|
❌ 1 error found:
|
|
- Task #67 depends on deleted task #66
|
|
|
|
Critical Path: #1 → #5 → #23 → #45 → #50 (15 days)
|
|
```
|
|
|
|
## Actionable Output
|
|
|
|
For each issue found:
|
|
- Clear description
|
|
- Impact assessment
|
|
- Suggested fix
|
|
- Command to resolve
|
|
|
|
## Next Steps
|
|
|
|
After validation:
|
|
- Run `/project:tm/fix-dependencies` to auto-fix
|
|
- Manually adjust problematic dependencies
|
|
- Rerun to verify fixes |