@matt82198/aesop 0.2.0 → 0.3.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/CHANGELOG.md +39 -1
- package/README.md +60 -263
- package/bin/cli.js +7 -3
- package/daemons/install-tasks.ps1 +193 -0
- package/daemons/run-hidden.vbs +39 -0
- package/docs/HOOK-INSTALL.md +15 -56
- package/docs/INSTALL.md +48 -3
- package/docs/PORTING.md +166 -0
- package/docs/TEAM-STATE.md +16 -184
- package/docs/reproduce.md +33 -3
- package/driver/CLAUDE.md +50 -48
- package/driver/codex_driver.py +59 -12
- package/driver/openai_transport.py +33 -0
- package/driver/wave_bridge.py +9 -1
- package/driver/wave_loop.py +437 -70
- package/driver/wave_scheduler.py +890 -0
- package/hooks/pre-push-policy.sh +22 -5
- package/monitor/collect-signals.mjs +69 -0
- package/package.json +6 -4
- package/state_store/__init__.py +2 -1
- package/state_store/projections.py +63 -0
- package/state_store/read_api.py +156 -0
- package/state_store/write_api.py +462 -0
- package/tools/cost_ceiling.py +106 -15
- package/tools/cost_projection.py +559 -0
- package/tools/crossos_drift.py +394 -0
- package/tools/eod_sweep.py +137 -33
- package/tools/mutation_test.py +130 -8
- package/tools/proposals.mjs +47 -2
- package/tools/reproduce.js +405 -0
- package/tools/secret_scan.py +73 -18
- package/tools/stall_check.py +247 -16
- package/tools/stateapi_lint.py +325 -0
- package/tools/test_battery.py +173 -0
- package/tools/verify_cost_panel.py +345 -0
- package/tools/wave_preflight.py +296 -29
- package/tools/wave_templates.py +170 -45
- package/ui/collectors.py +81 -0
- package/ui/handler.py +230 -85
- package/ui/sse.py +3 -3
- package/ui/wave_telemetry.py +24 -18
- package/ui/web/dist/assets/{index-DqZLgwNg.css → index-CNQxaiOW.css} +1 -1
- package/ui/web/dist/assets/index-CP68RIh3.js +9 -0
- package/ui/web/dist/index.html +2 -2
- package/docs/QUICKSTART.md +0 -80
- package/ui/web/dist/assets/index-BGbgw2Nh.js +0 -9
package/ui/web/dist/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Aesop Fleet Dashboard</title>
|
|
7
7
|
<script>window.__AESOP_CSRF_TOKEN__ = __AESOP_CSRF_SENTINEL__;</script>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-CP68RIh3.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CNQxaiOW.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/docs/QUICKSTART.md
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
# Quickstart: 5 Minutes to Your First Wave
|
|
2
|
-
|
|
3
|
-
Get from `npx @matt82198/aesop` to a working wave cycle: scaffold, verify, run the orchestrator skills, and watch it work.
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Step 1: Scaffold
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
cd ~/my-repo
|
|
11
|
-
npx @matt82198/aesop .
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
Or if your repo is new:
|
|
15
|
-
```bash
|
|
16
|
-
npx @matt82198/aesop my-fleet && cd my-fleet
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
This installs daemons, skills, config, and a pre-push hook. Edit `aesop.config.json` to add repos.
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## Step 2: Verify & Test
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
npx @matt82198/aesop doctor # Preflight: Git, Node, Python, CLI, skills
|
|
27
|
-
bash daemons/run-watchdog.sh --once # Test the watchdog daemon
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
Expected: all green. See [INSTALL.md](INSTALL.md) if not.
|
|
31
|
-
|
|
32
|
-
---
|
|
33
|
-
|
|
34
|
-
## Step 3: Launch Dashboard (Optional)
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
npx @matt82198/aesop dash # Opens http://localhost:8770
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
Monitor waves in real-time. View logs, agents, heartbeats, backlog.
|
|
41
|
-
|
|
42
|
-
---
|
|
43
|
-
|
|
44
|
-
## Step 4: Run Your First Wave (in Claude Code)
|
|
45
|
-
|
|
46
|
-
### Priming
|
|
47
|
-
```
|
|
48
|
-
/power
|
|
49
|
-
```
|
|
50
|
-
Loads orchestrator brain, verifies system health, outputs next steps.
|
|
51
|
-
|
|
52
|
-
### Orchestrating
|
|
53
|
-
```
|
|
54
|
-
/buildsystem
|
|
55
|
-
```
|
|
56
|
-
Runs one complete iteration: ranks backlog → dispatches Haiku agents → verifies merges → checkpoints state → audits fleet. Typically 30 min–2 hours.
|
|
57
|
-
|
|
58
|
-
---
|
|
59
|
-
|
|
60
|
-
## Key Concepts
|
|
61
|
-
|
|
62
|
-
**Local + Claude Code**: Orchestrator runs in Claude Code; subagents are Haiku dispatched via `/buildsystem`. Daemons run locally (watchdog, dashboard).
|
|
63
|
-
|
|
64
|
-
**State survives wipes**: `STATE.md` and `BUILDLOG.md` are committed to git. Resume anytime.
|
|
65
|
-
|
|
66
|
-
**Cost**: ~$0.03–$0.05 per wave (1 Opus + 5–8 Haikus).
|
|
67
|
-
|
|
68
|
-
**No modification of your repos**: Each agent works in a sibling worktree. Primary tree stays clean.
|
|
69
|
-
|
|
70
|
-
---
|
|
71
|
-
|
|
72
|
-
## Next Steps
|
|
73
|
-
|
|
74
|
-
- [CONFIGURE.md](CONFIGURE.md) — Customize repos and ports
|
|
75
|
-
- [CONCEPTS.md](CONCEPTS.md) — Dispatch model and architecture
|
|
76
|
-
- [FIRST-WAVE.md](FIRST-WAVE.md) — Detailed expectations and monitoring
|
|
77
|
-
- [ANY-REPO.md](ANY-REPO.md) — Adapt to any codebase (no stack lock-in)
|
|
78
|
-
- [HOW-THE-LOOP-WORKS.md](HOW-THE-LOOP-WORKS.md) — Concrete walkthrough
|
|
79
|
-
|
|
80
|
-
**Troubleshooting**: [INSTALL.md#troubleshooting](INSTALL.md)
|