Sandbox
@Neeeophytee/finding-unknowns-skills

Installable skills for Claude Code and Codex

This repo packages 13 reusable skills that help an agent find blind spots, gather references, make plans, and check assumptions before a mistake gets expensive. It also includes skills for auditing agent context, designing safer tool interfaces, and splitting large skills into progressive disclosure.

328 stars26 forksPythonUpdated 7d ago
Who it's for

Builders who use Claude Code, Codex, or Cursor and want reusable ways to surface unknowns early.

What it delivers

You can turn vague prompts into clearer plans and catch missing context before implementation.

What it does

Pre-build discovery skills

Skills like `blindspot-pass`, `brainstorm-prototypes`, `interview-me`, `reference-hunt`, and `assumption-test` help you clarify what you do not know before you start.

Build-time tracking

`implementation-notes` records deviations while you work so later attempts can learn from what changed.

Review and merge checks

`pitch-packager`, `change-quiz`, and `test-blindspots` help you package work for review and probe for gaps before merge.

Context-level skills

`context-audit`, `agent-interface-design`, and `progressive-disclosure` help you clean up agent instructions and keep large skills manageable.

Portable packaging

The skills ship in `skills/` and can be installed through agent plugins, copied into skills folders, or used as passive guidance in `CLAUDE.md` or `AGENTS.md`.

