telos-framework 0.1.4 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/.claude/agents/behavioral-transformation-agent.md +144 -0
  2. package/.claude/agents/command-system-agent.md +335 -0
  3. package/.claude/agents/completion-gate.md +71 -0
  4. package/.claude/agents/component-implementation-agent.md +174 -0
  5. package/.claude/agents/devops-agent.md +128 -0
  6. package/.claude/agents/dynamic-agent-creator.md +103 -0
  7. package/.claude/agents/enhanced-project-manager-agent.md +145 -0
  8. package/.claude/agents/enhanced-quality-gate.md +54 -0
  9. package/.claude/agents/feature-implementation-agent.md +148 -0
  10. package/.claude/agents/functional-testing-agent.md +51 -0
  11. package/.claude/agents/hook-integration-agent.md +204 -0
  12. package/.claude/agents/infrastructure-implementation-agent.md +175 -0
  13. package/.claude/agents/lib/research-analyzer.js +470 -0
  14. package/.claude/agents/metrics-collection-agent.md +374 -0
  15. package/.claude/agents/npx-package-agent.md +246 -0
  16. package/.claude/agents/polish-implementation-agent.md +151 -0
  17. package/.claude/agents/prd-agent.md +76 -0
  18. package/.claude/agents/prd-mvp.md +101 -0
  19. package/.claude/agents/prd-research-agent.md +482 -0
  20. package/.claude/agents/quality-agent.md +128 -0
  21. package/.claude/agents/readiness-gate.md +104 -0
  22. package/.claude/agents/research-agent.md +173 -0
  23. package/.claude/agents/routing-agent.md +108 -0
  24. package/.claude/agents/task-checker.md +163 -0
  25. package/.claude/agents/task-executor.md +107 -0
  26. package/.claude/agents/task-orchestrator.md +343 -0
  27. package/.claude/agents/tdd-validation-agent.md +187 -0
  28. package/.claude/agents/testing-implementation-agent.md +151 -0
  29. package/.claude/agents/van-maintenance-agent.md +64 -0
  30. package/.claude/agents/workflow-agent.md +87 -0
  31. package/.claude/commands/autocompact.md +41 -0
  32. package/.claude/commands/continue-handoff.md +98 -0
  33. package/.claude/commands/mock.md +45 -0
  34. package/.claude/commands/reset-handoff.md +59 -0
  35. package/.claude/commands/telos/init.md +326 -0
  36. package/.claude/commands/telos/quick.md +90 -0
  37. package/.claude/commands/telos/reset.md +100 -0
  38. package/.claude/commands/telos/status.md +170 -0
  39. package/.claude/commands/telos/validate.md +143 -0
  40. package/.claude/commands/tm/add-dependency/add-dependency.md +55 -0
  41. package/.claude/commands/tm/add-subtask/add-subtask.md +76 -0
  42. package/.claude/commands/tm/add-subtask/convert-task-to-subtask.md +71 -0
  43. package/.claude/commands/tm/add-task/add-task.md +78 -0
  44. package/.claude/commands/tm/analyze-complexity/analyze-complexity.md +121 -0
  45. package/.claude/commands/tm/clear-subtasks/clear-all-subtasks.md +93 -0
  46. package/.claude/commands/tm/clear-subtasks/clear-subtasks.md +86 -0
  47. package/.claude/commands/tm/complexity-report/complexity-report.md +117 -0
  48. package/.claude/commands/tm/expand/expand-all-tasks.md +51 -0
  49. package/.claude/commands/tm/expand/expand-task.md +49 -0
  50. package/.claude/commands/tm/fix-dependencies/fix-dependencies.md +81 -0
  51. package/.claude/commands/tm/generate/generate-tasks.md +121 -0
  52. package/.claude/commands/tm/help.md +81 -0
  53. package/.claude/commands/tm/init/init-project-quick.md +46 -0
  54. package/.claude/commands/tm/init/init-project.md +50 -0
  55. package/.claude/commands/tm/learn.md +103 -0
  56. package/.claude/commands/tm/list/list-tasks-by-status.md +39 -0
  57. package/.claude/commands/tm/list/list-tasks-with-subtasks.md +29 -0
  58. package/.claude/commands/tm/list/list-tasks.md +43 -0
  59. package/.claude/commands/tm/models/setup-models.md +51 -0
  60. package/.claude/commands/tm/models/view-models.md +51 -0
  61. package/.claude/commands/tm/next/next-task.md +66 -0
  62. package/.claude/commands/tm/parse-prd/parse-prd-with-research.md +48 -0
  63. package/.claude/commands/tm/parse-prd/parse-prd.md +49 -0
  64. package/.claude/commands/tm/remove-dependency/remove-dependency.md +62 -0
  65. package/.claude/commands/tm/remove-subtask/remove-subtask.md +84 -0
  66. package/.claude/commands/tm/remove-task/remove-task.md +107 -0
  67. package/.claude/commands/tm/set-status/to-cancelled.md +55 -0
  68. package/.claude/commands/tm/set-status/to-deferred.md +47 -0
  69. package/.claude/commands/tm/set-status/to-done.md +44 -0
  70. package/.claude/commands/tm/set-status/to-in-progress.md +36 -0
  71. package/.claude/commands/tm/set-status/to-pending.md +32 -0
  72. package/.claude/commands/tm/set-status/to-review.md +40 -0
  73. package/.claude/commands/tm/setup/install-taskmaster.md +117 -0
  74. package/.claude/commands/tm/setup/quick-install-taskmaster.md +22 -0
  75. package/.claude/commands/tm/show/show-task.md +82 -0
  76. package/.claude/commands/tm/status/project-status.md +64 -0
  77. package/.claude/commands/tm/sync-readme/sync-readme.md +117 -0
  78. package/.claude/commands/tm/tm-main.md +146 -0
  79. package/.claude/commands/tm/update/update-single-task.md +119 -0
  80. package/.claude/commands/tm/update/update-task.md +72 -0
  81. package/.claude/commands/tm/update/update-tasks-from-id.md +108 -0
  82. package/.claude/commands/tm/utils/analyze-project.md +97 -0
  83. package/.claude/commands/tm/validate-dependencies/validate-dependencies.md +71 -0
  84. package/.claude/commands/tm/workflows/auto-implement-tasks.md +97 -0
  85. package/.claude/commands/tm/workflows/command-pipeline.md +77 -0
  86. package/.claude/commands/tm/workflows/smart-workflow.md +55 -0
  87. package/.claude/commands/van.md +150 -0
  88. package/.claude/docs/README.md +214 -0
  89. package/.claude/docs/TROUBLESHOOTING.md +126 -0
  90. package/.claude/hooks/block-destructive-commands.sh +243 -0
  91. package/.claude/hooks/collective-metrics.sh +291 -0
  92. package/.claude/hooks/directive-enforcer.sh +117 -0
  93. package/.claude/hooks/load-behavioral-system.sh +49 -0
  94. package/.claude/hooks/routing-executor.sh +4 -0
  95. package/.claude/hooks/test-driven-handoff.sh +653 -0
  96. package/.claude/settings.json +125 -0
  97. package/README.md +39 -15
  98. package/lib/commands/init-state.js +102 -0
  99. package/lib/commands/init.js +58 -95
  100. package/lib/installers/memory-files.js +77 -0
  101. package/lib/installers/slash-commands.js +77 -0
  102. package/package.json +7 -2
  103. package/templates/AGENTS.md +79 -0
  104. package/templates/CLAUDE.md +54 -0
