scope-hammerlisted
Install: claude install-skill nguyenvanphituoc/shapeup-sdlc-plugin
# Scope Hammer (GATE H — Decide When to Stop)
The mechanism behind Shape Up step 11: as the appetite/round budget runs out, cut back on
perfectionist ambitions by comparing the *actual* product to the **baseline** — what customers
live with today — not to a hypothetical perfect version. "Better than the baseline" is good
enough to ship; "not as good as I imagined" is not a reason to keep building.
**Why this is its own skill, not tech-lead prose.** GATE H census pulls from several sources
that accumulate over a whole run (QA findings, discovered-task ledger, attempt-budget
overflows, per-scope inner-breaker trips) — a genuinely separate synthesis step from
orchestration. Splitting it out keeps `tech-lead` thin (it dispatches, this skill decides what
survives the hammer) and gives the census/cut-list/verdict logic one owner instead of being
re-derived inline at every SHIP.
---
## When this fires
```
1. All scopes reach FINISHED on the hill → normal stop, post-QA-hunt.
2. Outer circuit breaker trips: round_budget reaches 0 with scopes still uphill/downhill.
3. Inner circuit breaker trips: a scope's attempt_budget (default 5) is exhausted without a
T0-green result → queued as a hammer PROPOSAL (`hammer_proposals`),
judged here rather than immediately blocking the round.
```
Any of the three routes to this skill; the difference is only what's in the census (case 1 has
no unresolved scopes; cases 2/3 do, and those become explicit CUT or CARRY candidates below).
---
##