Help us improve
Share bugs, ideas, or general feedback.
From review-skill
Systematic bug detection for AI-generated or any codebase — finds cross-boundary contract mismatches, logic errors, async bugs, and runtime failures. Use when reviewing code, PRs, or auditing for bugs.
npx claudepluginhub utarn/review-skillHow this skill is triggered — by the user, by Claude, or both
Slash command
/review-skill:find-mismatchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematic bug detection for AI-generated or any codebase. Finds things that **will break at runtime** — not style issues, not hypotheticals.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Systematic bug detection for AI-generated or any codebase. Finds things that will break at runtime — not style issues, not hypotheticals.
Walk through every file. Check every function call, type annotation, property access, and cross-boundary interaction. Do not skip any file.
Apply these in order — the first two are the most critical:
| # | Category | Why it matters |
|---|---|---|
| 1 | Cross-Boundary Contracts | Silent runtime failures — see CHECKLIST.md |
| 2 | Serialization Gaps | Data corruption between layers — see CHECKLIST.md |
| 3 | Logic Bugs | Wrong results — see CHECKLIST.md |
| 4 | Property & Method Access | Null dereferences — see CHECKLIST.md |
| 5 | Async & Concurrency | Race conditions, leaks — see CHECKLIST.md |
| 6 | CSS & Styling Mismatches | Silent transparent/invisible rendering — see CHECKLIST.md |
| 7 | Placeholder & Stub Code | Incomplete implementations — see CHECKLIST.md |
| 8 | Language-Specific Gaps | Type system holes + AI-specific errors — see LANGUAGE-SPECIFIC.md |
| 9 | Fallow Static Analysis | Unused exports, dead code, circular deps, complexity, duplication — see FALLOW-MAPPING.md |
For JS/TS projects, run the fallow static analysis tool before manual review. This catches mechanical issues deterministically so the manual review can focus on semantic bugs.
Run the fallow pre-check when the project contains a package.json, tsconfig.json, or .ts/.js files (JS/TS project detection). This is mandatory for all TypeScript and JavaScript projects.
If npx fallow --version fails, install fallow first: npm install -D fallow, then proceed with the audit.
npx fallow audit --format json --quietgit diff --staged --name-onlynpx fallow audit --format json --quietnpm install -D fallow, then run the audit