Claude-skill-registry bb80-specification-closure

Verify 100% specification closure before Big Bang 80/20 single-pass construction.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/bb80-specification-closure" ~/.claude/skills/majiayu000-claude-skill-registry-bb80-specification-closure && rm -rf "$T"
manifest: skills/data/bb80-specification-closure/SKILL.md
source content

Big Bang 80/20: Specification Closure

Core Concept

Specification closure is the gate before EPIC 9 fan-out.

No implementation begins without closure verification.

Closure Checklist

A specification is closed when:

  • All inputs characterized (domain, constraints, edge cases)
  • All outputs specified (behavior, invariants, success criteria)
  • All errors enumerated (what happens when things fail)
  • All ambiguities resolved (no TBD, TODO, undefined)
  • All user stories have acceptance scenarios
  • SHACL validation passes

Quick Validation

# Check for incomplete markers
grep -r "TBD\|TODO\|FIXME\|undefined" .specify/

# Validate SHACL conformance
cargo make speckit-validate

Reference

See CLAUDE.md sections:

  • Three Paradigms (Big Bang 80/20)
  • When to Use EPIC 9
  • Agents: bb80-specification-validator