specsmd 0.0.0-dev.45 → 0.0.0-dev.47
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.
|
@@ -71,17 +71,7 @@ Initialize a new FIRE project by detecting workspace type and setting up standar
|
|
|
71
71
|
</output>
|
|
72
72
|
</step>
|
|
73
73
|
|
|
74
|
-
<step n="4" title="
|
|
75
|
-
<ask>
|
|
76
|
-
Default execution mode for work items?
|
|
77
|
-
|
|
78
|
-
[1] Autopilot - AI executes directly (fast, for experienced teams)
|
|
79
|
-
[2] Confirm (Recommended) - AI shows plan, you approve
|
|
80
|
-
[3] Validate - Design review + plan approval (for critical work)
|
|
81
|
-
</ask>
|
|
82
|
-
</step>
|
|
83
|
-
|
|
84
|
-
<step n="5" title="Create Structure">
|
|
74
|
+
<step n="4" title="Create Structure">
|
|
85
75
|
<action>Create .specs-fire/ directory</action>
|
|
86
76
|
<action>Create .specs-fire/intents/</action>
|
|
87
77
|
<action>Create .specs-fire/runs/</action>
|
|
@@ -91,7 +81,7 @@ Initialize a new FIRE project by detecting workspace type and setting up standar
|
|
|
91
81
|
<action>Generate .specs-fire/standards/coding-standards.md</action>
|
|
92
82
|
</step>
|
|
93
83
|
|
|
94
|
-
<step n="
|
|
84
|
+
<step n="5" title="Complete">
|
|
95
85
|
<output>
|
|
96
86
|
FIRE initialized!
|
|
97
87
|
|
|
@@ -61,13 +61,23 @@ Capture user intent through guided conversation.
|
|
|
61
61
|
Let me make sure I understand:
|
|
62
62
|
|
|
63
63
|
**Goal**: {summarized goal}
|
|
64
|
+
|
|
64
65
|
**Users**: {who benefits}
|
|
66
|
+
|
|
65
67
|
**Problem**: {what pain this solves}
|
|
66
|
-
|
|
68
|
+
|
|
69
|
+
**Success Criteria**:
|
|
70
|
+
- {criterion 1}
|
|
71
|
+
- {criterion 2}
|
|
72
|
+
- {criterion 3}
|
|
73
|
+
|
|
74
|
+
**Constraints**:
|
|
75
|
+
- {constraint 1}
|
|
76
|
+
- {constraint 2}
|
|
67
77
|
|
|
68
78
|
Is this accurate? [Y/n/clarify]
|
|
69
79
|
</output>
|
|
70
|
-
<check if="response == clarify">
|
|
80
|
+
<check if="response == n or clarify">
|
|
71
81
|
<action>Ask specific clarifying questions</action>
|
|
72
82
|
<goto step="3"/>
|
|
73
83
|
</check>
|
|
@@ -87,9 +97,12 @@ Capture user intent through guided conversation.
|
|
|
87
97
|
|
|
88
98
|
<step n="6" title="Transition">
|
|
89
99
|
<output>
|
|
90
|
-
Intent captured
|
|
100
|
+
**Intent captured**: "{intent-title}"
|
|
101
|
+
|
|
91
102
|
Saved to: .specs-fire/intents/{intent-id}/brief.md
|
|
92
103
|
|
|
104
|
+
---
|
|
105
|
+
|
|
93
106
|
Ready to break this into work items? [Y/n]
|
|
94
107
|
</output>
|
|
95
108
|
<check if="response == y">
|
package/lib/constants.js
CHANGED
|
@@ -12,19 +12,19 @@ const THEME_COLORS = {
|
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
const FLOWS = {
|
|
15
|
-
aidlc: {
|
|
16
|
-
name: 'AI-DLC',
|
|
17
|
-
description: 'AI-Driven Development Life Cycle - Best for greenfield projects with AI-native development',
|
|
18
|
-
path: 'aidlc'
|
|
19
|
-
},
|
|
20
15
|
fire: {
|
|
21
16
|
name: 'FIRE',
|
|
22
|
-
description: '
|
|
17
|
+
description: 'Rapid execution - Solo devs or small teams, brownfield, 0-2 adaptive checkpoints',
|
|
23
18
|
path: 'fire'
|
|
24
19
|
},
|
|
20
|
+
aidlc: {
|
|
21
|
+
name: 'AI-DLC',
|
|
22
|
+
description: 'Full methodology with DDD - Teams, complex domains, 10-26 checkpoints',
|
|
23
|
+
path: 'aidlc'
|
|
24
|
+
},
|
|
25
25
|
simple: {
|
|
26
26
|
name: 'Simple',
|
|
27
|
-
description: 'Spec
|
|
27
|
+
description: 'Spec generation only (Kiro style) - Creates requirement/design/task docs, no execution tracking',
|
|
28
28
|
path: 'simple'
|
|
29
29
|
}
|
|
30
30
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.47",
|
|
4
4
|
"description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|