.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/codexstar69/bug-hunter
home/skills/codexstar69/bug-hunter
codexstar69 avatar

bug-hunter

bycodexstar69· 12 skills

Installs

630

Stars

465

Forks

54

Category

Security

View on GitHub

TL;DR

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.

How to install bug-hunter?

codexstar69/bug-hunter
$npx -y skills add codexstar69/bug-hunter --skill bug-hunter

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/codexstar69/bug-hunter" --skill "codexstar69/bug-hunter"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/codexstar69/bug-hunter" that are relevant to the current task. Run `npx skills add "https://github.com/codexstar69/bug-hunter"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1<p align="center">
2 <img src="docs/images/hero.png" alt="Bug Hunter — AI-powered adversarial code review and security vulnerability scanner for Claude Code, Cursor, Codex, Copilot, Windsurf, and Kiro" width="720">
3</p>
4 
5<h1 align="center">Bug Hunter</h1>
6<p align="center"><strong>AI code review that argues with itself — adversarial multi-agent bug finding, security scanning, and auto-fix for any coding agent.</strong></p>
7 
8<p align="center">
9 <a href="https://www.npmjs.com/package/@codexstar/bug-hunter"><img src="https://img.shields.io/npm/v/@codexstar/bug-hunter" alt="npm version"></a>
10 <a href="https://github.com/codexstar69/bug-hunter/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@codexstar/bug-hunter" alt="MIT License"></a>
11 <img src="https://img.shields.io/badge/tests-113%20passing-brightgreen" alt="113 tests passing">
12 <img src="https://img.shields.io/badge/node-%3E%3D18-blue" alt="Node.js >= 18">
13</p>
14 
15<p align="center">
16 <a href="#install">Install</a> ·
17 <a href="#quick-start">Quick Start</a> ·
18 <a href="#how-adversarial-ai-code-review-works">How It Works</a> ·
19 <a href="#bugs-and-vulnerabilities-detected">What It Finds</a> ·
20 <a href="#safe-auto-fix-with-canary-rollout">Auto-Fix</a> ·
21 <a href="#cli-flags">CLI Reference</a>
22</p>
23 
24---
25 
26Bug Hunter is an open-source AI code review and security vulnerability scanner that works as a skill/plugin for AI coding agents. Three AI agents — a Hunter, a Skeptic, and a Referee — independently analyze your code in an adversarial pipeline. The Hunter finds bugs. The Skeptic tries to disprove them. The Referee delivers the final verdict. Only bugs that survive all three stages make the report, eliminating the false positive overload that plagues other AI code review tools.
27 
28It then auto-fixes confirmed bugs with a safe canary rollout pipeline — git branching, test baselines, per-fix commits, automatic rollback on failure, and post-fix re-scanning.
29 
30---
31 
32## Install
33 
34```bash
35npx skills add codexstar69/bug-hunter
36```
37 
38Or via npm:
39 
40```bash
41npm install -g @codexstar/bug-hunter
42bug-hunter install # auto-detects your IDE/agent
43bug-hunter doctor # verify environment
44```
45 
46Or clone:
47 
48```bash
49git clone https://github.com/codexstar69/bug-hunter.git ~/.agents/skills/bug-hunter
50```
51 
52> **Requirements:** Node.js 18+ recommended. Core pipeline works without it.
53>
54> **Compatible with:** Claude Code, Cursor, Codex CLI, Windsurf, Kiro, Copilot, Opencode, [Pi](https://github.com/mariozechner/pi-coding-agent) — or any AI agent that can read files and run shell commands.
55 
56---
57 
58<p align="center">
59 <img src="docs/images/2026-03-12-pr-review-flow.png" alt="Bug Hunter PR review workflow — pull request scope analysis, security checks, threat-model context, and final verdict" width="100%">
60</p>
61 
62## Quick Start
63 
64```bash
65/bug-hunter # scan project, auto-fix confirmed bugs
66/bug-hunter src/ # scan a specific directory
67/bug-hunter --scan-only src/ # report only, no code changes
68/bug-hunter --pr # review the current pull request
69/bug-hunter --pr-security # PR security review + threat model + CVEs
70/bug-hunter --deps --threat-model # full security audit
71```
72 
73---
74 
75## How Adversarial AI Code Review Works
76 
77<p align="center">
78 <img src="docs/images/pipeline-overview.png" alt="Bug Hunter adversarial AI code review pipeline — triage, recon, deep scan, skeptic challenge, referee verdict, auto-fix with canary rollout" width="100%">
79</p>
80 
81```
82Triage → Recon → Hunter → Skeptic → Referee → Fix Plan → Fixer → Verify
83 (<2s) ↕ doc verify ↕ doc verify
84```
85 
861. **Triage** — classifies every file by risk in <2 seconds, zero AI tokens
872. **Recon** — maps tech stack, auth mechanisms, attack surfaces
883. **Hunter** — deep behavioral scan for logic errors, security vulnerabilities, race conditions
894. **Skeptic** — adversarial review that tries to *disprove* every finding with counter-evidence
905. **Referee** — independent final j

Preview

codexstar69/bug-huntercodexstar69/bug-hunter

$ npx -y skills add codexstar69/bug-hunter --skill bug-hunter

▸ installing to .claude/skills…

✓ bug-hunter ready

Repocodexstar69/bug-hunter
TypeSkills
CategorySecurity
ForDeveloperArchitect
UpdatedMay 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarentra-app-registrationGuides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration.SkillsJul 2026484k1.3k
  2. microsoft avatarazure-complianceRun Azure compliance and security audits with azqr plus Key Vault expiration checks.SkillsJul 2026484k1.3k
  3. microsoft avatarentra-agent-idProvision Microsoft Entra Agent Identity Blueprints, BlueprintPrincipals, and per-instance Agent Identities via Microsoft Graph, and configure OAuth 2.0 token…SkillsJul 2026207k1.3k
  4. firebase avatarfirebase-security-rules-auditorAudits Firebase (Firestore, Cloud Storage) security rules for vulnerabilities, privilege escalation, role bypasses, create vs update inconsistencies, resource…SkillsJul 202680k389
  5. samber avatargolang-securitySecurity best practices and vulnerability prevention for Golang.SkillsJul 202635k2.7k
  6. googleworkspace avatargws-modelarmorGoogle Model Armor: Filter user-generated content for safety.SkillsJul 202624k30k