How to get it

  1. 1One command, any agent (recommended): Vercel's skills CLI auto-detects your coding agent…
    npx skills add Neeeophytee/finding-unknowns-skills
  2. 2As a Claude Code plugin (all 13 skills)
    /plugin marketplace add Neeeophytee/finding-unknowns-skills
    /plugin install finding-unknowns@finding-unknowns-skills
  3. 3The skills use the same SKILL.md format Codex reads natively, so no conversion is…
    git clone https://github.com/Neeeophytee/finding-unknowns-skills
    cp -r finding-unknowns-skills/skills/* ~/.agents/skills/        # all projects
    # or, per project:  cp -r finding-unknowns-skills/skills/* your-repo/.agents/skills/
  4. 4Prefer a managed bundle? Codex also installs the whole set as a plugin
    codex plugin marketplace add Neeeophytee/finding-unknowns-skills
    codex plugin add finding-unknowns@finding-unknowns
  5. 5Kimi Code CLI auto-discovers SKILL.md skills at startup and injects their names and…
    git clone https://github.com/Neeeophytee/finding-unknowns-skills
    cp -r finding-unknowns-skills/skills/* ~/.kimi/skills/           # all projects
    # or, per project:  cp -r finding-unknowns-skills/skills/* your-repo/.kimi/skills/

README

Finding-Unknowns Skills

GitHub stars skills.sh installs License: MIT Validate skills

13 installable skills that help your coding agent find what you don't know — before it gets expensive to fix.

The map is not the territory. Your prompt is a map; the codebase and the real world are the territory. The gap between them is your unknowns, and with strong models the quality of the work is bottlenecked by how well you clarify them. The original eight task-level skills turn that idea, from Thariq Shihipar's essay A Field Guide to Fable: Finding Your Unknowns, into commands you can run in Claude Code, OpenAI Codex, Kimi Code CLI (Kimi K3), or any agent that reads the agentskills.io SKILL.md format.

Another three come from his follow-up, The new rules of context engineering for Claude 5 generation models, which works one layer up: not the unknowns in a single prompt, but the ones baked into the context every prompt inherits.

Community project. Eleven skills distilled, with attribution, from public essays by Thariq Shihipar (Anthropic, Claude Code team), plus two maintainer-designed extensions. Not an official Anthropic repository.

The contribution here is the reusable instruction design: focused triggers, concrete deliverables, scope boundaries, portable packaging, and documented checks. The new extensions take the workflow from identifying unknowns to testing them. Examples · Compatibility · Contributing · Roadmap

The idea in one table

KnownUnknown
KnownWhat's in your promptWhat you know you haven't figured out
UnknownSo obvious you'd never write it down, but you'd recognize it on sightWhat you haven't considered at all

Every skill below is a cheap way to move something out of the bottom row before implementation makes it expensive.

The skills

SkillPhaseOne line
blindspot-passBeforeSurface your unknown unknowns in an unfamiliar area, then help you prompt better
brainstorm-prototypesBeforeThrowaway variations you can react to, for taste you can't verbalize
interview-meBeforeOne question at a time, architecture-changing questions first
reference-huntBeforeUse working source code as the spec, even across languages
implementation-planBeforeA plan that leads with the decisions you're most likely to change
implementation-notesDuringLog every deviation from the plan so the next attempt learns from this one
pitch-packagerAfterBundle spec + prototype + notes into a buy-in doc for reviewers
change-quizAfterA comprehension quiz you must pass before you merge

And three for the context itself

The eight above work on one task at a time. These three work on the instructions your agent carries into every task — the layer where Anthropic deleted 80% of Claude Code's system prompt with no measurable loss.

SkillOne line
context-auditFind the contradictions, duplicates, and dead rules in your CLAUDE.md and skills, and cut them
agent-interface-designDesign tools an agent can't misuse, so you don't have to document them
progressive-disclosureSplit an oversized skill or spec into an entry file plus files loaded only when needed

progressive-disclosure ships with disable-model-invocation: true. In Claude Code that makes it user-invoked only — it stays out of the model's reach and costs nothing in your context window until you type its name. Codex ignores the flag (verified on v0.143: the skill and its description still load into the model-visible prompt), so treat it as a normal model-invoked skill there.

Two extensions for evidence

These are maintainer-designed additions, informed by established testing practices. The original eleven skill files are unchanged in the published v1.4.0 release.

SkillPhaseOne line
assumption-testBeforeTurn a consequential technical assumption into a bounded, falsifiable experiment
test-blindspotsDuring / afterInvestigate what passing tests do not establish, with focused probes and reproducible evidence

The additions have packaging and discovery checks. Evaluation protocol and fixtures.

Install

One command, any agent (recommended): Vercel's skills CLI auto-detects your coding agent (Claude Code, Cursor, Codex, Copilot, Gemini, and more) and installs the skills into the right place for each:

npx skills add Neeeophytee/finding-unknowns-skills

Add --list to preview the 13 skills first, or --skill blindspot-pass to install just one. (Discoverable on skills.sh.)

As a Claude Code plugin (all 13 skills):

/plugin marketplace add Neeeophytee/finding-unknowns-skills
/plugin install finding-unknowns@finding-unknowns-skills

Manually (pick the skills you want): copy any skills/<name>/ folder into your project's .claude/skills/ directory (or ~/.claude/skills/ for all projects).

The one-file version: if you'd rather have the whole approach as passive guidance instead of commands, copy guidance/finding-unknowns.md into your project root as CLAUDE.md (Claude Code) or AGENTS.md (Codex and other AGENTS.md-reading agents), or append it to your existing one.

Moved in v1.2.0: this file used to be the repo's own CLAUDE.md. Root CLAUDE.md/AGENTS.md now hold gotchas for maintaining this repo, which is what those files are for — general methodology in a file meant for repo-specific context is exactly the pattern context-audit flags.

Use in Cursor

The npx skills add Neeeophytee/finding-unknowns-skills command above detects Cursor and installs the skills into ~/.cursor/skills/ for you — no manual step. (Historical receipt: at v1.2.0, skills@1.5.20 --list discovered eleven skills and descriptions. Current discovery results are recorded in COMPATIBILITY.md; CLI discovery alone does not verify Cursor invocation.)

Use in OpenAI Codex

The skills use the same SKILL.md format Codex reads natively, so no conversion is needed. Either run npx skills add Neeeophytee/finding-unknowns-skills (it detects Codex), or copy them into a Codex skill location:

git clone https://github.com/Neeeophytee/finding-unknowns-skills
cp -r finding-unknowns-skills/skills/* ~/.agents/skills/        # all projects
# or, per project:  cp -r finding-unknowns-skills/skills/* your-repo/.agents/skills/

Prefer a managed bundle? Codex also installs the whole set as a plugin:

codex plugin marketplace add Neeeophytee/finding-unknowns-skills
codex plugin add finding-unknowns@finding-unknowns

Codex detects skill changes automatically. For the passive-guidance version, copy guidance/finding-unknowns.md into your project root as AGENTS.md — Codex reads it before doing any work. Re-tested on 2026-09-08 with Codex CLI v0.143.0 against the pre-release v1.4.0 build (released September 9): both routes load all 13 skills into the model-visible prompt (verify with codex debug prompt-input). Codex does not honour disable-model-invocation, so progressive-disclosure is model-reachable there. Full details and receipts: INSTALL-CODEX.md. (Paths per the Codex skills docs.)

Use in Hermes Agent

These are skills, not a Python plugin, so install them via Hermes's skills system, not hermes plugins install. Clone the repo and point Hermes at it in ~/.hermes/config.yaml:

skills:
  external_dirs:
    - ~/finding-unknowns-skills/skills

Re-tested on 2026-09-08 with Hermes Agent v0.15.1 against the pre-release v1.4.0 build (released September 9): all 13 skills show enabled in hermes skills list. Other Hermes surfaces were not exercised in this check. Single-skill installs and full receipts: INSTALL-HERMES.md.

Use in Kimi Code CLI (Kimi K3)

Kimi Code CLI auto-discovers SKILL.md skills at startup and injects their names and trigger descriptions into the system prompt — the same mechanism as Claude Code and Codex. Its search paths include ~/.claude/skills/, ~/.codex/skills/, and ~/.agents/skills/, so if you already installed these skills for Claude Code, Codex, or via npx skills add, Kimi K3 sees them with zero extra steps. Fresh install into Kimi's own location:

git clone https://github.com/Neeeophytee/finding-unknowns-skills
cp -r finding-unknowns-skills/skills/* ~/.kimi/skills/           # all projects
# or, per project:  cp -r finding-unknowns-skills/skills/* your-repo/.kimi/skills/

Project-level paths (.kimi/skills/, .claude/skills/, .codex/skills/, .agents/skills/) resolve from the nearest .git root; add custom locations with --skills-dir or extra_skill_dirs. (Paths per the Kimi Code CLI skills docs.)

When to reach for which

  • New to a part of the codebase, or a whole domain → blindspot-pass
  • You'll know it when you see it (design, UX, tone) → brainstorm-prototypes
  • You've brainstormed but ambiguity remains → interview-me
  • You can't describe it, but some code somewhere does it right → reference-hunt
  • An approach depends on behavior you have not established → assumption-test
  • Passing tests may miss an important boundary → test-blindspots
  • Ready to build → implementation-plan, then keep implementation-notes running
  • Built → pitch-packager for buy-in, change-quiz before you merge
  • Your agent ignores its own instructions, or your CLAUDE.md has grown past reading → context-audit
  • You're building a tool, MCP server, or script an agent will call → agent-interface-design
  • One skill or spec got too long to keep loading in full → /progressive-disclosure (type it; it won't fire on its own)

Invoking a skill on each agent

Same skills, different invocation syntax per agent. The model reaches them on its own from the descriptions; this is how you trigger one by hand:

AgentHow you invoke a skillInstall
Claude Code/context-audit (slash command)plugin or npx skills add
OpenAI Codex$context-audit, or the /skills pickerplugin or skills
Hermes Agent/context-audit (slash command)skills.external_dirs
Cursor / Kimi K3agent's own skills UI / SKILL.md autodiscoverynpx skills add

progressive-disclosure is user-invoked in Claude Code only — elsewhere it behaves as a normal model-invoked skill (see the per-agent notes above).

See EXAMPLES.md for real prompts.

Credit

The original eleven skills draw on two essays by Thariq Shihipar:

This repo distills them into the SKILL.md format with original instruction text. Read the essays for the full reasoning, including the Fable 5 launch-video story that motivates the first.

The two maintainer-designed extensions are not attributed to those essays. assumption-test applies falsifiable experiments to uncertain technical decisions; consumer-driven contract testing is one relevant precedent. test-blindspots applies exploratory testing to the gap between passing assertions and intended behavior. The instruction flows are new to this collection; the underlying testing methods are established practice.

Community

Explore the live project page for the skill collection and community coverage.

Read CONTRIBUTING.md to propose a skill or report a problem. Community participation follows our Code of Conduct. CHANGELOG.md records published releases.

License

MIT for the skill text in this repo. Sources and method attribution are documented above and in NOTICE.md. The Code of Conduct retains its own Contributor Covenant attribution.


Maintained alongside awesome-ai-workflows, a list of AI workflows re-checked by CI, and FlowStacks, where each recipe carries a machine-verified badge. If this repo is useful, a star helps the next person find it.

Files in the repo

Repository payload27 top-level entries
  • .agents
  • .claude-plugin
  • .codex-plugin
  • .github
  • assets
  • docs
  • evals
  • guidance
  • scripts
  • site
  • skills
  • tests
  • .gitignore
  • AGENTS.md
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • COMPATIBILITY.md
  • CONTRIBUTING.md
  • EXAMPLES.md
  • INSTALL-CODEX.md
  • INSTALL-HERMES.md
  • LICENSE
  • NOTICE.md
  • README.md
  • requirements-dev.txt
  • ROADMAP.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k