com um clique
debugging
Deep static analysis and bug hunting for any codebase.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Deep static analysis and bug hunting for any codebase.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Mark a logical phase completion in haivemind. More formal than /snapshot — used at step/phase boundaries in multi-phase work. Creates a named, resumable point that /continue can restore from. Triggered by /checkpoint, "checkpoint this", "mark this as a checkpoint", or at phase boundaries in long-running tasks.
Run the Qwen Code CLI as a one-shot bounded executor in a plan/do/verify loop. A frontier model (or you) plans the next bounded step and verifies the result; qwen-do makes a local model do exactly that one step, smoke-test first, then stop. Use when you want a cheap local model to do grunt coding while a smarter orchestrator keeps it on rails.
Scan git commits for PII, credentials, API keys, and passwords before they are pushed. Automatically gates commits via a pre-commit hook. Use when installing PII scanning on a repo, manually scanning a file or diff for credentials, or when a commit is blocked by the hook and remediation is needed. Triggers on "scan for PII", "check for credentials", "install PII guard", "pii hook", or when a commit is blocked by a PII check.
Runs a full CORE-EEAT 80-item content quality audit, scoring content across 8 dimensions with weighted scoring by content type. Produces a detailed report with per-item scores, dimension analysis, and a prioritized action plan.
Deep analysis and debugging with Opus. Systematically investigate problems, identify root causes, and recommend fixes with evidence.
PR review skill. Two modes: /pr [link] = internal thoughts only, what to look for, what to test — NO GitHub action ever. /pr-comment [link] "make it so #1" = draft a GitHub PR comment in <USER_NAME>s voice, present for approval, post only on explicit "go". Passphrase + "go" are both required before any GitHub write. Without both gates, nothing leaves the building.
| name | debugging |
| description | Deep static analysis and bug hunting for any codebase. |
| category | debugging |
| runtimes | ["claude"] |
| pii_safe | true |
Deep static analysis and bug hunting for any codebase. Finds real bugs, not just pattern matches.
When invoked, scan the entire codebase systematically. Run as a single agent session.
package.json / go.mod / Cargo.toml to identify the stackserver/index.ts, main.go, src/App.tsx, etc.Go file-by-file through source code. For each file check:
Type Safety:
await on async callsstring vs number, implicit any)as casts that hide type errorsLogic Errors:
paid → claimed)Security:
eval(), new Function(), template literals with user dataError Handling:
Resource Management:
Output a structured report:
## Bug Hunt Report
### 🐛 Bugs (must fix)
- **File:Line** — Description
Cause: ...
Fix: ...
### ⚠️ Warnings (should fix)
- ...
### ℹ️ Info (ok)
- ...
### Score: X/10
BUG > WARNING > INFO. Only report things that are actually wrong, not style preferences.