Ariadne Loop: L1 loop contracts for coding agents #26
Replies: 0 comments
|
Quick update after the latest iteration: Ariadne Loop now generates a full Loop Run Kit instead of only a loop spec.
The loop cycle is now I also added case packs for desktop app development, GitHub Pages publishing, bug repair, docs refactor, and OpenClaw scheduled work, plus an Repo: https://github.com/zhangzeyu99-web/ariadne-loop I would still value feedback from people working on loop engineering: is this run-kit shape too heavy, too light, or missing a key artifact for long-running coding-agent loops? |
Uh oh!
There was an error while loading. Please reload this page.
I am building Ariadne Loop, a local-first workbench for turning rough coding-agent context into loop contracts, agent packets, verifier gates, and handoff reports.
Pattern picked
I started with an L1/report-first loop rather than an unattended loop. The closest fit is a mix of Loop Design Checklist plus PR Babysitter-style verifier gates: read current state, take one bounded action, verify, then decide whether to continue, stop, rollback, or ask.
First loop command
One surprise
The hard part was not generating a plan. The hard part was keeping the agent from expanding scope after every inspection pass. The useful primitive became the explicit
continue | stop | rollback | askdecision at the end of each pass.Ariadne publishes an agent-facing index here: https://zhangzeyu99-web.github.io/ariadne-loop/llms.txt
All reactions