specsmd 0.0.0-dev.47 → 0.0.0-dev.49
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.
- package/flows/fire/agents/builder/skills/run-execute/SKILL.md +4 -4
- package/flows/fire/agents/orchestrator/skills/project-init/SKILL.md +1 -1
- package/flows/fire/agents/orchestrator/skills/status/SKILL.md +0 -2
- package/flows/fire/agents/planner/skills/design-doc-generate/SKILL.md +4 -3
- package/flows/fire/agents/planner/skills/intent-capture/SKILL.md +2 -2
- package/flows/fire/agents/planner/skills/work-item-decompose/SKILL.md +8 -6
- package/package.json +1 -1
|
@@ -97,10 +97,10 @@ Before executing scripts, ensure required dependencies are installed:
|
|
|
97
97
|
{list test files}
|
|
98
98
|
|
|
99
99
|
---
|
|
100
|
-
Approve plan? [Y/n/
|
|
100
|
+
Approve plan? [Y/n/edit]
|
|
101
101
|
</output>
|
|
102
102
|
</checkpoint>
|
|
103
|
-
<check if="response ==
|
|
103
|
+
<check if="response == edit">
|
|
104
104
|
<ask>What changes to the plan?</ask>
|
|
105
105
|
<action>Adjust plan</action>
|
|
106
106
|
<goto step="3b"/>
|
|
@@ -128,10 +128,10 @@ Before executing scripts, ensure required dependencies are installed:
|
|
|
128
128
|
|
|
129
129
|
---
|
|
130
130
|
This is Checkpoint 2 of Validate mode.
|
|
131
|
-
Approve implementation plan? [Y/n/
|
|
131
|
+
Approve implementation plan? [Y/n/edit]
|
|
132
132
|
</output>
|
|
133
133
|
</checkpoint>
|
|
134
|
-
<check if="response ==
|
|
134
|
+
<check if="response == edit">
|
|
135
135
|
<ask>What changes to the plan?</ask>
|
|
136
136
|
<action>Adjust plan</action>
|
|
137
137
|
<goto step="3c"/>
|
|
@@ -67,7 +67,7 @@ Initialize a new FIRE project by detecting workspace type and setting up standar
|
|
|
67
67
|
**Framework**: {suggested_framework}
|
|
68
68
|
**Database**: {suggested_database}
|
|
69
69
|
|
|
70
|
-
Accept these suggestions? [Y/n/
|
|
70
|
+
Accept these suggestions? [Y/n/edit]
|
|
71
71
|
</output>
|
|
72
72
|
</step>
|
|
73
73
|
|
|
@@ -26,7 +26,6 @@ Display current FIRE project status.
|
|
|
26
26
|
|
|
27
27
|
**Project**: {project.name}
|
|
28
28
|
**Workspace**: {workspace.type} / {workspace.structure}
|
|
29
|
-
**Default Mode**: {workspace.default_mode}
|
|
30
29
|
|
|
31
30
|
## Intents
|
|
32
31
|
|
|
@@ -72,7 +71,6 @@ Display current FIRE project status.
|
|
|
72
71
|
|
|
73
72
|
**Project**: my-saas-app
|
|
74
73
|
**Workspace**: brownfield / monolith
|
|
75
|
-
**Default Mode**: confirm
|
|
76
74
|
|
|
77
75
|
## Intents
|
|
78
76
|
|
|
@@ -112,7 +112,7 @@ Generate design documents for Validate mode work items (Checkpoint 1).
|
|
|
112
112
|
---
|
|
113
113
|
This is Checkpoint 1 of Validate mode.
|
|
114
114
|
|
|
115
|
-
Approve design? [Y/n/
|
|
115
|
+
Approve design? [Y/n/edit]
|
|
116
116
|
</output>
|
|
117
117
|
</checkpoint>
|
|
118
118
|
</step>
|
|
@@ -123,10 +123,11 @@ Generate design documents for Validate mode work items (Checkpoint 1).
|
|
|
123
123
|
<action>Mark checkpoint 1 as passed</action>
|
|
124
124
|
<output>
|
|
125
125
|
Design approved. Ready for implementation planning.
|
|
126
|
-
|
|
126
|
+
|
|
127
|
+
Route to Builder for Checkpoint 2 (implementation plan)? [Y/n]
|
|
127
128
|
</output>
|
|
128
129
|
</check>
|
|
129
|
-
<check if="response ==
|
|
130
|
+
<check if="response == edit">
|
|
130
131
|
<ask>What changes are needed?</ask>
|
|
131
132
|
<action>Incorporate feedback</action>
|
|
132
133
|
<goto step="8"/>
|
|
@@ -75,9 +75,9 @@ Capture user intent through guided conversation.
|
|
|
75
75
|
- {constraint 1}
|
|
76
76
|
- {constraint 2}
|
|
77
77
|
|
|
78
|
-
Is this accurate? [Y/n/
|
|
78
|
+
Is this accurate? [Y/n/edit]
|
|
79
79
|
</output>
|
|
80
|
-
<check if="response == n or
|
|
80
|
+
<check if="response == n or edit">
|
|
81
81
|
<action>Ask specific clarifying questions</action>
|
|
82
82
|
<goto step="3"/>
|
|
83
83
|
</check>
|
|
@@ -97,16 +97,18 @@ Break an intent into discrete, executable work items.
|
|
|
97
97
|
<output>
|
|
98
98
|
## Work Items for "{intent-title}"
|
|
99
99
|
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
**Total**: {count} work items
|
|
101
|
+
**Estimated**: {low} autopilot, {medium} confirm, {high} validate
|
|
102
|
+
|
|
103
|
+
**Work Item Details**:
|
|
104
|
+
|
|
102
105
|
{for each item}
|
|
103
|
-
|
|
106
|
+
{n}. **{title}** ({mode}) — {description}
|
|
104
107
|
{/for}
|
|
105
108
|
|
|
106
|
-
|
|
107
|
-
Estimated: {low} autopilot, {medium} confirm, {high} validate
|
|
109
|
+
---
|
|
108
110
|
|
|
109
|
-
Approve this plan? [Y/n/
|
|
111
|
+
Approve this plan? [Y/n/edit]
|
|
110
112
|
</output>
|
|
111
113
|
</step>
|
|
112
114
|
|
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.49",
|
|
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": {
|