by Neeeophytee
11 installable skills for Claude Code, OpenAI Codex, and Hermes, for finding your unknowns before they get expensive: blindspot pass, brainstorms, interviews, references, plans, notes, pitches, a merge quiz, plus a context audit, agent interface design, and progressive disclosure. Community distillation, not official Anthropic.
# Add to your Claude Code skills
git clone https://github.com/Neeeophytee/finding-unknowns-skillsGuides for using ai agents skills like finding-unknowns-skills.
Last scanned: 7/7/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-07T07:39:57.378Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}finding-unknowns-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Neeeophytee. 11 installable skills for Claude Code, OpenAI Codex, and Hermes, for finding your unknowns before they get expensive: blindspot pass, brainstorms, interviews, references, plans, notes, pitches, a merge quiz, plus a context audit, agent interface design, and progressive disclosure. Community distillation, not official Anthropic. It has 295 GitHub stars.
Yes. finding-unknowns-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/Neeeophytee/finding-unknowns-skills" and add it to your Claude Code skills directory (see the Installation section above).
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh finding-unknowns-skills against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
11 installable skills that make Claude help you 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. These 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.
Three of them 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. Distilled, with attribution, from public essays by Thariq Shihipar (Anthropic, Claude Code team). Not an official Anthropic repository.
| Known | Unknown | |
|---|---|---|
| Known | What's in your prompt | What you know you haven't figured out |
| Unknown | So obvious you'd never write it down, but you'd recognize it on sight | What 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.
| Skill | Phase | One line |
|---|---|---|
blindspot-pass |
Before | Surface your unknown unknowns in an unfamiliar area, then help you prompt better |
brainstorm-prototypes |
Before | Throwaway variations you can react to, for taste you can't verbalize |
interview-me |
Before | One question at a time, architecture-changing questions first |
reference-hunt |
Before | Use working source code as the spec, even across languages |
implementation-plan |
Before | A plan that leads with the decisions you're most likely to change |
implementation-notes |
During | Log every deviation from the plan so the next attempt learns from this one |
pitch-packager |
After | Bundle spec + prototype + notes into a buy-in doc for reviewers |
change-quiz |
After | A comprehension quiz you must pass before you merge |
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.
| Skill | One line |
|---|---|
context-audit |
Find the contradictions, duplicates, and dead rules in your CLAUDE.md and skills, and cut them |
agent-interface-design |
Design tools an agent can't misuse, so you don't have to document them |
progressive-disclosure |
Split 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.
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 11 skills first, or --skill blindspot-pass to install just one. (Discoverable on skills.sh.)
As a Claude Code plugin (all 11 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. RootCLAUDE.md/AGENTS.mdnow 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 patterncontext-auditflags.
The npx skills add Neeeophytee/finding-unknowns-skills command above detects Cursor and installs the skills into ~/.cursor/skills/ for you — no manual step. (Re-verified at v1.2.0 with skills@1.5.20: the CLI discovers all 11 skills in this repo, and their descriptions, via --list.)
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 with Codex CLI v0.143.0 at v1.3.0: both routes load all 11 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.)
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
All 11 skills then register and appear on every Hermes surface. Verified live on Hermes Agent v0.15.1: all 11 load and show enabled in hermes skills list. Single-skill installs and full receipts: INSTALL-HERMES.md.
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.)
blindspot-passbrainstorm-prototypesinterview-mereference-huntimplementation-plan, then keep implementation-notes runningpitch-packager for buy-in, change-quiz before you mergecontext-auditagent-interface-design/progressive-disclosure (type it; it won't fire on its own)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:
| Agent | How you invoke a skill | Install |
|---|---|---|
| Claude Code | /context-audit (slash command) |
plugin or npx skills add |
| OpenAI Codex | $context-audit, or the /skills picker |
plugin or skills |
| Hermes Agent | /context-audit (slash command) |
skills.external_dirs |
| Cursor / Kimi K3 | agent's own skills UI / SKILL.md autodiscovery |
npx 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