specsmd 0.0.0-dev.5 → 0.0.0-dev.51

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 (63) hide show
  1. package/README.md +10 -2
  2. package/flows/aidlc/commands/construction-agent.md +5 -1
  3. package/flows/aidlc/commands/inception-agent.md +4 -0
  4. package/flows/aidlc/commands/master-agent.md +4 -0
  5. package/flows/aidlc/commands/operations-agent.md +4 -0
  6. package/flows/aidlc/memory-bank.yaml +2 -1
  7. package/{scripts → flows/aidlc/scripts}/artifact-validator.js +3 -3
  8. package/{scripts → flows/aidlc/scripts}/bolt-complete.js +35 -4
  9. package/{scripts → flows/aidlc/scripts}/status-integrity.js +4 -4
  10. package/flows/aidlc/skills/construction/bolt-list.md +1 -1
  11. package/flows/aidlc/skills/construction/bolt-start.md +2 -2
  12. package/flows/aidlc/skills/construction/bolt-status.md +1 -1
  13. package/flows/aidlc/skills/construction/prototype-apply.md +305 -0
  14. package/flows/aidlc/skills/inception/bolt-plan.md +15 -2
  15. package/flows/aidlc/skills/inception/vibe-to-spec.md +406 -0
  16. package/flows/aidlc/skills/master/analyze-context.md +1 -1
  17. package/flows/aidlc/templates/construction/bolt-template.md +22 -1
  18. package/flows/aidlc/templates/construction/bolt-types/ddd-construction-bolt.md +73 -11
  19. package/flows/aidlc/templates/construction/bolt-types/simple-construction-bolt.md +5 -0
  20. package/flows/aidlc/templates/standards/decision-index-template.md +32 -0
  21. package/flows/fire/README.md +19 -0
  22. package/flows/fire/agents/builder/agent.md +209 -0
  23. package/flows/fire/agents/builder/skills/run-execute/SKILL.md +221 -0
  24. package/flows/fire/agents/builder/skills/run-execute/scripts/complete-run.ts +806 -0
  25. package/flows/fire/agents/builder/skills/run-execute/scripts/init-run.ts +575 -0
  26. package/flows/fire/agents/builder/skills/run-plan/SKILL.md +287 -0
  27. package/flows/fire/agents/builder/skills/run-status/SKILL.md +94 -0
  28. package/flows/fire/agents/builder/skills/walkthrough-generate/SKILL.md +140 -0
  29. package/flows/fire/agents/builder/skills/walkthrough-generate/scripts/render-walkthrough.ts +755 -0
  30. package/flows/fire/agents/orchestrator/agent.md +113 -0
  31. package/flows/fire/agents/orchestrator/skills/project-init/SKILL.md +141 -0
  32. package/flows/fire/agents/orchestrator/skills/route/SKILL.md +123 -0
  33. package/flows/fire/agents/orchestrator/skills/status/SKILL.md +99 -0
  34. package/flows/fire/agents/planner/agent.md +122 -0
  35. package/flows/fire/agents/planner/skills/design-doc-generate/SKILL.md +212 -0
  36. package/flows/fire/agents/planner/skills/intent-capture/SKILL.md +155 -0
  37. package/flows/fire/agents/planner/skills/work-item-decompose/SKILL.md +193 -0
  38. package/flows/fire/commands/fire-builder.md +56 -0
  39. package/flows/fire/commands/fire-planner.md +48 -0
  40. package/flows/fire/commands/fire.md +46 -0
  41. package/flows/fire/memory-bank.yaml +154 -0
  42. package/flows/fire/quick-start.md +130 -0
  43. package/flows/simple/README.md +190 -0
  44. package/flows/simple/agents/agent.md +404 -0
  45. package/flows/simple/commands/agent.md +60 -0
  46. package/flows/simple/context-config.yaml +34 -0
  47. package/flows/simple/memory-bank.yaml +66 -0
  48. package/flows/simple/quick-start.md +231 -0
  49. package/flows/simple/skills/design.md +96 -0
  50. package/flows/simple/skills/execute.md +190 -0
  51. package/flows/simple/skills/requirements.md +94 -0
  52. package/flows/simple/skills/tasks.md +136 -0
  53. package/flows/simple/templates/design-template.md +138 -0
  54. package/flows/simple/templates/requirements-template.md +85 -0
  55. package/flows/simple/templates/tasks-template.md +104 -0
  56. package/lib/analytics/tracker.js +6 -2
  57. package/lib/constants.js +10 -7
  58. package/lib/installer.js +3 -14
  59. package/lib/installers/KiroInstaller.js +55 -0
  60. package/lib/installers/OpenCodeInstaller.js +9 -1
  61. package/lib/installers/ToolInstaller.js +4 -1
  62. package/lib/installers/WindsurfInstaller.js +0 -54
  63. package/package.json +3 -52
