@matt82198/aesop 0.1.0-rc.1 → 0.1.0

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 CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.0] - 2026-07-17
11
+
12
+ First stable release. This is the graduation of `0.1.0-rc.1` to a stable version with the
13
+ same feature set — no code changes beyond the version/documentation promotion. It publishes to
14
+ npm under the `latest` dist-tag. Highlights carried from rc.1: verified Opus audit (0
15
+ hallucinated findings), kill-switch wired into the live dispatch path, cost-ceiling guardrail,
16
+ a measured held-out benchmark (39 judgment tasks, Haiku on par with Opus at ~1/3 the cost),
17
+ the state-reconcile primitive, browser-proven dashboard views (Wave PR Board + Agent
18
+ Inspector), a source-available license, and a slim, reproducible ~409 kB npm package. See the
19
+ [0.1.0-rc.1] entry below for the full itemized list, and RELEASE-NOTES.md for the honest-limits
20
+ account (small-N benchmark, cost-ceiling not yet tied to live token spend, local-first).
21
+
10
22
  ## [0.1.0-rc.1] - 2026-07-17
11
23
 
12
24
  First release candidate. The dispatch-model claims are now backed by measurement, the
package/README.md CHANGED
@@ -8,13 +8,13 @@
8
8
 
9
9
  <p align="center">
10
10
  <a href="https://github.com/matt82198/aesop/actions/workflows/ci.yml"><img src="https://github.com/matt82198/aesop/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
11
- <a href="https://www.npmjs.com/package/@matt82198/aesop"><img src="https://img.shields.io/npm/v/@matt82198/aesop/rc" alt="npm"></a>
11
+ <a href="https://www.npmjs.com/package/@matt82198/aesop"><img src="https://img.shields.io/npm/v/@matt82198/aesop" alt="npm"></a>
12
12
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-PolyForm%20Strict%201.0.0-orange.svg" alt="License: PolyForm Strict 1.0.0 (source-available)"></a>
13
13
  </p>
14
14
 
15
15
  **Aesop** is a source-available orchestration harness for Claude Code that builds itself. It runs a `/buildsystem` wave cycle—ranking a backlog, fanning out parallel Haiku agents (1/3 the cost of Sonnet, 1/5 the cost of Opus), watchdogging them, verifying merges, then feeding the next wave via audit + ideation + fleet-ops monitoring. **This repo's own PRs are built by Aesop's own loop.** Dogfooding, not doctrine.
16
16
 
17
- As of **0.1.0-rc.1**, that loop has carried the project to an installable, tested, audited, and benchmarked release candidate—the fleet running the wave loop on its own, under a human who sets goals and owns the outward gates. The claims below are backed by committed artifacts you can check, not adjectives. See [Milestone: it shipped itself](#milestone-it-shipped-itself-010-rc1).
17
+ As of **0.1.0**, that loop has carried the project to an installable, tested, audited, and benchmarked stable release—the fleet running the wave loop on its own, under a human who sets goals and owns the outward gates. The claims below are backed by committed artifacts you can check, not adjectives. See [Milestone: it shipped itself](#milestone-it-shipped-itself-010-rc1).
18
18
 
19
19
  What you get: **cost-optimized multi-agent dispatch** (Haiku-first subagents, lean orchestrator), **durable state** (git-committed checkpoints survive wipes), **observable machinery** (every agent run logged, every cost tracked), **live dashboard** (real-time fleet health at http://localhost:8770), and **security gates** (secret-scan blocks pushes, CI validates each merge).
20
20
 
@@ -70,12 +70,12 @@ audit + fleet-ops monitoring
70
70
 
71
71
  ## Get Started (3 steps, 5 min)
72
72
 
73
- **Note:** Aesop is at its first release candidate. Install the `@rc` tag for the latest prerelease (v0.1.0-rc.1); the `@beta` tag remains available for earlier prereleases.
73
+ **Note:** Aesop's first stable release is `0.1.0`, published to npm under the `latest` tag a plain `npx @matt82198/aesop` or `npm install @matt82198/aesop` pulls it. Earlier prereleases remain available under the `@rc` and `@beta` tags.
74
74
 
75
75
  ### Quickest path: npx scaffold
76
76
 
77
77
  ```bash
78
- npx @matt82198/aesop@rc my-fleet \
78
+ npx @matt82198/aesop my-fleet \
79
79
  --name "my-api" \
80
80
  --repos "/path/to/repo1,/path/to/repo2"
81
81
  cd my-fleet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matt82198/aesop",
3
- "version": "0.1.0-rc.1",
3
+ "version": "0.1.0",
4
4
  "description": "Multi-agent orchestration for AI coding agents, designed to survive failure \u00e2\u20ac\u201d a plain-file brain, git as the only durable layer, cheap subagent fleets, and guardrails enforced in code.",
5
5
  "bin": {
6
6
  "aesop": "bin/cli.js"