Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ Everything below is **deterministic software around the model** (OpenRouter toda
| **Runtime graph** | Done | `AgentFactory`, `spawn_agent`, depth/child budgets, async `execute_many` | [`orchestration/`](src/ai_agent/orchestration/) · [`harness/registry.py`](src/ai_agent/harness/registry.py) |
| **Self-Evolving Engineer** | Done | `evolve` → plan/patch/checks → scoped commit → push → PR (optional `--approve` HITL) | [`features/evolve`](src/ai_agent/features/evolve/) · [`config/agents/engineer.yaml`](config/agents/engineer.yaml) |
- Evolve artifacts live under `.ai_agent/evolve/<run_id>/`.

### Evolve CLI

Run the engineer workflow with `uv run evolve`: it surveys the repository, plans and applies one scoped change, runs checks, then commits and opens a pull request. Add `--approve` to enable human approval for publishing; each run records its plan and result under `.ai_agent/evolve/<run_id>/`.

| **HarnessBank Gene Bank** | Done (v1) | `(where)×(why)` cells + gated screening stubs; evolver ≠ task agent | [`features/harness_bank`](src/ai_agent/features/harness_bank/) |
| **Organism worker (Phase 2)** | Done | Goal queue + backlog → `run_evolve` on wake → opt-in `--auto-merge` + CI + STOP | [`features/evolve/organism.py`](src/ai_agent/features/evolve/organism.py) · [`config/evolve_backlog.yaml`](config/evolve_backlog.yaml) |
| **Ops metrics** | Done (log) | JSONL `OpsEvent`, replay/compare hooks | [`harness/ops_metrics.py`](src/ai_agent/harness/ops_metrics.py) |
Expand Down
Loading