agentsclimarketplace

Blindspot

Skill hiendinhngoc/unknowns/skills/blindspot

Agent skills (SKILL.md) for discovering your unknowns across the dev lifecycle — from Thariq Shihipar's 'Know Your Unknowns'

Install
npx -y skills add hiendinhngoc/unknowns --skill blindspot

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Read-only reconnaissance pass over an unfamiliar codebase, system, or feature area to surface hidden risks before any code is written. Use when starting work in unfamiliar territory, before a risky change, or when the user says "blindspot pass", "what am I missing", or "scan for risks".

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.7 KB, as published. Nobody here has run it

Blindspot Pass

Find the unknowns in a system BEFORE touching it. Reconnaissance only.

<HARD-RULE>Read-only. Do not edit, create, or delete any project file. No fixes, however tempting.</HARD-RULE>

Tip for the user (mention once at the start): running this pass in plan mode or a read-only permission mode makes the rule enforced by the harness, not just promised by the model.

Process

  1. Identify the target. Use the argument or infer the directory/system/feature from conversation. If no target is discernible, ask for one — don't guess.
  2. Name the domain, derive its dangerous paths. Before scanning, state in one line what kind of system the target is, and list the 2–3 failure classes that domain actually bleeds from. The generic list below is a backend-shaped floor, not a ceiling — a native UI app bleeds from accessibility gaps, lifecycle/identity bugs, and state-restoration loss; a data pipeline from loss, duplication, and ordering; a CLI from argument edge cases and exit codes. Findings should come from the derived list first.
  3. Explore. Use the agent's file-search/read tools (Glob/Grep/Read, rg/find/cat, or equivalent) and git log for churn hotspots to understand the target. Look for the domain-derived risks from step 2, plus:
    • Hidden coupling: modules that import each other's internals, shared mutable state, implicit ordering dependencies
    • Unowned edge cases: error paths that swallow exceptions, TODO/FIXME/HACK comments, empty catch blocks
    • Stale assumptions: config or constants that encode outdated facts, comments contradicting code, dead feature flags
    • Missing tests around dangerous paths: money, auth, deletion, migrations, concurrency — anything irreversible with no test coverage
    • Churn hotspots: files with many recent fixes (git log --oneline --no-merges -- <path>, ignoring generated files: lockfiles, *.pbxproj, build outputs — their churn is noise)
  4. Report up to 7 findings, ranked by risk (highest first). If fewer than 5 real risks are found, say so instead of padding.

Output format (per finding)

### N. <one-line risk statement>  [risk: high|medium|low]
Why it matters: <1-2 sentences, concrete failure scenario>
Investigate: `<ready-to-paste follow-up prompt the user can run next>`

End with a one-line recommendation of which finding to chase first.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.