@haaaiawd/anws 2.2.0 → 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 -343
  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 +4 -1
  7. package/lib/update.js +319 -319
  8. package/package.json +4 -3
  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,343 +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.0.3-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.0.0
62
-
63
- `v2.0.0` is a **major release**. It is not just a template refresh; it upgrades the project protocol.
64
-
65
- - **Unified architecture root**
66
- - move from split legacy roots to `.anws/`
67
- - standardize versioned docs and changelog storage
68
-
69
- - **Controlled `AGENTS.md` updates**
70
- - marker-based merge for modern files
71
- - automatic migration for recognized legacy files
72
- - safe preservation for unrecognized legacy files
73
-
74
- - **Multi-target projection model**
75
- - one canonical source
76
- - multiple target IDE layouts
77
- - no fake sharing of physical files across targets
78
-
79
- - **Codex projection strategy update**
80
- - Codex is now treated as **Preview**
81
- - because Codex prompts are no longer available, Anws now packages workflow guidance into `.codex/skills/anws-system/`
82
- - `SKILL.md` is the navigation shell for the bundle
83
- - workflow details, including `/quickstart`, now live under `references/*.md`
84
-
85
- - **Trae / Qoder / Kilo Code support**
86
- - Trae follows the same skills-only bundle family as Codex via `.trae/skills/anws-system/`
87
- - Qoder adds native `.qoder/commands/` + `.qoder/skills/`
88
- - Kilo Code adds native `.kilocode/workflows/` + `.kilocode/skills/`
89
-
90
- - **OpenCode support**
91
- - adds native projection support for `.opencode/commands/` and `.opencode/skills/`
92
- - `init`, `update`, manifest ownership, drift detection, and diff flows all understand OpenCode
93
-
94
- - **Stronger `anws update` semantics**
95
- - install-lock aware
96
- - directory-scan fallback
97
- - drift detection
98
- - target-by-target update summary
99
-
100
- - **Built-in ecosystem integration**
101
- - integrates `nexus-skills`
102
- - adopts `nexus-mapper` as the structural analysis backbone for `/probe`
103
- - completes the workflow rename from legacy `/scout` to `/probe`
104
-
105
- - **Branded CLI experience**
106
- - unified logo
107
- - confirmation UI
108
- - changelog generation
109
- - release-oriented terminal output
110
-
111
- ---
112
-
113
- ## Quick Start
114
-
115
- ### Install via npm
116
-
117
- ```bash
118
- npm install -g @haaaiawd/anws
119
- cd your-project
120
- anws init
121
- ```
122
-
123
- - **Requirement**
124
- - Node.js `>= 18`
125
-
126
- - **Install behavior**
127
- - `anws init` installs one or more target projections into their native folders
128
- - example: `anws init --target windsurf,opencode`
129
-
130
- ### Update an Existing Project
131
-
132
- ```bash
133
- cd your-project
134
- anws update
135
- ```
136
-
137
- - **Preview mode**
138
- - `anws update --check` previews grouped diffs without writing files
139
-
140
- - **State source**
141
- - `anws update` reads `.anws/install-lock.json`
142
- - if the lock is missing or invalid, it falls back to directory scan
143
- - if lock drift is detected, directory scan becomes the effective source for the current update
144
- - a real `anws update` can rebuild `.anws/install-lock.json` from detected targets when fallback is active
145
-
146
- - **`AGENTS.md` behavior**
147
- - marker-based file -> update stable sections, preserve `AUTO` block
148
- - recognized legacy file -> migrate into new marker-based structure
149
- - unrecognized legacy file -> warn and preserve unchanged
150
-
151
- - **Legacy migration**
152
- - if a project still has `.agent/`, the CLI can guide migration to `.agents/`
153
- - after successful migration, interactive mode can also ask whether to delete the old `.agent/`
154
-
155
- - **Upgrade record**
156
- - every successful update refreshes `.anws/changelog/`
157
- - target state is written back to `.anws/install-lock.json`
158
-
159
- ---
160
-
161
- ## Migration Notes for Existing Users
162
-
163
- If you used older Anws / Antigravity layouts, `v2.0.0` matters because:
164
-
165
- - **Directory protocol changed**
166
- - old references to `genesis/` and `anws/changelog/` are replaced by `.anws/`
167
-
168
- - **`AGENTS.md` is no longer “always skip”**
169
- - it is now a controlled managed file with merge / migrate / preserve semantics
170
-
171
- - **Target installation is explicit**
172
- - Anws now models target IDEs as first-class projections
173
-
174
- If you maintain old docs or release notes, update those references before publishing new project templates.
175
-
176
- ---
177
-
178
- ## Compatibility
179
-
180
- Anws keeps a **single canonical workflow / skill source**, then projects it into the native directory structure expected by each tool.
181
- Every supported target now receives:
182
-
183
- - a root `AGENTS.md`
184
- - a target-native `skills/` projection
185
- - one target-native workflow entry surface, depending on the tool:
186
- - `workflows`
187
- - `commands`
188
- - `prompts`
189
- - aggregated `skills` for Codex / Trae skills-only bundles
190
-
191
- | Environment | Status | Layout |
192
- | --- | --- | --- |
193
- | **Windsurf** | ✅ Full Support | `AGENTS.md` + `.windsurf/workflows/` + `.windsurf/skills/` |
194
- | **Antigravity** | ✅ Full Support | `.agents/workflows/` + `.agents/skills/` + `AGENTS.md` |
195
- | **Claude Code** | ✅ Full Support | `AGENTS.md` + `.claude/commands/` + `.claude/skills/` |
196
- | **GitHub Copilot** | ✅ Full Support | `AGENTS.md` + `.github/prompts/` + `.github/skills/` |
197
- | **Cursor** | ✅ Supported | `AGENTS.md` + `.cursor/commands/` + `.cursor/skills/` |
198
- | **Codex** | ⚠️ Preview | `AGENTS.md` + `.codex/skills/anws-system/` + `.codex/skills/<skill>/` |
199
- | **OpenCode** | ✅ Supported | `AGENTS.md` + `.opencode/commands/` + `.opencode/skills/` |
200
- | **Trae** | ✅ Supported | `AGENTS.md` + `.trae/skills/anws-system/` + `.trae/skills/<skill>/` |
201
- | **Qoder** | ✅ Supported | `AGENTS.md` + `.qoder/commands/` + `.qoder/skills/` |
202
- | **Kilo Code** | ✅ Supported | `AGENTS.md` + `.kilocode/workflows/` + `.kilocode/skills/` |
203
-
204
- ---
205
-
206
- ## Recommended Workflow
207
-
208
- Use Anws as a lifecycle, not just a folder pack.
209
-
210
- | Command | Purpose | Input | Output |
211
- | --- | --- | --- | --- |
212
- | **`/quickstart`** | Route the user through the correct workflow path | Auto-detected state | Full orchestration |
213
- | `/genesis` | Start from zero with PRD and architecture | Vague idea | PRD, architecture, ADRs |
214
- | `/probe` | Analyze a legacy codebase before change | Existing code | Risk report |
215
- | `/design-system` | Design one system in depth | Architecture overview | System design doc |
216
- | `/challenge` | Review design or tasks with adversarial pressure | Docs / tasks | Challenge report |
217
- | `/blueprint` | Break architecture into executable work | PRD + architecture | `05_TASKS.md` |
218
- | `/forge` | Turn approved tasks into code | Tasks | Working implementation |
219
- | `/change` | Modify an existing task only | Small scoped change | Updated task/design docs |
220
- | `/explore` | Research ambiguous or strategic topics | Topic | Exploration report |
221
- | `/craft` | Create workflows, skills, and prompts | Creation request | Reusable assets |
222
- | `/upgrade` | Route post-update upgrade work | Update changelog | Change or genesis path |
223
-
224
- ---
225
-
226
- ## Core Principles
227
-
228
- ### 1. Versioned Architecture
229
-
230
- - architecture is **evolved**, not silently edited
231
- - major structural changes move from `.anws/v1` to `.anws/v2`
232
- - ADRs preserve the reason behind the shape of the system
233
-
234
- ### 2. Filesystem as Memory
235
-
236
- - `AGENTS.md` is the recovery anchor
237
- - `.anws/v{N}/` stores durable architecture context
238
- - `.anws/changelog/` records upgrade history for future sessions
239
-
240
- ### 3. Thinking Before Coding
241
-
242
- - workflows force staged reasoning before implementation
243
- - the built-in `sequential-thinking` skill standardizes deep analysis
244
- - review steps exist to catch drift before code lands
245
-
246
- ---
247
-
248
- ## Project Layout
249
-
250
- ```bash
251
- your-project/
252
- ├── .anws/
253
- │ ├── install-lock.json
254
- │ ├── changelog/
255
- │ └── v{N}/
256
- ├── AGENTS.md
257
- ├── .windsurf/
258
- │ ├── workflows/
259
- │ └── skills/
260
- ├── .agents/
261
- │ ├── workflows/
262
- │ └── skills/
263
- ├── .cursor/
264
- │ ├── commands/
265
- │ └── skills/
266
- ├── .claude/
267
- │ ├── commands/
268
- │ └── skills/
269
- ├── .github/
270
- │ ├── prompts/
271
- │ └── skills/
272
- ├── .opencode/
273
- │ ├── commands/
274
- │ └── skills/
275
- ├── .qoder/
276
- │ ├── commands/
277
- │ └── skills/
278
- ├── .kilocode/
279
- │ ├── workflows/
280
- │ └── skills/
281
- ├── .trae/
282
- │ └── skills/
283
- │ ├── anws-system/
284
- │ │ ├── SKILL.md
285
- │ │ └── references/
286
- │ └── <skill>/
287
- │ └── SKILL.md
288
- └── .codex/
289
- ├── skills/
290
- │ ├── anws-system/
291
- │ │ ├── SKILL.md
292
- │ │ └── references/
293
- │ └── <skill>/
294
- │ └── SKILL.md
295
- ```
296
-
297
- > One source model. Multiple target layouts. Explicit ownership on disk.
298
-
299
- ---
300
-
301
- ## Built with Itself
302
-
303
- Anws is dogfooded on its own development.
304
-
305
- - **Architecture design**
306
- - the CLI itself was designed through `/genesis`
307
-
308
- - **Task decomposition**
309
- - implementation work was planned through `/blueprint`
310
-
311
- - **Execution**
312
- - code and doc changes were driven through `/forge`
313
-
314
- This repository is both the product and a working reference implementation.
315
-
316
- **Deep Thinking & Architecture Design**
317
- <img src="assets/genesis工作流演示.jpg" width="800" alt="Genesis Workflow">
318
-
319
- **Interactive Requirement Alignment**
320
- <img src="assets/与人类交互确认细节.jpg" width="800" alt="Human Interaction">
321
-
322
- **Autonomous Skill Invocation**
323
- <img src="assets/自主调用skills.jpg" width="800" alt="Skills Execution">
324
-
325
- ## Contributing
326
-
327
- Contributions are welcome. Before opening a PR, make sure changes align with the spec-driven workflow and the target projection model.
328
-
329
- ---
330
-
331
- ## License
332
-
333
- [MIT](LICENSE) © 2026
334
-
335
- ---
336
-
337
- <div align="center">
338
-
339
- **Made for architects who code, and AIs who think.**
340
-
341
- *Good architecture isn't written. It's designed.*
342
-
343
- </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>