su1ph3r Claude Code Plugins

Marketplace of custom plugins for Claude Code to enhance code quality and security.

su1ph3r Claude Code Plugins

Custom Claude Code plugin marketplace.

Plugins

bug-hunter

Multi-agent bug hunting for Claude Code. Launches parallel specialist agents across 8 bug categories, deduplicates and scores findings, runs a regression guard, and produces a prioritized report.

Usage:

/bug-hunter:bughunt                     # Diff-based scan, top 5 agents
/bug-hunter:bughunt --full              # Full codebase, top 5 agents
/bug-hunter:bughunt --thorough          # All 8 agents, diff-based
/bug-hunter:bughunt --security          # Deep security audit only
/bug-hunter:bughunt src/auth/           # Specific path
/bug-hunter:bughunt --thorough --full   # All agents, full codebase

Agents:

AgentHunts For
logic-hunterOff-by-ones, wrong comparisons, inverted conditions, unreachable code
error-handlerSilent failures, swallowed exceptions, empty catches, fallback masking
edge-case-finderNull paths, empty collections, boundary values, overflow, Unicode
security-scannerInjection, auth bypass, path traversal, SSRF, hardcoded secrets
race-condition-detectorShared mutable state, TOCTOU, deadlocks, async pitfalls
resource-leak-hunterUnclosed files/connections, missing cleanup, thread leaks
api-contract-checkerType mismatches, wrong arg order, schema drift, return value misuse
state-bug-finderStale state, missing UI updates, cache invalidation, state machine bugs
regression-guardTest coverage gaps, downstream consumers, public API breaks, fix risk

Installation

Add this marketplace to Claude Code:

/plugins marketplace add su1ph3r/claude-plugins

Then install a plugin:

/plugins install bug-hunter