Claude-skill-registry gap-finder-2

Triggered by start-gap-finder.

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/gap-finder-2" ~/.claude/skills/majiayu000-claude-skill-registry-gap-finder-2 && rm -rf "$T"
manifest: skills/data/gap-finder-2/SKILL.md
source content

Plan Gap Critic

Review each gap from Step 1 output and mark CORE or NOT CORE.

Decision filters

QuestionIf YES →If NO →
Number, threshold, or sample size?NOT COREcontinue
Googleable term?NOT COREcontinue
Explained elsewhere in doc?NOT COREcontinue
Competent reader would infer?NOT COREcontinue
Core logic depends on this?CORENOT CORE

CORE examples

  • Novel term coined by doc, used repeatedly, never defined
  • Central concept the approach depends on
  • "X enables Y" — mechanism unexplained

NOT CORE examples

  • Numbers (retry counts, thresholds)
  • Named algorithms — googleable
  • Implementation details

Output format

# Step 2: Critiqued Gaps

| Gap | Verdict | Reason |
|-----|---------|--------|
| "foo" | CORE | novel term, logic depends on it |
| "bar" | NOT CORE | googleable |
| "3 retries" | NOT CORE | tunable number |