@haaaiawd/anws 2.2.1 → 2.2.2

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.
Files changed (28) hide show
  1. package/README.md +180 -367
  2. package/bin/cli.js +112 -112
  3. package/lib/changelog.js +258 -258
  4. package/lib/copy.js +116 -109
  5. package/lib/diff.js +11 -0
  6. package/lib/manifest.js +212 -210
  7. package/lib/update.js +319 -319
  8. package/package.json +2 -1
  9. package/templates/.agents/skills/anws-system/SKILL.md +9 -7
  10. package/templates/.agents/skills/code-reviewer/SKILL.md +102 -327
  11. package/templates/.agents/skills/concept-modeler/SKILL.md +19 -17
  12. package/templates/.agents/skills/craft-authoring/SKILL.md +123 -0
  13. package/templates/.agents/skills/e2e-testing-guide/SKILL.md +59 -0
  14. package/templates/.agents/skills/system-designer/SKILL.md +6 -6
  15. package/templates/.agents/skills/system-designer/references/system-design-template.md +17 -17
  16. package/templates/.agents/skills/task-planner/SKILL.md +113 -113
  17. package/templates/.agents/skills/task-planner/references/TASK_TEMPLATE.md +82 -82
  18. package/templates/.agents/workflows/blueprint.md +284 -284
  19. package/templates/.agents/workflows/challenge.md +450 -491
  20. package/templates/.agents/workflows/change.md +263 -286
  21. package/templates/.agents/workflows/craft.md +243 -664
  22. package/templates/.agents/workflows/design-system.md +624 -624
  23. package/templates/.agents/workflows/explore.md +400 -371
  24. package/templates/.agents/workflows/forge.md +444 -413
  25. package/templates/.agents/workflows/genesis.md +342 -395
  26. package/templates/.agents/workflows/probe.md +21 -16
  27. package/templates/.agents/workflows/quickstart.md +123 -138
  28. package/templates/AGENTS.md +149 -134
