# Pending Only Island

> A fixture whose whole proof block is candidates with no documented exit code, so nothing runs and PENDING is the only class present - the case where `--strict` and the nothing-ran path both apply at once. Never distributed; exists so the precedence between them is a captured run rather than a claim. Trigger phrases - "pending only fixture", "strict precedence red test".

- Skill: `island-dev-crew/pending-only-island` (Agent Skill)
- Install (CLI): `npx skillmds@latest add island-dev-crew/pending-only-island`
- Raw SKILL.md: https://api.skillmd.com/api/skills/island-dev-crew/pending-only-island/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Island-Dev-Crew (https://skillmd.com/u/island-dev-crew)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/island-dev-crew/pending-only-island

---


# Pending only island

Two runnable candidates, neither carrying a code. Both classes are true at once here: nothing was
executed, and a caller who asked for full coverage has candidates that document nothing (C4).
`--strict` is the caller saying which of the two they came to hear, so it outranks the other.

- `enforced`: verify-proofs.py exits 3 here, and `--strict` exits 4.
- `advisory`: nothing else here is real.

```bash
python3 -c "import sys; sys.exit(0)"
python3 -c "import sys; sys.exit(1)"
```

