Our review
Reviews the entire codebase for bugs and writes a detailed summary to bugs-summary.md.
Strengths
- Comprehensive examination of all source and test files
- Detects logic errors, validation issues, concurrency problems, and serialization mismatches
- Runs the test suite to verify the current state
- Structured report separating true bugs from design observations
Limitations
- Cannot fix the bugs it finds
- May miss bugs that require deep domain knowledge
- Depends on accurate auto-detection of the project stack and file patterns
Use this skill for a thorough quality audit before a release or after major changes.
Do not use for quick reviews or when you expect automatic fixes.
Security analysis
CautionThe skill instructs running test suites via Bash, which could execute arbitrary code from the repository. While this is necessary for its function, it poses a risk if the repository is untrusted, warranting caution.
- •The skill uses the Bash tool to run test commands (e.g., npm test, gradle test, cargo test) found in the project's build configuration. If the project contains malicious test scripts, running them could execute arbitrary code. No sandboxing or isolation is specified.
Examples
Run the find-bugs skill on this project. Read all source and test files, run the test suite, and write a detailed bugs-summary.md in the root.I just refactored the data layer. Use the find-bugs skill to review the entire codebase and write a bug report, paying special attention to serialization and null handling.name: find-bugs description: Review the codebase for bugs and write findings to bugs-summary.md allowed-tools:
- Read
- Write
- Glob
- Grep
- Bash
Review the entire codebase for bugs and write a summary to bugs-summary.md in the project root.
Steps
-
Detect the project stack: Read build/manifest files (e.g.,
package.json,build.gradle.kts,Cargo.toml,go.mod,pyproject.toml,pom.xml) to identify the language, framework, and build tool. -
Discover source files: Glob for production source files using patterns appropriate to the detected stack (e.g.,
src/**/*.ts,**/src/main/**/*.kt,**/*.go,src/**/*.py). -
Discover test files: Glob for test files using the project's test directory conventions.
-
Read build configuration to understand dependencies, plugins, and build setup.
-
Read every source file to understand the full codebase before looking for issues.
-
Read every test file to understand what is already tested and whether tests are correct.
-
Run the test suite using the project's test command (e.g.,
npm test,./gradlew test,cargo test,go test ./...,pytest) to check for failing tests. -
Identify bugs by looking for:
- Logic errors (incorrect conditionals, off-by-one, wrong operator)
- Missing input validation or error handling
- Mismatched test names vs assertions
- Visibility issues (public API surface leaking internals)
- Resource leaks (unclosed clients, streams, connections)
- Thread safety issues
- Serialization/deserialization mismatches
- Silent failures (operations that fail without warning)
- Incorrect or missing null/error handling
- Duplicated code that has diverged (copy-paste bugs)
-
Check for design issues worth noting:
- Hardcoded values that should be configurable
- Equality/comparison semantics that may surprise callers
- Missing API contracts or invariants
-
Write
bugs-summary.md: Create or overwritebugs-summary.mdin the project root with the following structure:# Bug Summary ## Open ### 1. Short title **File:** `path/to/file.ext` Description of the bug, why it's a problem, and what the expected behavior should be. ### 2. ... ## Design Observations (not bugs, but worth noting) ### Short title Description.- Number each bug sequentially starting at 1
- Include the file path and relevant line numbers
- Explain both the problem and its impact
- Separate true bugs from design observations
- If a previous
bugs-summary.mdexists, read it first and preserve any items marked as "FIXED" in a Fixed section at the top
-
Report: Summarize how many bugs were found and give a brief overview of the findings.
Important
- Read all source files before reporting bugs — do not guess based on file names alone.
- Every reported bug must reference a specific file and describe a concrete problem.
- Do not report stylistic preferences or nitpicks as bugs.
- Do not make any code changes — only analyze and write the summary file.
- Run the tests to verify the current state; note any failures as bugs.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.