specsmd 0.0.25 → 0.0.27
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/README.md
CHANGED
|
@@ -163,7 +163,6 @@ The smallest iteration in AI-DLC, designed for rapid implementation. Unlike Spri
|
|
|
163
163
|
|------|----------|--------|
|
|
164
164
|
| **DDD Construction** | Complex business logic, domain modeling | Model → Design → ADR → Implement → Test |
|
|
165
165
|
| **Simple Construction** | UI, integrations, utilities | Spec → Implement → Test |
|
|
166
|
-
| **Spike** | Research, exploration, unknowns | Explore → Document |
|
|
167
166
|
|
|
168
167
|
### Memory Bank
|
|
169
168
|
File-based storage for all project artifacts. Maintains context across agent sessions and provides traceability between artifacts.
|
|
@@ -274,8 +273,8 @@ DDD, TDD, and BDD are integral to the methodology - not optional add-ons. This a
|
|
|
274
273
|
### Tool Agnostic
|
|
275
274
|
Works with Claude Code, Cursor, GitHub Copilot, and other AI coding assistants. Markdown-based agents work anywhere.
|
|
276
275
|
|
|
277
|
-
### Context
|
|
278
|
-
|
|
276
|
+
### Context Engineering
|
|
277
|
+
Specs and Memory Bank provide structured context for AI agents. Agents reload context each session - no more lost knowledge.
|
|
279
278
|
|
|
280
279
|
---
|
|
281
280
|
|
|
@@ -83,14 +83,12 @@ Once units are defined, plan your first bolt:
|
|
|
83
83
|
/specsmd-inception-agent bolt-plan
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
A **Bolt** is a rapid iteration (hours to days).
|
|
86
|
+
A **Bolt** is a rapid iteration (hours to days). Two types available:
|
|
87
87
|
|
|
88
88
|
| Bolt Type | Best For |
|
|
89
89
|
|-----------|----------|
|
|
90
90
|
| **DDD Construction** | Complex business logic, domain modeling |
|
|
91
|
-
| **
|
|
92
|
-
| **BDD Construction** | User-facing features, acceptance criteria |
|
|
93
|
-
| **Spike** | Research, exploration, unknowns |
|
|
91
|
+
| **Simple Construction** | UI, integrations, utilities |
|
|
94
92
|
|
|
95
93
|
### Step 4: Execute Bolts
|
|
96
94
|
|
|
@@ -100,12 +98,13 @@ Switch to the Construction Agent to execute:
|
|
|
100
98
|
/specsmd-construction-agent bolt-start
|
|
101
99
|
```
|
|
102
100
|
|
|
103
|
-
Each bolt goes through stages:
|
|
101
|
+
Each bolt goes through stages (DDD bolt example):
|
|
104
102
|
|
|
105
|
-
1. **Domain
|
|
106
|
-
2. **
|
|
107
|
-
3. **
|
|
108
|
-
4. **
|
|
103
|
+
1. **Domain Model** - Model the business logic
|
|
104
|
+
2. **Technical Design** - Define interfaces and architecture
|
|
105
|
+
3. **ADR Analysis** - Document significant decisions (optional)
|
|
106
|
+
4. **Implement** - Write production code
|
|
107
|
+
5. **Test** - Verify correctness
|
|
109
108
|
|
|
110
109
|
Human validation happens at each stage.
|
|
111
110
|
|
|
@@ -198,7 +197,7 @@ After installation, your project will have:
|
|
|
198
197
|
├── templates/ # Artifact templates
|
|
199
198
|
│ ├── inception/ # Intent, unit, story templates
|
|
200
199
|
│ ├── construction/ # Bolt templates and bolt-types
|
|
201
|
-
│ │ └── bolt-types/ # DDD
|
|
200
|
+
│ │ └── bolt-types/ # DDD and Simple bolt definitions
|
|
202
201
|
│ └── standards/ # Standards facilitation
|
|
203
202
|
│ ├── catalog.yaml # Standards registry
|
|
204
203
|
│ └── *.guide.md # Facilitation guides
|
|
@@ -244,7 +243,7 @@ A cohesive, self-contained work element derived from an Intent. Analogous to a S
|
|
|
244
243
|
|
|
245
244
|
### Bolt
|
|
246
245
|
|
|
247
|
-
The smallest iteration in AI-DLC. Unlike Sprints (weeks), Bolts are hours to days.
|
|
246
|
+
The smallest iteration in AI-DLC. Unlike Sprints (weeks), Bolts are hours to days. Two types: DDD Construction and Simple Construction.
|
|
248
247
|
|
|
249
248
|
### Memory Bank
|
|
250
249
|
|
|
@@ -81,7 +81,6 @@ Review all stories to understand:
|
|
|
81
81
|
|
|
82
82
|
- `ddd-construction-bolt` - For domain-heavy backend work (5 stages)
|
|
83
83
|
- `simple-construction-bolt` - For UI, integrations, utilities (3 stages)
|
|
84
|
-
- `spike-bolt` - For research and exploration
|
|
85
84
|
|
|
86
85
|
### 3. Assess Story Complexity
|
|
87
86
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
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": {
|