@@ -0,0 +1,46 @@
1
+ Quick initialization with auto-confirmation.
2
+
3
+ Arguments: $ARGUMENTS
4
+
5
+ Initialize a Task Master project without prompts, accepting all defaults.
6
+
7
+ ## Quick Setup
8
+
9
+ ```bash
10
+ task-master init -y
11
+ ```
12
+
13
+ ## What It Does
14
+
15
+ 1. Creates `.taskmaster/` directory structure
16
+ 2. Initializes empty `tasks.json`
17
+ 3. Sets up default configuration
18
+ 4. Uses directory name as project name
19
+ 5. Skips all confirmation prompts
20
+
21
+ ## Smart Defaults
22
+
23
+ - Project name: Current directory name
24
+ - Description: "Task Master Project"
25
+ - Model config: Existing environment vars
26
+ - Task structure: Standard format
27
+
28
+ ## Next Steps
29
+
30
+ After quick init:
31
+ 1. Configure AI models if needed:
32
+ ```
33
+ /project:tm/models/setup
34
+ ```
35
+
36
+ 2. Parse PRD if available:
37
+ ```
38
+ /project:tm/parse-prd <file>
39
+ ```
40
+
41
+ 3. Or create first task:
42
+ ```
43
+ /project:tm/add-task create initial setup
44
+ ```
45
+
46
+ Perfect for rapid project setup!
@@ -0,0 +1,50 @@
1
+ Initialize a new Task Master project.
2
+
3
+ Arguments: $ARGUMENTS
4
+
5
+ Parse arguments to determine initialization preferences.
6
+
7
+ ## Initialization Process
8
+
9
+ 1. **Parse Arguments**
10
+ - PRD file path (if provided)
11
+ - Project name
12
+ - Auto-confirm flag (-y)
13
+
14
+ 2. **Project Setup**
15
+ ```bash
16
+ task-master init
17
+ ```
18
+
19
+ 3. **Smart Initialization**
20
+ - Detect existing project files
21
+ - Suggest project name from directory
22
+ - Check for git repository
23
+ - Verify AI provider configuration
24
+
25
+ ## Configuration Options
26
+
27
+ Based on arguments:
28
+ - `quick` / `-y` → Skip confirmations
29
+ - `<file.md>` → Use as PRD after init
30
+ - `--name=<name>` → Set project name
31
+ - `--description=<desc>` → Set description
32
+
33
+ ## Post-Initialization
34
+
35
+ After successful init:
36
+ 1. Show project structure created
37
+ 2. Verify AI models configured
38
+ 3. Suggest next steps:
39
+ - Parse PRD if available
40
+ - Configure AI providers
41
+ - Set up git hooks
42
+ - Create first tasks
43
+
44
+ ## Integration
45
+
46
+ If PRD file provided:
47
+ ```
48
+ /project:tm/init my-prd.md
49
+ → Automatically runs parse-prd after init
50
+ ```
@@ -0,0 +1,103 @@
1
+ Learn about Task Master capabilities through interactive exploration.
2
+
3
+ Arguments: $ARGUMENTS
4
+
5
+ ## Interactive Task Master Learning
6
+
7
+ Based on your input, I'll help you discover capabilities:
8
+
9
+ ### 1. **What are you trying to do?**
10
+
11
+ If $ARGUMENTS contains:
12
+ - "start" / "begin" → Show project initialization workflows
13
+ - "manage" / "organize" → Show task management commands
14
+ - "automate" / "auto" → Show automation workflows
15
+ - "analyze" / "report" → Show analysis tools
16
+ - "fix" / "problem" → Show troubleshooting commands
17
+ - "fast" / "quick" → Show efficiency shortcuts
18
+
19
+ ### 2. **Intelligent Suggestions**
20
+
21
+ Based on your project state:
22
+
23
+ **No tasks yet?**
24
+ ```
25
+ You'll want to start with:
26
+ 1. /project:task-master:init <prd-file>
27
+ → Creates tasks from requirements
28
+
29
+ 2. /project:task-master:parse-prd <file>
30
+ → Alternative task generation
31
+
32
+ Try: /project:task-master:init demo-prd.md
33
+ ```
34
+
35
+ **Have tasks?**
36
+ Let me analyze what you might need...
37
+ - Many pending tasks? → Learn sprint planning
38
+ - Complex tasks? → Learn task expansion
39
+ - Daily work? → Learn workflow automation
40
+
41
+ ### 3. **Command Discovery**
42
+
43
+ **By Category:**
44
+ - 📋 Task Management: list, show, add, update, complete
45
+ - 🔄 Workflows: auto-implement, sprint-plan, daily-standup
46
+ - 🛠️ Utilities: check-health, complexity-report, sync-memory
47
+ - 🔍 Analysis: validate-deps, show dependencies
48
+
49
+ **By Scenario:**
50
+ - "I want to see what to work on" → `/project:task-master:next`
51
+ - "I need to break this down" → `/project:task-master:expand <id>`
52
+ - "Show me everything" → `/project:task-master:status`
53
+ - "Just do it for me" → `/project:workflows:auto-implement`
54
+
55
+ ### 4. **Power User Patterns**
56
+
57
+ **Command Chaining:**
58
+ ```
59
+ /project:task-master:next
60
+ /project:task-master:start <id>
61
+ /project:workflows:auto-implement
62
+ ```
63
+
64
+ **Smart Filters:**
65
+ ```
66
+ /project:task-master:list pending high
67
+ /project:task-master:list blocked
68
+ /project:task-master:list 1-5 tree
69
+ ```
70
+
71
+ **Automation:**
72
+ ```
73
+ /project:workflows:pipeline init → expand-all → sprint-plan
74
+ ```
75
+
76
+ ### 5. **Learning Path**
77
+
78
+ Based on your experience level:
79
+
80
+ **Beginner Path:**
81
+ 1. init → Create project
82
+ 2. status → Understand state
83
+ 3. next → Find work
84
+ 4. complete → Finish task
85
+
86
+ **Intermediate Path:**
87
+ 1. expand → Break down complex tasks
88
+ 2. sprint-plan → Organize work
89
+ 3. complexity-report → Understand difficulty
90
+ 4. validate-deps → Ensure consistency
91
+
92
+ **Advanced Path:**
93
+ 1. pipeline → Chain operations
94
+ 2. smart-flow → Context-aware automation
95
+ 3. Custom commands → Extend the system
96
+
97
+ ### 6. **Try This Now**
98
+
99
+ Based on what you asked about, try:
100
+ [Specific command suggestion based on $ARGUMENTS]
101
+
102
+ Want to learn more about a specific command?
103
+ Type: /project:help <command-name>
@@ -0,0 +1,39 @@
1
+ List tasks filtered by a specific status.
2
+
3
+ Arguments: $ARGUMENTS
4
+
5
+ Parse the status from arguments and list only tasks matching that status.
6
+
7
+ ## Status Options
8
+ - `pending` - Not yet started
9
+ - `in-progress` - Currently being worked on
10
+ - `done` - Completed
11
+ - `review` - Awaiting review
12
+ - `deferred` - Postponed
13
+ - `cancelled` - Cancelled
14
+
15
+ ## Execution
16
+
17
+ Based on $ARGUMENTS, run:
18
+ ```bash
19
+ task-master list --status=$ARGUMENTS
20
+ ```
21
+
22
+ ## Enhanced Display
23
+
24
+ For the filtered results:
25
+ - Group by priority within the status
26
+ - Show time in current status
27
+ - Highlight tasks approaching deadlines
28
+ - Display blockers and dependencies
29
+ - Suggest next actions for each status group
30
+
31
+ ## Intelligent Insights
32
+
33
+ Based on the status filter:
34
+ - **Pending**: Show recommended start order
35
+ - **In-Progress**: Display idle time warnings
36
+ - **Done**: Show newly unblocked tasks
37
+ - **Review**: Indicate review duration
38
+ - **Deferred**: Show reactivation criteria
39
+ - **Cancelled**: Display impact analysis
@@ -0,0 +1,29 @@
1
+ List all tasks including their subtasks in a hierarchical view.
2
+
3
+ This command shows all tasks with their nested subtasks, providing a complete project overview.
4
+
5
+ ## Execution
6
+
7
+ Run the Task Master list command with subtasks flag:
8
+ ```bash
9
+ task-master list --with-subtasks
10
+ ```
11
+
12
+ ## Enhanced Display
13
+
14
+ I'll organize the output to show:
15
+ - Parent tasks with clear indicators
16
+ - Nested subtasks with proper indentation
17
+ - Status badges for quick scanning
18
+ - Dependencies and blockers highlighted
19
+ - Progress indicators for tasks with subtasks
20
+
21
+ ## Smart Filtering
22
+
23
+ Based on the task hierarchy:
24
+ - Show completion percentage for parent tasks
25
+ - Highlight blocked subtask chains
26
+ - Group by functional areas
27
+ - Indicate critical path items
28
+
29
+ This gives you a complete tree view of your project structure.
@@ -0,0 +1,43 @@
1
+ List tasks with intelligent argument parsing.
2
+
3
+ Parse arguments to determine filters and display options:
4
+ - Status: pending, in-progress, done, review, deferred, cancelled
5
+ - Priority: high, medium, low (or priority:high)
6
+ - Special: subtasks, tree, dependencies, blocked
7
+ - IDs: Direct numbers (e.g., "1,3,5" or "1-5")
8
+ - Complex: "pending high" = pending AND high priority
9
+
10
+ Arguments: $ARGUMENTS
11
+
12
+ Let me parse your request intelligently:
13
+
14
+ 1. **Detect Filter Intent**
15
+ - If arguments contain status keywords → filter by status
16
+ - If arguments contain priority → filter by priority
17
+ - If arguments contain "subtasks" → include subtasks
18
+ - If arguments contain "tree" → hierarchical view
19
+ - If arguments contain numbers → show specific tasks
20
+ - If arguments contain "blocked" → show blocked tasks only
21
+
22
+ 2. **Smart Combinations**
23
+ Examples of what I understand:
24
+ - "pending high" → pending tasks with high priority
25
+ - "done today" → tasks completed today
26
+ - "blocked" → tasks with unmet dependencies
27
+ - "1-5" → tasks 1 through 5
28
+ - "subtasks tree" → hierarchical view with subtasks
29
+
30
+ 3. **Execute Appropriate Query**
31
+ Based on parsed intent, run the most specific task-master command
32
+
33
+ 4. **Enhanced Display**
34
+ - Group by relevant criteria
35
+ - Show most important information first
36
+ - Use visual indicators for quick scanning
37
+ - Include relevant metrics
38
+
39
+ 5. **Intelligent Suggestions**
40
+ Based on what you're viewing, suggest next actions:
41
+ - Many pending? → Suggest priority order
42
+ - Many blocked? → Show dependency resolution
43
+ - Looking at specific tasks? → Show related tasks
@@ -0,0 +1,51 @@
1
+ Run interactive setup to configure AI models.
2
+
3
+ ## Interactive Model Configuration
4
+
5
+ Guides you through setting up AI providers for Task Master.
6
+
7
+ ## Execution
8
+
9
+ ```bash
10
+ task-master models --setup
11
+ ```
12
+
13
+ ## Setup Process
14
+
15
+ 1. **Environment Check**
16
+ - Detect existing API keys
17
+ - Show current configuration
18
+ - Identify missing providers
19
+
20
+ 2. **Provider Selection**
21
+ - Choose main provider (required)
22
+ - Select research provider (recommended)
23
+ - Configure fallback (optional)
24
+
25
+ 3. **API Key Configuration**
26
+ - Prompt for missing keys
27
+ - Validate key format
28
+ - Test connectivity
29
+ - Save configuration
30
+
31
+ ## Smart Recommendations
32
+
33
+ Based on your needs:
34
+ - **For best results**: Claude + Perplexity
35
+ - **Budget conscious**: GPT-3.5 + Perplexity
36
+ - **Maximum capability**: GPT-4 + Perplexity + Claude fallback
37
+
38
+ ## Configuration Storage
39
+
40
+ Keys can be stored in:
41
+ 1. Environment variables (recommended)
42
+ 2. `.env` file in project
43
+ 3. Global `.taskmaster/config`
44
+
45
+ ## Post-Setup
46
+
47
+ After configuration:
48
+ - Test each provider
49
+ - Show usage examples
50
+ - Suggest next steps
51
+ - Verify parse-prd works
@@ -0,0 +1,51 @@
1
+ View current AI model configuration.
2
+
3
+ ## Model Configuration Display
4
+
5
+ Shows the currently configured AI providers and models for Task Master.
6
+
7
+ ## Execution
8
+
9
+ ```bash
10
+ task-master models
11
+ ```
12
+
13
+ ## Information Displayed
14
+
15
+ 1. **Main Provider**
16
+ - Model ID and name
17
+ - API key status (configured/missing)
18
+ - Usage: Primary task generation
19
+
20
+ 2. **Research Provider**
21
+ - Model ID and name
22
+ - API key status
23
+ - Usage: Enhanced research mode
24
+
25
+ 3. **Fallback Provider**
26
+ - Model ID and name
27
+ - API key status
28
+ - Usage: Backup when main fails
29
+
30
+ ## Visual Status
31
+
32
+ ```
33
+ Task Master AI Model Configuration
34
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
35
+ Main: ✅ claude-3-5-sonnet (configured)
36
+ Research: ✅ perplexity-sonar (configured)
37
+ Fallback: ⚠️ Not configured (optional)
38
+
39
+ Available Models:
40
+ - claude-3-5-sonnet
41
+ - gpt-4-turbo
42
+ - gpt-3.5-turbo
43
+ - perplexity-sonar
44
+ ```
45
+
46
+ ## Next Actions
47
+
48
+ Based on configuration:
49
+ - If missing API keys → Suggest setup
50
+ - If no research model → Explain benefits
51
+ - If all configured → Show usage tips
@@ -0,0 +1,66 @@
1
+ Intelligently determine and prepare the next action based on comprehensive context.
2
+
3
+ This enhanced version of 'next' considers:
4
+ - Current task states
5
+ - Recent activity
6
+ - Time constraints
7
+ - Dependencies
8
+ - Your working patterns
9
+
10
+ Arguments: $ARGUMENTS
11
+
12
+ ## Intelligent Next Action
13
+
14
+ ### 1. **Context Gathering**
15
+ Let me analyze the current situation:
16
+ - Active tasks (in-progress)
17
+ - Recently completed tasks
18
+ - Blocked tasks
19
+ - Time since last activity
20
+ - Arguments provided: $ARGUMENTS
21
+
22
+ ### 2. **Smart Decision Tree**
23
+
24
+ **If you have an in-progress task:**
25
+ - Has it been idle > 2 hours? → Suggest resuming or switching
26
+ - Near completion? → Show remaining steps
27
+ - Blocked? → Find alternative task
28
+
29
+ **If no in-progress tasks:**
30
+ - Unblocked high-priority tasks? → Start highest
31
+ - Complex tasks need breakdown? → Suggest expansion
32
+ - All tasks blocked? → Show dependency resolution
33
+
34
+ **Special arguments handling:**
35
+ - "quick" → Find task < 2 hours
36
+ - "easy" → Find low complexity task
37
+ - "important" → Find high priority regardless of complexity
38
+ - "continue" → Resume last worked task
39
+
40
+ ### 3. **Preparation Workflow**
41
+
42
+ Based on selected task:
43
+ 1. Show full context and history
44
+ 2. Set up development environment
45
+ 3. Run relevant tests
46
+ 4. Open related files
47
+ 5. Show similar completed tasks
48
+ 6. Estimate completion time
49
+
50
+ ### 4. **Alternative Suggestions**
51
+
52
+ Always provide options:
53
+ - Primary recommendation
54
+ - Quick alternative (< 1 hour)
55
+ - Strategic option (unblocks most tasks)
56
+ - Learning option (new technology/skill)
57
+
58
+ ### 5. **Workflow Integration**
59
+
60
+ Seamlessly connect to:
61
+ - `/project:task-master:start [selected]`
62
+ - `/project:workflows:auto-implement`
63
+ - `/project:task-master:expand` (if complex)
64
+ - `/project:utils:complexity-report` (if unsure)
65
+
66
+ The goal: Zero friction from decision to implementation.
@@ -0,0 +1,48 @@
1
+ Parse PRD with enhanced research mode for better task generation.
2
+
3
+ Arguments: $ARGUMENTS (PRD file path)
4
+
5
+ ## Research-Enhanced Parsing
6
+
7
+ Uses the research AI provider (typically Perplexity) for more comprehensive task generation with current best practices.
8
+
9
+ ## Execution
10
+
11
+ ```bash
12
+ task-master parse-prd --input=$ARGUMENTS --research
13
+ ```
14
+
15
+ ## Research Benefits
16
+
17
+ 1. **Current Best Practices**
18
+ - Latest framework patterns
19
+ - Security considerations
20
+ - Performance optimizations
21
+ - Accessibility requirements
22
+
23
+ 2. **Technical Deep Dive**
24
+ - Implementation approaches
25
+ - Library recommendations
26
+ - Architecture patterns
27
+ - Testing strategies
28
+
29
+ 3. **Comprehensive Coverage**
30
+ - Edge cases consideration
31
+ - Error handling tasks
32
+ - Monitoring setup
33
+ - Deployment tasks
34
+
35
+ ## Enhanced Output
36
+
37
+ Research mode typically:
38
+ - Generates more detailed tasks
39
+ - Includes industry standards
40
+ - Adds compliance considerations
41
+ - Suggests modern tooling
42
+
43
+ ## When to Use
44
+
45
+ - New technology domains
46
+ - Complex requirements
47
+ - Regulatory compliance needed
48
+ - Best practices crucial
@@ -0,0 +1,49 @@
1
+ Parse a PRD document to generate tasks.
2
+
3
+ Arguments: $ARGUMENTS (PRD file path)
4
+
5
+ ## Intelligent PRD Parsing
6
+
7
+ Analyzes your requirements document and generates a complete task breakdown.
8
+
9
+ ## Execution
10
+
11
+ ```bash
12
+ task-master parse-prd --input=$ARGUMENTS
13
+ ```
14
+
15
+ ## Parsing Process
16
+
17
+ 1. **Document Analysis**
18
+ - Extract key requirements
19
+ - Identify technical components
20
+ - Detect dependencies
21
+ - Estimate complexity
22
+
23
+ 2. **Task Generation**
24
+ - Create 10-15 tasks by default
25
+ - Include implementation tasks
26
+ - Add testing tasks
27
+ - Include documentation tasks
28
+ - Set logical dependencies
29
+
30
+ 3. **Smart Enhancements**
31
+ - Group related functionality
32
+ - Set appropriate priorities
33
+ - Add acceptance criteria
34
+ - Include test strategies
35
+
36
+ ## Options
37
+
38
+ Parse arguments for modifiers:
39
+ - Number after filename → `--num-tasks`
40
+ - `research` → Use research mode
41
+ - `comprehensive` → Generate more tasks
42
+
43
+ ## Post-Generation
44
+
45
+ After parsing:
46
+ 1. Display task summary
47
+ 2. Show dependency graph
48
+ 3. Suggest task expansion for complex items
49
+ 4. Recommend sprint planning
@@ -0,0 +1,62 @@
1
+ Remove a dependency between tasks.
2
+
3
+ Arguments: $ARGUMENTS
4
+
5
+ Parse the task IDs to remove dependency relationship.
6
+
7
+ ## Removing Dependencies
8
+
9
+ Removes a dependency relationship, potentially unblocking tasks.
10
+
11
+ ## Argument Parsing
12
+
13
+ Parse natural language or IDs:
14
+ - "remove dependency between 5 and 3"
15
+ - "5 no longer needs 3"
16
+ - "unblock 5 from 3"
17
+ - "5 3" → remove dependency of 5 on 3
18
+
19
+ ## Execution
20
+
21
+ ```bash
22
+ task-master remove-dependency --id=<task-id> --depends-on=<dependency-id>
23
+ ```
24
+
25
+ ## Pre-Removal Checks
26
+
27
+ 1. **Verify dependency exists**
28
+ 2. **Check impact on task flow**
29
+ 3. **Warn if it breaks logical sequence**
30
+ 4. **Show what will be unblocked**
31
+
32
+ ## Smart Analysis
33
+
34
+ Before removing:
35
+ - Show why dependency might have existed
36
+ - Check if removal makes tasks executable
37
+ - Verify no critical path disruption
38
+ - Suggest alternative dependencies
39
+
40
+ ## Post-Removal
41
+
42
+ After removing:
43
+ 1. Show updated task status
44
+ 2. List newly unblocked tasks
45
+ 3. Update project timeline
46
+ 4. Suggest next actions
47
+
48
+ ## Safety Features
49
+
50
+ - Confirm if removing critical dependency
51
+ - Show tasks that become immediately actionable
52
+ - Warn about potential issues
53
+ - Keep removal history
54
+
55
+ ## Example
56
+
57
+ ```
58
+ /project:tm/remove-dependency 5 from 3
59
+ → Removed: Task #5 no longer depends on #3
60
+ → Task #5 is now UNBLOCKED and ready to start
61
+ → Warning: Consider if #5 still needs #2 completed first
62
+ ```