← ClaudeAtlas

bug-hunterlisted

Adversarial bug hunting with a sequential-first pipeline (Recon, Hunter, Skeptic, Referee) that can optionally use safe read-only parallel triage. Finds, verifies, and auto-fixes real bugs by default (with --scan-only opt-out) using checkpointed verification and resume state for large codebases. Use this skill whenever the user wants bug finding, security audits, regression checks, or code review focused on runtime behavior.
CarlosCaPe/octorato · ★ 5 · AI & Automation · score 70
Install: claude install-skill CarlosCaPe/octorato
# Bug Hunt - Adversarial Bug Finding Run a sequential-first adversarial bug hunt on your codebase. Use parallelism only for read-only triage and independent verification tasks. ## Table of Contents - [Usage](#usage) - [Target](#target) - [Context Budget](#context-budget) - [Execution Steps](#execution-steps) - [Step 7: Present the Final Report](#step-7-present-the-final-report) - [Self-Test Mode](#self-test-mode) - [Error handling](#error-handling) **Phase 1 — Find & Verify:** ``` Recon (map) --> Hunter (deep scan) --> Skeptic (challenge) --> Referee (final verdict) ^ (optional read-only dual-lens triage can run here) | state + chunk checkpoints ``` **Phase 2 — Fix & Verify (default when bugs are confirmed):** ``` Baseline --> Git branch --> sequential Fixer (single writer) --> targeted verify --> full verify --> report ^ | +------------------------ checkpoint commits + auto-revert -----+ ``` For small scans (1-10 source files): runs single Hunter + single Skeptic (no parallelism overhead). For large scans: process chunks sequentially with persistent state to avoid compaction drift. ## Usage ``` /bug-hunter # Scan entire project /bug-hunter src/ # Scan specific directory /bug-hunter lib/auth.ts # Scan specific file /bug-hunter -b fea