@nathapp/nax 0.52.0 → 0.53.0-canary.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.
- package/README.md +10 -0
- package/dist/nax.js +600 -888
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
|
|
5
5
|
Give it a spec. It writes tests, implements code, verifies quality, and retries until everything passes.
|
|
6
6
|
|
|
7
|
+
## Why nax
|
|
8
|
+
|
|
9
|
+
nax is an **orchestrator, not an agent** — it doesn't write code itself. It drives whatever coding agent you choose through a disciplined loop until your tests pass.
|
|
10
|
+
|
|
11
|
+
- **Agent-agnostic** — use Claude Code, Codex, Gemini CLI, or any ACP-compatible agent
|
|
12
|
+
- **TDD-enforced** — acceptance tests must fail before implementation starts
|
|
13
|
+
- **Loop until done** — verify, retry, escalate, and regression-check automatically
|
|
14
|
+
- **Monorepo-ready** — per-package config and per-story working directories
|
|
15
|
+
- **Extensible** — plugin system for routing, review, and reporting
|
|
16
|
+
|
|
7
17
|
## Install
|
|
8
18
|
|
|
9
19
|
```bash
|