package/README.md CHANGED
@@ -1,367 +1,180 @@
1
- <div align="center">
2
-
3
- <img src="assets/logo-cli.png" width="260" alt="Anws">
4
-
5
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
6
- [![Version](https://img.shields.io/badge/version-v2.2.1-7FB5B6)](https://github.com/Haaaiawd/ANWS/releases)
7
- [![Targets](https://img.shields.io/badge/Targets-Windsurf%20%7C%20Claude%20Code%20%7C%20Copilot%20%7C%20Cursor%20%7C%20Codex%20Preview%20%7C%20OpenCode%20%7C%20Trae%20%7C%20Qoder%20%7C%20Kilo%20Code-blueviolet)](https://github.com/Haaaiawd/ANWS)
8
-
9
- [English](./README.md) | [中文](./README_CN.md)
10
-
11
- </div>
12
-
13
- ---
14
-
15
- # Anws
16
-
17
- **Anws** is a spec-driven workflow framework for AI-assisted development across modern AI IDEs and coding tools.
18
-
19
- It helps teams build production-ready software through a disciplined path:
20
-
21
- `PRD -> Architecture -> ADR -> Tasks -> Review -> Code -> Upgrade`
22
-
23
- Anws enforces design-first principles, preserves context in files, and prevents architectural drift across multi-tool AI coding workflows.
24
-
25
- > **TL;DR**: a design-first workflow framework for AI coding tools that turns vibe coding into production-oriented engineering.
26
-
27
- ## ANWS
28
-
29
- - **Axiom** — principle before implementation
30
- - **Nexus** — connection before fragmentation
31
- - **Weave** — coherence before accumulation
32
- - **Sovereignty** — human judgment before automation
33
-
34
- ---
35
-
36
- ## Why Anws Exists
37
-
38
- Modern AI coding sessions fail in predictable ways:
39
-
40
- - **Architecture drift**
41
- - different sessions generate incompatible structures
42
-
43
- - **Context amnesia**
44
- - a fresh chat loses system decisions, trade-offs, and task state
45
-
46
- - **Planning collapse**
47
- - code gets written before requirements and interfaces are stabilized
48
-
49
- - **Unsafe upgrades**
50
- - workflow files change over time, but existing projects cannot be updated cleanly
51
-
52
- Anws addresses those problems with:
53
-
54
- - **Versioned architecture docs** under `.anws/v{N}/`
55
- - **A root anchor file** via `AGENTS.md`
56
- - **Workflow-first execution** instead of prompt-only improvisation
57
- - **Controlled update semantics** for `AGENTS.md`, installed targets, and upgrade history
58
-
59
- ---
60
-
61
- ## What's New in v2.2.0
62
-
63
- `v2.2.0` closes the loop between design review, task review, implementation, and upgrade safety.
64
-
65
- - **Closed-loop challenge review**
66
- - `/challenge` now combines `design-reviewer`, `task-reviewer`, and `code-reviewer`
67
- - implementation drift is reviewed against PRD, Architecture, ADR, System Design, and `05_TASKS.md`
68
- - findings are written into `07_CHALLENGE_REPORT.md` with contract-first severity semantics
69
-
70
- - **Code fidelity evidence layer**
71
- - new `code-reviewer` skill checks Contract Drift, Task Drift, Test Drift, Missing Change Backflow, and foundational test gaps
72
- - the review is static and evidence-based, so it does not pretend runtime validation has passed
73
-
74
- - **Contract closure across workflows**
75
- - `blueprint`, `task-planner`, `task-reviewer`, `challenge`, `change`, and `forge` now carry public contract coverage explicitly
76
- - API, CLI, config, file format, error, persistence, and verification responsibilities are tracked as first-class workflow concerns
77
-
78
- - **Forge verification gate**
79
- - `/forge` reads the latest `07_CHALLENGE_REPORT.md` before implementation work continues
80
- - unresolved Critical findings block forge; unresolved High findings require explicit human sign-off
81
- - high-risk implementation waves can run `code-reviewer` before manual verification
82
-
83
- ---
84
-
85
- ## What's New in v2.0.0
86
-
87
- `v2.0.0` is a **major release**. It is not just a template refresh; it upgrades the project protocol.
88
-
89
- - **Unified architecture root**
90
- - move from split legacy roots to `.anws/`
91
- - standardize versioned docs and changelog storage
92
-
93
- - **Controlled `AGENTS.md` updates**
94
- - marker-based merge for modern files
95
- - automatic migration for recognized legacy files
96
- - safe preservation for unrecognized legacy files
97
-
98
- - **Multi-target projection model**
99
- - one canonical source
100
- - multiple target IDE layouts
101
- - no fake sharing of physical files across targets
102
-
103
- - **Codex projection strategy update**
104
- - Codex is now treated as **Preview**
105
- - because Codex prompts are no longer available, Anws now packages workflow guidance into `.codex/skills/anws-system/`
106
- - `SKILL.md` is the navigation shell for the bundle
107
- - workflow details, including `/quickstart`, now live under `references/*.md`
108
-
109
- - **Trae / Qoder / Kilo Code support**
110
- - Trae follows the same skills-only bundle family as Codex via `.trae/skills/anws-system/`
111
- - Qoder adds native `.qoder/commands/` + `.qoder/skills/`
112
- - Kilo Code adds native `.kilocode/workflows/` + `.kilocode/skills/`
113
-
114
- - **OpenCode support**
115
- - adds native projection support for `.opencode/commands/` and `.opencode/skills/`
116
- - `init`, `update`, manifest ownership, drift detection, and diff flows all understand OpenCode
117
-
118
- - **Stronger `anws update` semantics**
119
- - install-lock aware
120
- - directory-scan fallback
121
- - drift detection
122
- - target-by-target update summary
123
-
124
- - **Built-in ecosystem integration**
125
- - integrates `nexus-skills`
126
- - adopts `nexus-mapper` as the structural analysis backbone for `/probe`
127
- - completes the workflow rename from legacy `/scout` to `/probe`
128
-
129
- - **Branded CLI experience**
130
- - unified logo
131
- - confirmation UI
132
- - changelog generation
133
- - release-oriented terminal output
134
-
135
- ---
136
-
137
- ## Quick Start
138
-
139
- ### Install via npm
140
-
141
- ```bash
142
- npm install -g @haaaiawd/anws
143
- cd your-project
144
- anws init
145
- ```
146
-
147
- - **Requirement**
148
- - Node.js `>= 18`
149
-
150
- - **Install behavior**
151
- - `anws init` installs one or more target projections into their native folders
152
- - example: `anws init --target windsurf,opencode`
153
-
154
- ### Update an Existing Project
155
-
156
- ```bash
157
- cd your-project
158
- anws update
159
- ```
160
-
161
- - **Preview mode**
162
- - `anws update --check` previews grouped diffs without writing files
163
-
164
- - **State source**
165
- - `anws update` reads `.anws/install-lock.json`
166
- - if the lock is missing or invalid, it falls back to directory scan
167
- - if lock drift is detected, directory scan becomes the effective source for the current update
168
- - a real `anws update` can rebuild `.anws/install-lock.json` from detected targets when fallback is active
169
-
170
- - **`AGENTS.md` behavior**
171
- - marker-based file -> update stable sections, preserve `AUTO` block
172
- - recognized legacy file -> migrate into new marker-based structure
173
- - unrecognized legacy file -> warn and preserve unchanged
174
-
175
- - **Legacy migration**
176
- - if a project still has `.agent/`, the CLI can guide migration to `.agents/`
177
- - after successful migration, interactive mode can also ask whether to delete the old `.agent/`
178
-
179
- - **Upgrade record**
180
- - every successful update refreshes `.anws/changelog/`
181
- - target state is written back to `.anws/install-lock.json`
182
-
183
- ---
184
-
185
- ## Migration Notes for Existing Users
186
-
187
- If you used older Anws / Antigravity layouts, `v2.0.0` matters because:
188
-
189
- - **Directory protocol changed**
190
- - old references to `genesis/` and `anws/changelog/` are replaced by `.anws/`
191
-
192
- - **`AGENTS.md` is no longer “always skip”**
193
- - it is now a controlled managed file with merge / migrate / preserve semantics
194
-
195
- - **Target installation is explicit**
196
- - Anws now models target IDEs as first-class projections
197
-
198
- If you maintain old docs or release notes, update those references before publishing new project templates.
199
-
200
- ---
201
-
202
- ## Compatibility
203
-
204
- Anws keeps a **single canonical workflow / skill source**, then projects it into the native directory structure expected by each tool.
205
- Every supported target now receives:
206
-
207
- - a root `AGENTS.md`
208
- - a target-native `skills/` projection
209
- - one target-native workflow entry surface, depending on the tool:
210
- - `workflows`
211
- - `commands`
212
- - `prompts`
213
- - aggregated `skills` for Codex / Trae skills-only bundles
214
-
215
- | Environment | Status | Layout |
216
- | --- | --- | --- |
217
- | **Windsurf** | ✅ Full Support | `AGENTS.md` + `.windsurf/workflows/` + `.windsurf/skills/` |
218
- | **Antigravity** | ✅ Full Support | `.agents/workflows/` + `.agents/skills/` + `AGENTS.md` |
219
- | **Claude Code** | ✅ Full Support | `AGENTS.md` + `.claude/commands/` + `.claude/skills/` |
220
- | **GitHub Copilot** | ✅ Full Support | `AGENTS.md` + `.github/prompts/` + `.github/skills/` |
221
- | **Cursor** | ✅ Supported | `AGENTS.md` + `.cursor/commands/` + `.cursor/skills/` |
222
- | **Codex** | ⚠️ Preview | `AGENTS.md` + `.codex/skills/anws-system/` + `.codex/skills/<skill>/` |
223
- | **OpenCode** | ✅ Supported | `AGENTS.md` + `.opencode/commands/` + `.opencode/skills/` |
224
- | **Trae** | ✅ Supported | `AGENTS.md` + `.trae/skills/anws-system/` + `.trae/skills/<skill>/` |
225
- | **Qoder** | ✅ Supported | `AGENTS.md` + `.qoder/commands/` + `.qoder/skills/` |
226
- | **Kilo Code** | ✅ Supported | `AGENTS.md` + `.kilocode/workflows/` + `.kilocode/skills/` |
227
-
228
- ---
229
-
230
- ## Recommended Workflow
231
-
232
- Use Anws as a lifecycle, not just a folder pack.
233
-
234
- | Command | Purpose | Input | Output |
235
- | --- | --- | --- | --- |
236
- | **`/quickstart`** | Route the user through the correct workflow path | Auto-detected state | Full orchestration |
237
- | `/genesis` | Start from zero with PRD and architecture | Vague idea | PRD, architecture, ADRs |
238
- | `/probe` | Analyze a legacy codebase before change | Existing code | Risk report |
239
- | `/design-system` | Design one system in depth | Architecture overview | System design doc |
240
- | `/challenge` | Review design, tasks, and implementation fidelity with adversarial pressure | Docs / tasks / code | Challenge report |
241
- | `/blueprint` | Break architecture into executable work | PRD + architecture | `05_TASKS.md` |
242
- | `/forge` | Turn approved tasks into code with challenge-report and contract gates | Tasks + review state | Working implementation |
243
- | `/change` | Modify an existing task only | Small scoped change | Updated task/design docs |
244
- | `/explore` | Research ambiguous or strategic topics | Topic | Exploration report |
245
- | `/craft` | Create workflows, skills, and prompts | Creation request | Reusable assets |
246
- | `/upgrade` | Route post-update upgrade work | Update changelog | Change or genesis path |
247
-
248
- ---
249
-
250
- ## Core Principles
251
-
252
- ### 1. Versioned Architecture
253
-
254
- - architecture is **evolved**, not silently edited
255
- - major structural changes move from `.anws/v1` to `.anws/v2`
256
- - ADRs preserve the reason behind the shape of the system
257
-
258
- ### 2. Filesystem as Memory
259
-
260
- - `AGENTS.md` is the recovery anchor
261
- - `.anws/v{N}/` stores durable architecture context
262
- - `.anws/changelog/` records upgrade history for future sessions
263
-
264
- ### 3. Thinking Before Coding
265
-
266
- - workflows force staged reasoning before implementation
267
- - the built-in `sequential-thinking` skill standardizes deep analysis
268
- - review steps exist to catch drift before code lands
269
-
270
- ---
271
-
272
- ## Project Layout
273
-
274
- ```bash
275
- your-project/
276
- ├── .anws/
277
- │ ├── install-lock.json
278
- │ ├── changelog/
279
- │ └── v{N}/
280
- ├── AGENTS.md
281
- ├── .windsurf/
282
- │ ├── workflows/
283
- │ └── skills/
284
- ├── .agents/
285
- │ ├── workflows/
286
- │ └── skills/
287
- ├── .cursor/
288
- │ ├── commands/
289
- │ └── skills/
290
- ├── .claude/
291
- │ ├── commands/
292
- │ └── skills/
293
- ├── .github/
294
- │ ├── prompts/
295
- │ └── skills/
296
- ├── .opencode/
297
- │ ├── commands/
298
- │ └── skills/
299
- ├── .qoder/
300
- │ ├── commands/
301
- │ └── skills/
302
- ├── .kilocode/
303
- │ ├── workflows/
304
- │ └── skills/
305
- ├── .trae/
306
- │ └── skills/
307
- │ ├── anws-system/
308
- │ │ ├── SKILL.md
309
- │ │ └── references/
310
- │ └── <skill>/
311
- │ └── SKILL.md
312
- └── .codex/
313
- ├── skills/
314
- │ ├── anws-system/
315
- │ │ ├── SKILL.md
316
- │ │ └── references/
317
- │ └── <skill>/
318
- │ └── SKILL.md
319
- ```
320
-
321
- > One source model. Multiple target layouts. Explicit ownership on disk.
322
-
323
- ---
324
-
325
- ## Built with Itself
326
-
327
- Anws is dogfooded on its own development.
328
-
329
- - **Architecture design**
330
- - the CLI itself was designed through `/genesis`
331
-
332
- - **Task decomposition**
333
- - implementation work was planned through `/blueprint`
334
-
335
- - **Execution**
336
- - code and doc changes were driven through `/forge`
337
-
338
- This repository is both the product and a working reference implementation.
339
-
340
- **Deep Thinking & Architecture Design**
341
- <img src="assets/genesis工作流演示.jpg" width="800" alt="Genesis Workflow">
342
-
343
- **Interactive Requirement Alignment**
344
- <img src="assets/与人类交互确认细节.jpg" width="800" alt="Human Interaction">
345
-
346
- **Autonomous Skill Invocation**
347
- <img src="assets/自主调用skills.jpg" width="800" alt="Skills Execution">
348
-
349
- ## Contributing
350
-
351
- Contributions are welcome. Before opening a PR, make sure changes align with the spec-driven workflow and the target projection model.
352
-
353
- ---
354
-
355
- ## License
356
-
357
- [MIT](LICENSE) © 2026
358
-
359
- ---
360
-
361
- <div align="center">
362
-
363
- **Made for architects who code, and AIs who think.**
364
-
365
- *Good architecture isn't written. It's designed.*
366
-
367
- </div>
1
+
2
+ <div align="center">
3
+
4
+ <img src="assets/logo-cli.png" width="260" alt="Anws">
5
+
6
+ [![License: MIT](https://opensource.org/licenses/MIT)](https://opensource.org/licenses/MIT)
7
+ [![Version](https://img.shields.io/badge/version-v2.2.2-7FB5B6)](https://github.com/Haaaiawd/ANWS/releases)
8
+ [![Targets](https://img.shields.io/badge/Targets-Windsurf%20%7C%20Claude%20Code%20%7C%20Copilot%20%7C%20Cursor%20%7C%20Codex%20Preview%20%7C%20OpenCode%20%7C%20Trae%20%7C%20Qoder%20%7C%20Kilo%20Code-blueviolet)](https://github.com/Haaaiawd/ANWS)
9
+
10
+ [English](./README.md) | [中文](./README_CN.md)
11
+
12
+ </div>
13
+
14
+ ---
15
+
16
+ # Anws
17
+
18
+ **Anws** is a spec-driven workflow framework for AI-assisted development across modern AI IDEs and coding tools.
19
+
20
+ It helps teams build production-ready software through a disciplined path:
21
+
22
+ `PRD -> Architecture -> ADR -> Tasks -> Review -> Code -> Upgrade`
23
+
24
+ Anws enforces design-first principles, preserves context in files, and prevents architectural drift across multi-tool AI coding workflows.
25
+
26
+ > **TL;DR**: a design-first workflow framework for AI coding tools that turns vibe coding into production-oriented engineering.
27
+
28
+ ## ANWS
29
+
30
+ - **Axiom** — principle before implementation
31
+ - **Nexus** — connection before fragmentation
32
+ - **Weave** — coherence before accumulation
33
+ - **Sovereignty** — human judgment before automation
34
+
35
+ ---
36
+
37
+ ## Why Anws Exists
38
+
39
+ Modern AI coding sessions fail in predictable ways:
40
+
41
+ - **Architecture drift**
42
+ - different sessions generate incompatible structures
43
+ - **Context amnesia**
44
+ - a fresh chat loses system decisions, trade-offs, and task state
45
+ - **Planning collapse**
46
+ - code gets written before requirements and interfaces are stabilized
47
+ - **Unsafe upgrades**
48
+ - workflow files change over time, but existing projects cannot be updated cleanly
49
+
50
+ Anws addresses those problems with:
51
+
52
+ - **Versioned architecture docs** under `.anws/v{N}/`
53
+ - **A root anchor file** via `AGENTS.md`
54
+ - **Workflow-first execution** instead of prompt-only improvisation
55
+ - **Controlled update semantics** for `AGENTS.md`, installed targets, and upgrade history
56
+
57
+ ---
58
+
59
+ ## What's New in v2.2.2
60
+
61
+ **v2.2.2** centers the **`/forge`** chain: **`/forge` AUTO** keeps checkpoint ceremony with **`AUTO`** signatures; **`code-reviewer`** follows **wave cadence** (typically **once per wave** at the wave’s last task, with a **~2–3 wave** catch-up if long skipped—not after every task by default); **`e2e-testing-guide`** is **guide first**, then live browser steps when tooling exists—otherwise **guide-only**, never claim “tested” without evidence. **`/change`** handles doc/task backflow only—it **does not run `code-reviewer`** (static fidelity stays in **`/forge` §3.4.5** and **`/challenge`**).
62
+
63
+ **v2.2.0** shipped closed-loop **challenge**, explicit contract closure, **`code-reviewer`** as static evidence, forge challenge-report gates, and **`e2e-testing-guide`**. Full history: **[RELEASE_NOTES.md](../RELEASE_NOTES.md)** · [GitHub Releases](https://github.com/Haaaiawd/ANWS/releases).
64
+
65
+ **v2.0.0** was the protocol-level major (unified **`.anws/`**, controlled **`AGENTS.md`**, multi-target projection). See **[RELEASE_NOTES.md](../RELEASE_NOTES.md)** for the complete major changelog.
66
+
67
+ ---
68
+
69
+ ## Quick Start
70
+
71
+ ### Install via npm
72
+
73
+ ```bash
74
+ npm install -g @haaaiawd/anws
75
+ cd your-project
76
+ anws init
77
+ ```
78
+
79
+ - **Requirement**
80
+ - Node.js `>= 18`
81
+ - **Install behavior**
82
+ - `anws init` installs one or more target projections into their native folders
83
+ - example: `anws init --target windsurf,opencode`
84
+
85
+ ### Update an Existing Project
86
+
87
+ ```bash
88
+ cd your-project
89
+ anws update
90
+ ```
91
+
92
+ - **Update flags**
93
+ - `anws update --check` and `anws update --target` are removed; run `anws update` once to refresh all matched targets
94
+ - **State source**
95
+ - `anws update` reads `.anws/install-lock.json`
96
+ - if the lock is missing or invalid, it falls back to directory scan
97
+ - if lock drift is detected, directory scan becomes the effective source for the current update
98
+ - a real `anws update` can rebuild `.anws/install-lock.json` from detected targets when fallback is active
99
+ - **`AGENTS.md` behavior**
100
+ - marker-based file -> update stable sections, preserve `AUTO` block
101
+ - recognized legacy file -> migrate into new marker-based structure
102
+ - unrecognized legacy file -> warn and preserve unchanged
103
+ - **Legacy migration**
104
+ - if a project still has `.agent/`, the CLI can guide migration to `.agents/`
105
+ - after successful migration, interactive mode can also ask whether to delete the old `.agent/`
106
+ - **Upgrade record**
107
+ - every successful update refreshes `.anws/changelog/`
108
+ - target state is written back to `.anws/install-lock.json`
109
+
110
+ ---
111
+
112
+ ## Feature demos
113
+
114
+ What using Anws looks like in practice: architecture-first **`/genesis`**, **human-in-the-loop** requirement alignment, and **skill** orchestration.
115
+
116
+ **Deep Thinking & Architecture Design**
117
+ <img src="assets/genesis工作流演示.jpg" width="800" alt="Genesis Workflow">
118
+
119
+ **Interactive Requirement Alignment**
120
+ <img src="assets/与人类交互确认细节.jpg" width="800" alt="Human Interaction">
121
+
122
+ **Autonomous Skill Invocation**
123
+ <img src="assets/自主调用skills.jpg" width="800" alt="Skills Execution">
124
+
125
+ ---
126
+
127
+ ## Philosophy
128
+
129
+ **1. Docs first—specs keep you in command**
130
+ PRD, architecture, tasks, and design land in the repo before code does—so the project doesn’t drift in aimless “vibe runs.” Scope and progress live in `.anws/`, `05_TASKS.md`, and **`AGENTS.md`**: you stay **in control of the system**, not whichever chat window is open.
131
+
132
+ **2. Full autonomy inside the rails**
133
+ **`/forge` AUTO** is delegation with checkpoints: keep moving inside agreed contracts. **Code review**, **e2e-testing-guide**, and the rest of the template gates keep runs **auditable** and **bounded**. When a wave is executing, it’s reasonable to **walk away—coffee, a walk**—because confidence comes from the spec and gates, not from staring at the model.
134
+
135
+ **Iteration is the product**
136
+ **`/challenge`** isn’t a one-time rubber stamp; it’s repeated adversarial passes. **Good products and clear ideas are sharpened over cycles**—same as real shipping: each round pulls design, tasks, and implementation back into alignment.
137
+
138
+ ---
139
+
140
+ ## Recommended Workflow
141
+
142
+ Use Anws as a lifecycle, not just a folder pack.
143
+
144
+
145
+ | Command | Purpose | Input | Output |
146
+ | ----------------- | --------------------------------------------------------------------------- | --------------------- | ------------------------ |
147
+ | **`/quickstart`** | Route the user through the correct workflow path | Auto-detected state | Full orchestration |
148
+ | `/genesis` | Start from zero with PRD and architecture | Vague idea | PRD, architecture, ADRs |
149
+ | `/probe` | Analyze a legacy codebase before change | Existing code | Risk report |
150
+ | `/design-system` | Design one system in depth | Architecture overview | System design doc |
151
+ | `/challenge` | Review design, tasks, and implementation fidelity with adversarial pressure | Docs / tasks / code | Challenge report |
152
+ | `/blueprint` | Break architecture into executable work | PRD + architecture | `05_TASKS.md` |
153
+ | `/forge` | Turn approved tasks into code with challenge-report and contract gates | Tasks + review state | Working implementation |
154
+ | `/change` | In-version task/contract tweaks (controlled expansion: few new tasks) | Small scoped change | Updated task/design docs |
155
+ | `/explore` | Research ambiguous or strategic topics | Topic | Exploration report |
156
+ | `/craft` | Create workflows, skills, and prompts | Creation request | Reusable assets |
157
+ | `/upgrade` | Route post-update upgrade work | Update changelog | Change or genesis path |
158
+
159
+
160
+ ---
161
+
162
+ ## Contributing
163
+
164
+ Contributions are welcome. Before opening a PR, make sure changes align with the spec-driven workflow and the target projection model.
165
+
166
+ ---
167
+
168
+ ## License
169
+
170
+ [MIT](LICENSE) © 2026
171
+
172
+ ---
173
+
174
+ <div align="center">
175
+
176
+ **Made for architects who code, and AIs who think.**
177
+
178
+ *Good architecture isn't written. It's designed.*
179
+
180
+ </div>