Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 757 Bytes

File metadata and controls

11 lines (8 loc) · 757 Bytes

Explain Like I'm 10

Imagine you have a really smart helper (Claude or Codex) that can read code and write code. But it forgets everything after each conversation. So we built a system where:

  1. A notebook (_overview.md) keeps track of what's been done and what's next
  2. A simple loop (Python script) wakes up the AI CLI, says "read the notebook and do the next thing", then waits
  3. The AI reads the notebook, does one piece of work, writes what happened back in the notebook, and goes to sleep
  4. The loop wakes it up again, and repeats until the job is done
  5. You (through a parent session) watch the progress and answer questions when needed

That's it. The Python loop is intentionally dumb; the child agent makes all the decisions.