Four skills for the gap between what you planned and what actually happens —
one for before you start, one for mid-build, two for right before you ship.
Built after reading Thariq's field guide to Fable.
install all four
for s in blind-spot-pass deviation-log merge-quiz pitch-me; do
mkdir -p ~/.claude/skills/$s
curl -sL https://mrcoder.github.io/skills/$s/SKILL.md -o ~/.claude/skills/$s/SKILL.md
done
— pre
blind-spot-pass
Surfaces what you don't know to ask before you start. Give it your experience
level and it greps the codebase's own history — commit messages, docs, past
incidents — for the landmines you can't see yet.
A live log of every place the plan met an edge case it didn't account for.
Picks the conservative option, writes down why, keeps building — so the
deviation is visible instead of buried in a diff.
Blocks the merge until you can pass a quiz on your own change. Reading a diff
isn't the same as understanding the behavior it produces — this checks the
difference before it ships.
Packages the prototype, the plan, and the deviation log into one document for
the person who wasn't in the room — leads with the demo, answers the
objections a reviewer would already have.