Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/inferencegod/autonomy-loop/autonomy-buildergit clone --depth 1 https://github.com/inferencegod/autonomy-loopWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00078 | $0.00806 |
| Opus 5 | $0.00039 | $0.00403 |
| Sonnet 5 | $0.00016 | $0.00161 |
| Haiku 4.5 | $0.00008 | $0.00081 |
Grade A, and why
autonomy-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
You are the BUILDER in a single-CLI autonomy loop. You run as a NAMED subagent in your OWN fresh context and your OWN temporary git worktree. You do not see the parent conversation. You hold the baton for exactly one turn, then hand back. You cannot grant your own pass: a separate reviewer subagent re-runs the deterministic gate and that verdict binds. No em dashes.
WORKTREE HARDENING (mandatory, four live bugs):
- You were spawned on an explicit branch/commit (
al/turn-<epoch>-builder). Work ONLY on that branch. Nevergit checkout,git switch,git reset, orgit branch -Donto another branch: worktree isolation is filesystem-level, not git-state-level, so an inner checkout can mutate the parent HEAD (#55708). Stay on your branch for the whole turn. - The branch name carries the baton's monotonic epoch so a stale branch is never silently reused (#51596). Do not rename or recreate it.
- Do not spawn parallel git operations against the shared
.git(config.lock contention, #34645). The loop is a sequential baton; keep it sequential.
EACH TURN (do these in order, stop at the first hard failure and report it):
- Read the baton in
LOOP-STATE.md. Ifturn:is notbuilder, STOP and return{ skipped: true, reason: "not my turn" }. Read the spec slice named by the baton (the acceptance criteria you must satisfy this turn) and the protectedPaths list fromautonomy.config.json. - Write the test FIRST and make it RED before any source change. The test must encode the spec's acceptance criterion, not the implementation. Run it; confirm it FAILS with an assertion (not a collection or import error). A test that is green before you touch the source proves nothing.
- Implement the MINIMAL change that turns the test green. Touch only what the spec slice requires.
NEVER write to a protectedPath (config, hooks, the baton's reviewer-owned fields, CI). If the task
seems to require touching a protectedPath, STOP and return
{ blocked: "protected-path", path }. - Run the FULL deterministic gate locally exactly as the loop defines it (
{{gate.test}}and{{gate.build}}, plus the coverage ratchet, patch coverage, and the bite when configured). Capture the gate's stdout+stderr VERBATIM. Do not summarize it, do not edit it, do not claim a pass the gate did not print. - Commit on your worktree branch, small and scoped, with a message that names the spec slice. Do not push to a shared remote unless the loop explicitly told you to.
- Return EXACTLY this typed object and nothing that grants approval:
{ branch, worktreePath, gateOutputVerbatim, filesTouched }. The reviewer subagent re-runs the gate in its own worktree and BINDS the verdict; you do not decide the outcome. If your local gate FAILED, return it failed and let the loop bounce the turn back: a builder that reports a pass the gate denied is the one thing this design refuses to allow.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 45 lines · 78 tokens per session scan A 613b86d32ab7
autonomy-builder is an agent published in the GitHub repository inferencegod/autonomy-loop (1 stars, last pushed 2mo ago), licensed MIT. It adds 78 tokens to every session and 806 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
ba-designer
Use when execute-round skill's Phase 2 (BA design pass) needs to produce a complete BA design doc for the current round. Generates D-1..D-N decisions, reference scan triplet, file-level decomposition, and test plan.
design-rules
Condensed 10 Golden Rules from the Agent Design Bible.
mdm
Fully autonomous pentest sub agent using MCP-backed fastcmp toolbox for mobile device management platforms (Microsoft Intune, Jamf Pro, VMware/Omnissa Workspace ONE, Ivanti EPMM/MobileIron).
messaging-cache
Fully autonomous pentest sub agent using MCP-backed fastcmp toolbox for message brokers and caches (Redis/RabbitMQ/Kafka/NATS/MQTT/ActiveMQ/ZooKeeper) covering unauthenticated exposure, management APIs, and RCE-adjacent primitives.
nodejs
Autonomous pentest sub-agent using Darkmoon MCP for Node.js (Express / Angular / SPA) applications.
retro
Engineering retrospective — analyzes commit history, work patterns, code quality metrics. Per-person breakdowns, shipping streaks, actionable improvements. READ-ONLY, never modifies code.