Write-Review Loops
Use you-agent-factory for write → review → revise loops with a bounded retry path.
What It Is
A write-review loop is a factory workflow where write or execute work produces a candidate, then a review step decides the outcome. Accepted work moves to a complete state. Rejected work returns to write for another pass, so the same goal can revise until review accepts it.When To Use
Use this guide when agent output must pass an explicit review gate before completion, for example quality-gated docs, code, or plans. Follow it when you want a clear write → review → revise path in the factory. The outcome you should reach is accepted work that completes only after review, with rejected work routed back for another write pass.Steps Or Workflow
Confirm a live factory, submit or advance write or execute work, let review accept to complete or reject back to write, and bound retries with a loop breaker so reject cycles cannot run forever.Confirm a live factory
Start a factory when no session is active
Named run
Submit write or execute work
Batch submit