close-gold-gaplisted
Install: claude install-skill LucaDominici/arbiter
# Close Gold Gap
Turn one gold-audit gap into a concrete, deterministic remediation **recipe** — then carry it out.
This skill **never fakes a close**: a recipe is a plan of real work, not a shortcut to flip a verdict.
## When to use
After `arbiter gold-audit` reports a gap (an `N` or `P` check, or a `manual` check that a human must
attest). Pick the gap's `id` and ask for its recipe.
## Workflow
1. Run the audit to list the gaps:
```bash
npx @arbiter/cli gold-audit
```
2. Classify the gap by **category** — what does the failed check actually verify? There is no
separate recipe engine; the category table below **is** the recipe.
3. Execute the recipe's steps yourself. Each step is typed by **category**:
| Category | What the recipe does | Honest outcome |
| ----------- | ------------------------------------------------------------------------------ | -------------- |
| **doc-set** | Scaffold the missing doc (`check-doc-set --generate`) **then fill real content** | `P` → `Y` only after real content |
| **test** | Write the missing test(s) TDD-first (loads the `tdd` skill) | `Y` when the real metric meets the bar |
| **config** | Wire the real tool/config the check verifies | `Y` when the tool genuinely runs |
| **process** | Human-only action for a `manual` check — **no code recipe** | `NV` (code cannot verify it) |
## Ant