specsmd 0.0.14 → 0.0.16
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 +13 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,7 @@ specsmd implements the [AI-Driven Development Lifecycle (AI-DLC)](https://aws.am
|
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
|
11
|
-
<
|
|
12
|
-
<img src="https://asciinema.org/a/763877.svg" alt="specs.md demo" width="800" />
|
|
13
|
-
</a>
|
|
11
|
+
<img src="assets/demo.gif" alt="specs.md demo" width="800" />
|
|
14
12
|
</p>
|
|
15
13
|
|
|
16
14
|
---
|
|
@@ -110,20 +108,18 @@ AI-DLC is a reimagined software development methodology where **AI drives the co
|
|
|
110
108
|
|
|
111
109
|
specsmd provides four specialized agents that guide you through the entire development lifecycle:
|
|
112
110
|
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
Define units Build & test Verify & scale
|
|
126
|
-
Plan stories Validate stages
|
|
111
|
+
```mermaid
|
|
112
|
+
flowchart TB
|
|
113
|
+
MA[Master Agent<br/>Orchestrates & Navigates] --> IA[Inception Agent]
|
|
114
|
+
MA --> CA[Construction Agent]
|
|
115
|
+
MA --> OA[Operations Agent]
|
|
116
|
+
|
|
117
|
+
IA --> CA --> OA
|
|
118
|
+
|
|
119
|
+
style MA fill:#8B5CF6,stroke:#7C3AED,color:#fff
|
|
120
|
+
style IA fill:#818CF8,stroke:#6366F1,color:#fff
|
|
121
|
+
style CA fill:#34D399,stroke:#10B981,color:#fff
|
|
122
|
+
style OA fill:#FBBF24,stroke:#F59E0B,color:#fff
|
|
127
123
|
```
|
|
128
124
|
|
|
129
125
|
### The Three Phases
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
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": {
|