Module prereqs: sort Prerequisites lists numerically ascending (#102)
CI / check (push) Successful in 5s
Sync course wiki / sync-wiki (push) Successful in 5s

This commit was merged in pull request #102.
This commit is contained in:
2026-06-23 14:06:28 -04:00
parent edf3f34336
commit 74f23534c0
9 changed files with 49 additions and 49 deletions
@@ -9,27 +9,27 @@
## Prerequisites
- **Modules 2, 5, 6.** Durable memory per worktree, the committed AI config every agent inherits,
and conflict resolution for the inevitable merge.
- **Module 7, Worktrees.** The primitive everything here rests on. One repo, many working directories, each on
its own branch, each safe for an agent to edit without touching the others. Module 7 proved this on
*two* agents and told you the scale-up lived here. This is here. If `git worktree add` /
`list` / `remove` aren't muscle memory yet, go back; everything below is that, multiplied.
- **Module 25, Autonomous agents.** You can hand an agent an issue and get a reviewable PR back,
supervised. This module runs *several* of those at once. If you can't trust one unattended agent,
you have no business running five.
- **Module 8, Remotes.** The PRs in this lab live on a forge. (A local-only fallback is given.)
- **Module 9, Issues.** The unit of work you split across agents. A clean fan-out is a set of clean
issues.
- **Module 10, Reviewing code you didn't write.** The skill that becomes the bottleneck. N agents
produce N diffs; one human reviews them one at a time.
- **Module 11, Collaboration: humans and agents on one repo.** The issue → branch →
implementation → PR → review → merge → close loop. Orchestration is that loop run N times in
parallel and fanned back into one `main`. Parallel agents are just contributors who happen to
share a clock.
- **Module 10, Reviewing code you didn't write.** The skill that becomes the bottleneck. N agents
produce N diffs; one human reviews them one at a time.
- **Module 9, Issues.** The unit of work you split across agents. A clean fan-out is a set of clean
issues.
- **Module 14, Continuous integration.** The automated gate every parallel branch passes through
before it's yours to review. With many agents, CI stops being a nicety and becomes the only thing
keeping the merge queue honest.
- **Module 8, Remotes.** The PRs in this lab live on a forge. (A local-only fallback is given.)
- **Modules 2, 5, 6.** Durable memory per worktree, the committed AI config every agent inherits,
and conflict resolution for the inevitable merge.
- **Module 25, Autonomous agents.** You can hand an agent an issue and get a reviewable PR back,
supervised. This module runs *several* of those at once. If you can't trust one unattended agent,
you have no business running five.
If you parachuted in: you minimally need worktrees, the PR loop, and one agent you'd let run on its
own. This module is about coordinating many of those, not about any one of them.