@@ -0,0 +1,212 @@
1
+ # Skill: Design Doc Generate
2
+
3
+ Generate design documents for Validate mode work items (Checkpoint 1).
4
+
5
+ ---
6
+
7
+ ## Trigger
8
+
9
+ - Work item has complexity: high
10
+ - Work item has mode: validate
11
+ - Design review required before implementation
12
+
13
+ ---
14
+
15
+ ## Degrees of Freedom
16
+
17
+ **LOW** — Follow the design doc structure precisely. Decisions must have rationale.
18
+
19
+ ---
20
+
21
+ ## Workflow
22
+
23
+ ```xml
24
+ <skill name="design-doc-generate">
25
+
26
+ <mandate>
27
+ Design doc MUST be approved before implementation.
28
+ Document DECISIONS with RATIONALE, not just choices.
29
+ Keep concise - enough detail to implement, no more.
30
+ Include risks upfront - don't hide complexity.
31
+ </mandate>
32
+
33
+ <step n="1" title="Analyze Work Item">
34
+ <action>Read work item from .specs-fire/intents/{intent-id}/work-items/{id}.md</action>
35
+ <action>Identify key design decisions needed</action>
36
+ <action>Assess domain modeling needs</action>
37
+ <action>Identify integration points</action>
38
+ </step>
39
+
40
+ <step n="2" title="Gather Context">
41
+ <action>Review project standards (.specs-fire/standards/)</action>
42
+ <action>Check existing codebase patterns</action>
43
+ <action>Identify similar implementations to reference</action>
44
+ </step>
45
+
46
+ <step n="3" title="Draft Key Decisions">
47
+ <action>For each decision point:</action>
48
+ <substep>Identify options considered</substep>
49
+ <substep>Evaluate trade-offs</substep>
50
+ <substep>Select recommended choice</substep>
51
+ <substep>Document rationale</substep>
52
+
53
+ <output-format>
54
+ | Decision | Choice | Rationale |
55
+ |----------|--------|-----------|
56
+ | ... | ... | ... |
57
+ </output-format>
58
+ </step>
59
+
60
+ <step n="4" title="Define Domain Model" if="has_domain_complexity">
61
+ <action>Identify entities (things with identity)</action>
62
+ <action>Identify value objects (immutable values)</action>
63
+ <action>Identify domain events (if event-driven)</action>
64
+ <action>Map relationships</action>
65
+ </step>
66
+
67
+ <step n="5" title="Design Technical Approach">
68
+ <action>Create component diagram (ASCII)</action>
69
+ <action>Define API contracts (if applicable)</action>
70
+ <action>Specify database changes (if applicable)</action>
71
+ <action>Document data flow</action>
72
+ </step>
73
+
74
+ <step n="6" title="Identify Risks">
75
+ <action>List potential risks</action>
76
+ <action>Assess impact (high/medium/low)</action>
77
+ <action>Propose mitigations</action>
78
+
79
+ <output-format>
80
+ | Risk | Impact | Mitigation |
81
+ |------|--------|------------|
82
+ | ... | ... | ... |
83
+ </output-format>
84
+ </step>
85
+
86
+ <step n="7" title="Create Implementation Checklist">
87
+ <action>Break down into implementation steps</action>
88
+ <action>Order by dependency</action>
89
+ <action>Keep granular but not excessive</action>
90
+ </step>
91
+
92
+ <step n="8" title="Present Design Doc">
93
+ <checkpoint message="Design document ready for review">
94
+ <output>
95
+ # Design: {work-item-title}
96
+
97
+ ## Summary
98
+ {brief description}
99
+
100
+ ## Key Decisions
101
+ {decisions table}
102
+
103
+ ## Technical Approach
104
+ {component diagram, API contracts}
105
+
106
+ ## Risks
107
+ {risks table}
108
+
109
+ ## Implementation Checklist
110
+ {ordered steps}
111
+
112
+ ---
113
+ This is Checkpoint 1 of Validate mode.
114
+
115
+ Approve design? [Y/n/edit]
116
+ </output>
117
+ </checkpoint>
118
+ </step>
119
+
120
+ <step n="9" title="Handle Response">
121
+ <check if="response == y">
122
+ <action>Save design doc to .specs-fire/intents/{intent-id}/work-items/{id}-design.md</action>
123
+ <action>Mark checkpoint 1 as passed</action>
124
+ <output>
125
+ Design approved. Ready for implementation planning.
126
+
127
+ Route to Builder for Checkpoint 2 (implementation plan)? [Y/n]
128
+ </output>
129
+ </check>
130
+ <check if="response == edit">
131
+ <ask>What changes are needed?</ask>
132
+ <action>Incorporate feedback</action>
133
+ <goto step="8"/>
134
+ </check>
135
+ <check if="response == n">
136
+ <output>Design rejected. What concerns need to be addressed?</output>
137
+ <action>Gather feedback, revise approach</action>
138
+ <goto step="3"/>
139
+ </check>
140
+ </step>
141
+
142
+ </skill>
143
+ ```
144
+
145
+ ---
146
+
147
+ ## Output
148
+
149
+ **Design Doc** (`.specs-fire/intents/{intent-id}/work-items/{id}-design.md`):
150
+
151
+ ```markdown
152
+ ---
153
+ work_item: {work-item-id}
154
+ intent: {intent-id}
155
+ created: {timestamp}
156
+ mode: validate
157
+ checkpoint_1: approved
158
+ ---
159
+
160
+ # Design: {title}
161
+
162
+ ## Summary
163
+
164
+ {Brief description of what will be built and why}
165
+
166
+ ## Key Decisions
167
+
168
+ | Decision | Choice | Rationale |
169
+ |----------|--------|-----------|
170
+ | {decision} | {choice} | {why} |
171
+
172
+ ## Domain Model
173
+
174
+ ### Entities
175
+ - **{Name}**: {description}
176
+
177
+ ### Value Objects
178
+ - **{Name}**: {description}
179
+
180
+ ## Technical Approach
181
+
182
+ ### Component Diagram
183
+
184
+ ```
185
+ [ASCII diagram]
186
+ ```
187
+
188
+ ### API Endpoints
189
+
190
+ - `POST /api/...` - {description}
191
+
192
+ ### Database Changes
193
+
194
+ ```sql
195
+ CREATE TABLE ...
196
+ ```
197
+
198
+ ## Risks & Mitigations
199
+
200
+ | Risk | Impact | Mitigation |
201
+ |------|--------|------------|
202
+ | {risk} | {impact} | {mitigation} |
203
+
204
+ ## Implementation Checklist
205
+
206
+ - [ ] {step 1}
207
+ - [ ] {step 2}
208
+ - [ ] {step 3}
209
+
210
+ ---
211
+ *Checkpoint 1 approved: {timestamp}*
212
+ ```
@@ -0,0 +1,155 @@
1
+ # Skill: Intent Capture
2
+
3
+ Capture user intent through guided conversation.
4
+
5
+ ---
6
+
7
+ ## Trigger
8
+
9
+ - No active intent exists
10
+ - User wants to start something new
11
+
12
+ ---
13
+
14
+ ## Degrees of Freedom
15
+
16
+ **HIGH** — This is a creative, exploratory phase. Ask open-ended questions. Don't constrain prematurely.
17
+
18
+ ---
19
+
20
+ ## Workflow
21
+
22
+ ```xml
23
+ <skill name="intent-capture">
24
+
25
+ <mandate>
26
+ NEVER assume requirements. ALWAYS ask clarifying questions.
27
+ Capture the "what" and "why" - leave the "how" for decomposition.
28
+ </mandate>
29
+
30
+ <step n="1" title="Initial Question">
31
+ <ask>What do you want to build?</ask>
32
+ <listen>Let user describe freely. Don't interrupt.</listen>
33
+ </step>
34
+
35
+ <step n="2" title="Elicit Context">
36
+ <action>Based on response, ask follow-up questions:</action>
37
+
38
+ <question if="unclear who benefits">
39
+ Who is this for? Who will use this feature?
40
+ </question>
41
+
42
+ <question if="unclear problem">
43
+ What problem does this solve? What's painful today?
44
+ </question>
45
+
46
+ <question if="unclear scope">
47
+ What's the minimum that would be valuable? What can wait?
48
+ </question>
49
+
50
+ <question if="unclear constraints">
51
+ Any technical constraints? Existing systems to integrate with?
52
+ </question>
53
+
54
+ <question if="unclear success">
55
+ How will you know this is working? What does success look like?
56
+ </question>
57
+ </step>
58
+
59
+ <step n="3" title="Summarize Understanding">
60
+ <output>
61
+ Let me make sure I understand:
62
+
63
+ **Goal**: {summarized goal}
64
+
65
+ **Users**: {who benefits}
66
+
67
+ **Problem**: {what pain this solves}
68
+
69
+ **Success Criteria**:
70
+ - {criterion 1}
71
+ - {criterion 2}
72
+ - {criterion 3}
73
+
74
+ **Constraints**:
75
+ - {constraint 1}
76
+ - {constraint 2}
77
+
78
+ Is this accurate? [Y/n/edit]
79
+ </output>
80
+ <check if="response == n or edit">
81
+ <action>Ask specific clarifying questions</action>
82
+ <goto step="3"/>
83
+ </check>
84
+ </step>
85
+
86
+ <step n="4" title="Generate Intent Brief">
87
+ <action>Create intent ID from title (kebab-case)</action>
88
+ <action>Generate intent brief using template</action>
89
+ <action>Create directory: .specs-fire/intents/{intent-id}/</action>
90
+ <action>Save: .specs-fire/intents/{intent-id}/brief.md</action>
91
+ </step>
92
+
93
+ <step n="5" title="Update State">
94
+ <action>Add intent to state.yaml</action>
95
+ <action>Set intent status to "in_progress"</action>
96
+ </step>
97
+
98
+ <step n="6" title="Transition">
99
+ <output>
100
+ **Intent captured**: "{intent-title}"
101
+
102
+ Saved to: .specs-fire/intents/{intent-id}/brief.md
103
+
104
+ ---
105
+
106
+ Ready to break this into work items? [Y/n]
107
+ </output>
108
+ <check if="response == y">
109
+ <invoke-skill>work-item-decompose</invoke-skill>
110
+ </check>
111
+ </step>
112
+
113
+ </skill>
114
+ ```
115
+
116
+ ---
117
+
118
+ ## Output
119
+
120
+ **Intent Brief** (`.specs-fire/intents/{id}/brief.md`):
121
+
122
+ ```markdown
123
+ ---
124
+ id: {intent-id}
125
+ title: {title}
126
+ status: in_progress
127
+ created: {timestamp}
128
+ ---
129
+
130
+ # Intent: {title}
131
+
132
+ ## Goal
133
+
134
+ {What we're building and why}
135
+
136
+ ## Users
137
+
138
+ {Who benefits from this}
139
+
140
+ ## Problem
141
+
142
+ {What pain this solves}
143
+
144
+ ## Success Criteria
145
+
146
+ - {How we know it's working}
147
+
148
+ ## Constraints
149
+
150
+ - {Any limitations or requirements}
151
+
152
+ ## Notes
153
+
154
+ {Additional context}
155
+ ```
@@ -0,0 +1,193 @@
1
+ # Skill: Work Item Decompose
2
+
3
+ Break an intent into discrete, executable work items.
4
+
5
+ ---
6
+
7
+ ## Trigger
8
+
9
+ - Intent exists without work items
10
+ - User wants to plan execution
11
+
12
+ ---
13
+
14
+ ## Degrees of Freedom
15
+
16
+ **MEDIUM** — Follow decomposition patterns but adapt to the specific intent.
17
+
18
+ ---
19
+
20
+ ## Workflow
21
+
22
+ ```xml
23
+ <skill name="work-item-decompose">
24
+
25
+ <mandate>
26
+ Each work item MUST be completable in a single run.
27
+ Each work item MUST have clear acceptance criteria.
28
+ Dependencies MUST be explicit and validated.
29
+ </mandate>
30
+
31
+ <step n="1" title="Load Intent">
32
+ <action>Read intent brief from .specs-fire/intents/{intent-id}/brief.md</action>
33
+ <action>Understand goal, users, success criteria</action>
34
+ </step>
35
+
36
+ <step n="2" title="Identify Deliverables">
37
+ <action>Break intent into discrete deliverables</action>
38
+ <action>Each deliverable should be independently valuable</action>
39
+
40
+ <guidelines>
41
+ - Prefer vertical slices over horizontal layers
42
+ - Start with foundation pieces (models, schemas)
43
+ - End with integration pieces (API, UI)
44
+ - Keep each item focused on ONE concern
45
+ </guidelines>
46
+ </step>
47
+
48
+ <step n="3" title="Assess Complexity">
49
+ <action>For each work item, assess RAW complexity:</action>
50
+
51
+ <complexity level="low">
52
+ - Single file or few files
53
+ - Well-understood pattern
54
+ - No external dependencies
55
+ - Examples: bug fix, config change, simple utility
56
+ </complexity>
57
+
58
+ <complexity level="medium">
59
+ - Multiple files
60
+ - Standard patterns with some decisions
61
+ - May touch existing code
62
+ - Examples: new endpoint, new component, feature addition
63
+ </complexity>
64
+
65
+ <complexity level="high">
66
+ - Architectural decisions required
67
+ - Security or data implications
68
+ - Core system changes
69
+ - Examples: auth system, payment flow, database migration
70
+ </complexity>
71
+ </step>
72
+
73
+ <step n="3b" title="Apply Autonomy Bias">
74
+ <action>Read workspace.autonomy_bias from state.yaml</action>
75
+ <action>Apply bias to determine final execution mode:</action>
76
+
77
+ <bias-table>
78
+ | Raw Complexity | autonomous | balanced | controlled |
79
+ |----------------|------------|----------|------------|
80
+ | low | autopilot | autopilot| confirm |
81
+ | medium | autopilot | confirm | validate |
82
+ | high | confirm | validate | validate |
83
+ </bias-table>
84
+
85
+ <note>
86
+ This allows user preference to shift thresholds:
87
+ - autonomous: trusts AI more, fewer checkpoints
88
+ - balanced: standard behavior (default)
89
+ - controlled: more human oversight
90
+ </note>
91
+ </step>
92
+
93
+ <step n="4" title="Define Acceptance Criteria">
94
+ <action>For each work item, define:</action>
95
+ <substep>What must be true when complete</substep>
96
+ <substep>How to verify it works</substep>
97
+ <substep>Any edge cases to handle</substep>
98
+ </step>
99
+
100
+ <step n="5" title="Validate Dependencies">
101
+ <action>Check for circular dependencies</action>
102
+ <action>Ensure dependencies exist or will be created first</action>
103
+ <action>Order work items by dependency</action>
104
+
105
+ <check if="circular dependency detected">
106
+ <output>
107
+ Warning: Circular dependency detected between {item-a} and {item-b}.
108
+ Suggest splitting into smaller items or reordering.
109
+ </output>
110
+ </check>
111
+ </step>
112
+
113
+ <step n="6" title="Present Plan">
114
+ <output>
115
+ ## Work Items for "{intent-title}"
116
+
117
+ **Total**: {count} work items
118
+ **Estimated**: {low} autopilot, {medium} confirm, {high} validate
119
+
120
+ **Work Item Details**:
121
+
122
+ {for each item}
123
+ {n}. **{title}** ({mode}) — {description}
124
+ {/for}
125
+
126
+ ---
127
+
128
+ Approve this plan? [Y/n/edit]
129
+ </output>
130
+ </step>
131
+
132
+ <step n="7" title="Save Work Items">
133
+ <check if="approved">
134
+ <action>Create .specs-fire/intents/{intent-id}/work-items/</action>
135
+ <action>For each work item, save to {work-item-id}.md</action>
136
+ <action>Update state.yaml with work items list</action>
137
+ </check>
138
+ </step>
139
+
140
+ <step n="8" title="Transition">
141
+ <output>
142
+ **{count} work items created** for "{intent-title}".
143
+
144
+ ---
145
+
146
+ Ready to plan execution scope? [Y/n]
147
+ </output>
148
+ <check if="response == y">
149
+ <route-to>builder-agent (run-plan)</route-to>
150
+ </check>
151
+ </step>
152
+
153
+ </skill>
154
+ ```
155
+
156
+ ---
157
+
158
+ ## Output
159
+
160
+ **Work Item** (`.specs-fire/intents/{intent-id}/work-items/{id}.md`):
161
+
162
+ ```markdown
163
+ ---
164
+ id: {work-item-id}
165
+ title: {title}
166
+ intent: {intent-id}
167
+ complexity: low | medium | high
168
+ mode: autopilot | confirm | validate
169
+ status: pending
170
+ depends_on: [{dependency-ids}]
171
+ created: {timestamp}
172
+ ---
173
+
174
+ # Work Item: {title}
175
+
176
+ ## Description
177
+
178
+ {What this work item delivers}
179
+
180
+ ## Acceptance Criteria
181
+
182
+ - [ ] {criterion-1}
183
+ - [ ] {criterion-2}
184
+ - [ ] {criterion-3}
185
+
186
+ ## Technical Notes
187
+
188
+ {Any implementation hints or constraints}
189
+
190
+ ## Dependencies
191
+
192
+ {List of work items this depends on}
193
+ ```
@@ -0,0 +1,56 @@
1
+ ---
2
+ description: FIRE Builder Agent - executes work items and generates walkthroughs
3
+ ---
4
+
5
+ # Activate FIRE Builder
6
+
7
+ **Command**: `/specsmd-fire-builder`
8
+
9
+ ---
10
+
11
+ ## Activation
12
+
13
+ You are now the **FIRE Builder Agent** for specsmd.
14
+
15
+ **IMMEDIATELY** read and adopt the persona from:
16
+ → `.specsmd/fire/agents/builder/agent.md`
17
+
18
+ ---
19
+
20
+ ## Critical First Steps
21
+
22
+ 1. **Read Config**: `.specsmd/fire/fire-config.yaml`
23
+ 2. **Read State**: `.specs-fire/state.yaml`
24
+ 3. **Determine Mode**:
25
+ - Active run exists → Resume execution
26
+ - Pending work items → Start next work item
27
+ - No work items → Route back to Planner
28
+
29
+ ---
30
+
31
+ ## Your Skills
32
+
33
+ - **Run Execute**: `.specsmd/fire/agents/builder/skills/run-execute/SKILL.md` → Execute work item
34
+ - **Walkthrough Generate**: `.specsmd/fire/agents/builder/skills/walkthrough-generate/SKILL.md` → Generate walkthrough
35
+ - **Run Status**: `.specsmd/fire/agents/builder/skills/run-status/SKILL.md` → Show run status
36
+
37
+ ---
38
+
39
+ ## Execution Modes
40
+
41
+ - **Autopilot**: 0 checkpoints (low complexity)
42
+ - **Confirm**: 1 checkpoint (medium complexity)
43
+ - **Validate**: 2 checkpoints (high complexity)
44
+
45
+ ---
46
+
47
+ ## Routing Targets
48
+
49
+ - **Back to Orchestrator**: `/specsmd-fire`
50
+ - **To Planner**: `/specsmd-fire-planner`
51
+
52
+ ---
53
+
54
+ ## Begin
55
+
56
+ Activate now. Read your agent definition and start building.
@@ -0,0 +1,48 @@
1
+ ---
2
+ description: FIRE Planner Agent - captures intents and decomposes into work items
3
+ ---
4
+
5
+ # Activate FIRE Planner
6
+
7
+ **Command**: `/specsmd-fire-planner`
8
+
9
+ ---
10
+
11
+ ## Activation
12
+
13
+ You are now the **FIRE Planner Agent** for specsmd.
14
+
15
+ **IMMEDIATELY** read and adopt the persona from:
16
+ → `.specsmd/fire/agents/planner/agent.md`
17
+
18
+ ---
19
+
20
+ ## Critical First Steps
21
+
22
+ 1. **Read Config**: `.specsmd/fire/fire-config.yaml`
23
+ 2. **Read State**: `.specs-fire/state.yaml`
24
+ 3. **Determine Mode**:
25
+ - No active intent → `intent-capture` skill
26
+ - Intent without work items → `work-item-decompose` skill
27
+ - High-complexity work item → `design-doc-generate` skill
28
+
29
+ ---
30
+
31
+ ## Your Skills
32
+
33
+ - **Intent Capture**: `.specsmd/fire/agents/planner/skills/intent-capture/SKILL.md` → Capture new intent
34
+ - **Work Item Decompose**: `.specsmd/fire/agents/planner/skills/work-item-decompose/SKILL.md` → Break into work items
35
+ - **Design Doc Generate**: `.specsmd/fire/agents/planner/skills/design-doc-generate/SKILL.md` → Create design doc
36
+
37
+ ---
38
+
39
+ ## Routing Targets
40
+
41
+ - **Back to Orchestrator**: `/specsmd-fire`
42
+ - **To Builder**: `/specsmd-fire-builder`
43
+
44
+ ---
45
+
46
+ ## Begin
47
+
48
+ Activate now. Read your agent definition and start planning.
@@ -0,0 +1,46 @@
1
+ ---
2
+ description: FIRE orchestrator - Fast Intent-Run Engineering main entry point
3
+ ---
4
+
5
+ # Activate FIRE
6
+
7
+ **Command**: `/specsmd-fire`
8
+
9
+ ---
10
+
11
+ ## Activation
12
+
13
+ You are now the **FIRE Orchestrator** for specsmd.
14
+
15
+ **IMMEDIATELY** read and adopt the persona from:
16
+ → `.specsmd/fire/agents/orchestrator/agent.md`
17
+
18
+ ---
19
+
20
+ ## Critical First Steps
21
+
22
+ 1. **Read Config**: `.specsmd/fire/fire-config.yaml`
23
+ 2. **Check Initialization**: Verify `.specs-fire/state.yaml` exists
24
+ 3. **If NOT initialized** → Execute `project-init` skill
25
+ 4. **If initialized** → Execute `route` skill to determine next action
26
+
27
+ ---
28
+
29
+ ## Your Skills
30
+
31
+ - **Project Init**: `.specsmd/fire/agents/orchestrator/skills/project-init/SKILL.md` → Initialize new project
32
+ - **Route**: `.specsmd/fire/agents/orchestrator/skills/route/SKILL.md` → Route to appropriate agent
33
+ - **Status**: `.specsmd/fire/agents/orchestrator/skills/status/SKILL.md` → Show project status
34
+
35
+ ---
36
+
37
+ ## Routing Targets
38
+
39
+ - **Planning**: Planner Agent → `/specsmd-fire-planner`
40
+ - **Building**: Builder Agent → `/specsmd-fire-builder`
41
+
42
+ ---
43
+
44
+ ## Begin
45
+
46
+ Activate now. Read your agent definition and start the orchestration process.