specsmd 0.0.0-dev.67 → 0.0.0-dev.69
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/templates/test-report.md.hbs +1 -1
- package/flows/fire/agents/builder/skills/walkthrough-generate/SKILL.md +1 -1
- package/flows/fire/agents/builder/skills/walkthrough-generate/scripts/render-walkthrough.ts +1 -1
- package/flows/fire/agents/builder/skills/walkthrough-generate/templates/walkthrough.md.hbs +1 -1
- package/flows/fire/agents/orchestrator/skills/project-init/templates/coding-standards.md.hbs +1 -1
- package/flows/fire/agents/orchestrator/skills/project-init/templates/system-architecture.md.hbs +1 -1
- package/flows/fire/agents/orchestrator/skills/project-init/templates/tech-stack.md.hbs +1 -1
- package/flows/fire/agents/orchestrator/skills/project-init/templates/testing-standards.md.hbs +1 -1
- package/flows/fire/agents/planner/skills/design-doc-generate/templates/design.md.hbs +62 -14
- package/package.json +1 -1
|
@@ -127,7 +127,7 @@ Generate implementation walkthrough for human review after run completion.
|
|
|
127
127
|
- Status: {passing/failing}
|
|
128
128
|
|
|
129
129
|
---
|
|
130
|
-
*Generated by FIRE Run {run-id}*
|
|
130
|
+
*Generated by specs.md - fabriqa.ai FIRE Flow Run {run-id}*
|
|
131
131
|
```
|
|
132
132
|
</output_template>
|
|
133
133
|
|
|
@@ -725,7 +725,7 @@ ${verificationStepsSection}
|
|
|
725
725
|
- Status: ${testStatus}
|
|
726
726
|
|
|
727
727
|
---
|
|
728
|
-
*Generated by FIRE Run ${runId}*
|
|
728
|
+
*Generated by specs.md - fabriqa.ai FIRE Flow Run ${runId}*
|
|
729
729
|
`;
|
|
730
730
|
|
|
731
731
|
// =========================================================================
|
|
@@ -12,6 +12,18 @@ checkpoint_1: {{checkpoint_status}}
|
|
|
12
12
|
|
|
13
13
|
{{summary}}
|
|
14
14
|
|
|
15
|
+
## Scope
|
|
16
|
+
|
|
17
|
+
**In Scope:**
|
|
18
|
+
{{#each in_scope}}
|
|
19
|
+
- {{this}}
|
|
20
|
+
{{/each}}
|
|
21
|
+
|
|
22
|
+
**Out of Scope:**
|
|
23
|
+
{{#each out_of_scope}}
|
|
24
|
+
- {{this}}
|
|
25
|
+
{{/each}}
|
|
26
|
+
|
|
15
27
|
## Key Decisions
|
|
16
28
|
|
|
17
29
|
| Decision | Choice | Rationale |
|
|
@@ -20,33 +32,35 @@ checkpoint_1: {{checkpoint_status}}
|
|
|
20
32
|
| {{this.decision}} | {{this.choice}} | {{this.rationale}} |
|
|
21
33
|
{{/each}}
|
|
22
34
|
|
|
23
|
-
|
|
24
|
-
## Domain Model
|
|
35
|
+
## Data Models Affected
|
|
25
36
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
37
|
+
{{#if models_created}}
|
|
38
|
+
### Creates
|
|
39
|
+
{{#each models_created}}
|
|
40
|
+
- **{{this.name}}**: {{this.fields}} — {{this.purpose}}
|
|
29
41
|
{{/each}}
|
|
42
|
+
{{/if}}
|
|
30
43
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
44
|
+
{{#if models_modified}}
|
|
45
|
+
### Modifies
|
|
46
|
+
{{#each models_modified}}
|
|
47
|
+
- **{{this.name}}**: {{this.changes}} — {{this.reason}}
|
|
34
48
|
{{/each}}
|
|
35
49
|
{{/if}}
|
|
36
50
|
|
|
37
51
|
## Technical Approach
|
|
38
52
|
|
|
39
|
-
###
|
|
53
|
+
### Architecture
|
|
40
54
|
|
|
41
55
|
```
|
|
42
56
|
{{component_diagram}}
|
|
43
57
|
```
|
|
44
58
|
|
|
45
|
-
{{#if
|
|
46
|
-
### API
|
|
59
|
+
{{#if api_changes}}
|
|
60
|
+
### API Changes
|
|
47
61
|
|
|
48
|
-
{{#each
|
|
49
|
-
- `{{this.method}} {{this.path}}`
|
|
62
|
+
{{#each api_changes}}
|
|
63
|
+
- `{{this.method}} {{this.path}}` — {{this.description}}
|
|
50
64
|
{{/each}}
|
|
51
65
|
{{/if}}
|
|
52
66
|
|
|
@@ -58,6 +72,40 @@ checkpoint_1: {{checkpoint_status}}
|
|
|
58
72
|
```
|
|
59
73
|
{{/if}}
|
|
60
74
|
|
|
75
|
+
{{#if dependencies}}
|
|
76
|
+
## Dependencies
|
|
77
|
+
|
|
78
|
+
{{#each dependencies}}
|
|
79
|
+
- {{this}}
|
|
80
|
+
{{/each}}
|
|
81
|
+
{{/if}}
|
|
82
|
+
|
|
83
|
+
## Affected Files
|
|
84
|
+
|
|
85
|
+
| File | Action | Purpose |
|
|
86
|
+
|------|--------|---------|
|
|
87
|
+
{{#each affected_files}}
|
|
88
|
+
| `{{this.path}}` | {{this.action}} | {{this.purpose}} |
|
|
89
|
+
{{/each}}
|
|
90
|
+
|
|
91
|
+
{{#if security_considerations}}
|
|
92
|
+
## Security Considerations
|
|
93
|
+
|
|
94
|
+
{{#each security_considerations}}
|
|
95
|
+
- **{{this.concern}}**: {{this.approach}}
|
|
96
|
+
{{/each}}
|
|
97
|
+
{{/if}}
|
|
98
|
+
|
|
99
|
+
{{#if integration_points}}
|
|
100
|
+
## Integration Points
|
|
101
|
+
|
|
102
|
+
| System | Type | Purpose |
|
|
103
|
+
|--------|------|---------|
|
|
104
|
+
{{#each integration_points}}
|
|
105
|
+
| {{this.system}} | {{this.type}} | {{this.purpose}} |
|
|
106
|
+
{{/each}}
|
|
107
|
+
{{/if}}
|
|
108
|
+
|
|
61
109
|
## Risks & Mitigations
|
|
62
110
|
|
|
63
111
|
| Risk | Impact | Mitigation |
|
|
@@ -73,4 +121,4 @@ checkpoint_1: {{checkpoint_status}}
|
|
|
73
121
|
{{/each}}
|
|
74
122
|
|
|
75
123
|
---
|
|
76
|
-
*Checkpoint 1 approved: {{approved_at}}*
|
|
124
|
+
*Generated by specs.md - fabriqa.ai FIRE Flow | Checkpoint 1 approved: {{approved_at}}*
|
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.69",
|
|
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": {
|