magic-spec 1.2.0 → 1.2.1
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
**Specification-Driven Development (SDD) workflow for AI coding agents.**
|
|
8
8
|
|
|
9
9
|
Stop your AI from writing code before it understands the problem.
|
|
10
|
-
`magic-spec` installs a structured pipeline — *Thought → Spec →
|
|
10
|
+
`magic-spec` installs a structured pipeline — *Thought → Spec → Task → Run → Code* — directly into any project, regardless of stack.
|
|
11
11
|
|
|
12
12
|
## ✨ What is Magic Spec?
|
|
13
13
|
|
|
14
14
|
`magic-spec` is a set of **markdown-based workflow instructions** for AI coding agents (Cursor, Claude, Gemini, Copilot, etc.). It acts as an operating system for agentic development, enforcing a rigorous, structured pipeline:
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
💡 Idea → 📋 Specification → 🗺️ Plan → ⚡
|
|
17
|
+
💡 Idea → 📋 Specification → 🗺️ Task & Plan → ⚡ Run → 🚀 Code
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Once installed, your AI agent will automatically:
|
|
@@ -54,7 +54,7 @@ Both commands do exactly the same thing:
|
|
|
54
54
|
| Principle | Description |
|
|
55
55
|
| :--- | :--- |
|
|
56
56
|
| **Specs First, Code Later** | The agent is forbidden from writing code from raw input. All ideas become specs first. |
|
|
57
|
-
| **Deterministic Process** | A strict pipeline is enforced: *Thought → Spec →
|
|
57
|
+
| **Deterministic Process** | A strict pipeline is enforced: *Thought → Spec → Task → Run → Code*. |
|
|
58
58
|
| **Constitution-Driven** | All project decisions live in `.design/RULES.md` — the project's living constitution. |
|
|
59
59
|
| **Self-Improving** | After each phase and at plan completion, the Task workflow automatically runs a retrospective and generates improvement recommendations. |
|
|
60
60
|
|