# Bb80 Specification Closure

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

- Skill: `majiayu000/bb80-specification-closure` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/bb80-specification-closure`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/bb80-specification-closure/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/bb80-specification-closure

---


# 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

```bash
# 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

