Agent Team Playbook¶
LoopForge is most effective when you run it as an agent team, not a single long chat thread.
This page gives you a practical team operating model you can demo and reuse.
Team Topology¶
| Role | Primary output | Suggested artifact |
|---|---|---|
| Planner Agent | Scope, milestones, risk map | notes/plan.md |
| Builder Agent | Verified implementation | code diff + test output |
| Reviewer Agent | Findings-first review | notes/review.md |
| Release Agent | Release readiness + publish gate | notes/release-check.md |
Operating Loop¶
- Intake and planning
- Capture objective, constraints, and acceptance criteria.
- Run one planning task and write
notes/plan.md. - Execution
- Build in small slices and checkpoint each verified slice.
- Keep one artifact per slice (report, checklist, or fix memo).
- Review
- Run findings-first review before merge/release.
- Record severity, impacted files, and decision.
- Release gate
- Run
loopforge release check --tag vX.Y.Z. - Ensure version/changelog/CI gates are green before publish.
Command Baseline¶
Copy/Paste Role Prompts¶
- Planner: "Create a 5-step implementation plan with risks and verification commands. Write
notes/plan.md." - Builder: "Execute step 1 from
notes/plan.md, keep behavior unchanged, and output a short verification report." - Reviewer: "Review current diff with findings first (severity + file/line), then list residual risks."
- Release: "Run release readiness checks and write
notes/release-check.mdwith pass/fail per gate."
What To Show In Team Demos¶
- Time to first verified artifact
- Verification pass rate per slice
- Release-check pass/fail trend
If those three metrics improve, your agent team is getting stronger in the right way.