Documentation Index
Fetch the complete documentation index at: https://superturtle.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
CLAUDE.md is the source of truth for each SubTurtle.
The Meta Agent seeds it before spawn. The SubTurtle reads and updates it every iteration. Supervision logic checks it to understand progress.
Location and Ownership
Each SubTurtle has its own workspace:- Meta Agent owns initial seeding and task framing.
- SubTurtle owns iterative progress updates.
- Both operate on the same file path:
.superturtle/subturtles/<name>/CLAUDE.md.
ctl spawn always creates AGENTS.md -> CLAUDE.md so agents that read either filename see the same content.Required Format
SubTurtle state files are plain markdown with stable sections. The minimum practical shape is:Backlog Rules
- Use checkbox items:
- [ ]or- [x]. - Keep one active item marked with
<- current. - Move
<- currentto the next unchecked item after completing the current one. - Keep
Current Taskaligned with the item marked<- current.
How Meta Agent Seeds State
ctl spawn accepts state from a file or stdin and writes it to .superturtle/subturtles/<name>/CLAUDE.md.
How SubTurtle Uses State
Inyolo/yolo-codex loops, the worker prompt explicitly instructs the SubTurtle to:
Loop Control STOP Directive
SubTurtle runtime checks for this exact directive:AGENTS.md Symlink Behavior
AGENTS.md in each workspace is a symlink to CLAUDE.md:
AGENTS.md while preserving a single state source of truth.
