← ClaudeAtlas

huntlisted

Systematic bug hunting across a full-stack TypeScript application. Finds semantic bugs, async issues, data integrity problems, security vulnerabilities, performance hotspots, and UI/browser issues — producing a prioritized report with evidence and fix suggestions. Use when the user says /hunt, asks to "find bugs", "audit this", "check for issues", "scan for problems", wants a code review focused on correctness rather than style, mentions specific concerns like "are there race conditions", "check for security issues", "find performance problems", or wants to validate code quality before a release. Also triggers on "what's wrong with this", "anything broken", "smell check", or any request to systematically find problems in code.
supermodo/skills · ★ 1 · Data & Documents · score 74
Install: claude install-skill supermodo/skills
# Hunt > **Requires:** the sibling `protocols` skill (shared protocol masters); uses `skills.config.json` when present. Missing protocols → tell the user to install the full supermodo package. Systematic bug hunting: automated scans → parallel blind finders → gap sweep → adversarial verification (Claude skeptics × Codex cross-check × docs adjudication) → open questions answered by the user (AskUserQuestion) → verified report at the location the repo's docs contract dictates → teardown (ask, then clean up). Report-only — never code changes. The pipeline is **find blind, judge informed**. Finders never read `docs/` — a finder that knows "this is documented as intentional" stops reporting real bugs hiding behind stale docs. Judges (verify phase) read everything and must cite evidence to kill or resolve a finding. No unverified finding reaches the report. ## Invocation ``` /hunt <path> # focused: auto-detect relevant layers /hunt <path> --<layer> # focused: specific layer only /hunt --<layer> # project-wide: sweep for one layer /hunt . # full project: all layers /hunt --diff [base] # only files changed vs base (default: merge-base with main) ``` ### Layer flags | Flag | Finders dispatched | Reference files | |------|--------------------|-----------------| | `--bugs` | semantic, async, error-handling, structure, comparison | `semantic.md`, `async.md`, `error-handling.md`, `structure.md` | | `--d