Đang tải…
Đang tải…
Builds toward a machine-checkable contract with explicit anti-spin guardrails — stops on no progress, repeated approaches, flip-flopping, or a spend budget.
npx claude-code-templates@latest --loop engineering/anti-spin-build-loopLoop Engineering — most agent loops never stop to ask whether they're actually making progress, so they retry the same broken approach or quietly edit the test to pass. This loop runs build → audit → verify against a machine-checkable contract, with explicit stops that detect spinning.
Drive toward a verifiable contract while actively guarding against the classic failure mode: an agent that loops forever without converging.
Suggested interval: 15m.
/loop 15m "Build toward the goal, then audit and verify against a machine-checkable contract. Track progress each pass. Stop if you make no progress, repeat an approach you already tried, flip-flop between two approaches, or hit the budget. Finish only when the contract passes — never by weakening the contract or the tests."
architect-review checks the change; scope-guard blocks weakening the tests/contract./pr-review and hand off.Contract passes, or an anti-spin guard trips — whichever comes first.
Hard caps on iterations and spend; no-progress, repeated-approach and flip-flop detection. The contract and tests are immutable — the loop may not edit them to "pass".
agent:expert-advisors/architect-review — independent audit each pass.command:git-workflow/pr-review — structured review at handoff.hook:quality-gates/scope-guard — prevents weakening tests/contract to fake success.Chasing a contract for a parser, the loop tries approach A, then B, then drifts back to A — the flip-flop guard trips and it stops with a clear report instead of burning tokens forever.