find-bugs

Review git branch changes for bugs, vulnerabilities, and code-quality issues.

9|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/klh/speedy-claude --skill find-bugs-klh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: find-bugs
Source: https://github.com/klh/speedy-claude/tree/main/skills/find-bugs
Command: npx skills add https://github.com/klh/speedy-claude --skill find-bugs-klh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates a structured, security-first review of local branch changes so reviewers can find bugs, vulnerabilities, and code-quality regressions without missing changed lines or context.

Core Features & Use Cases

  • Full-diff review: Ensures reviewers obtain the complete git diff and reads any truncated file outputs until every changed line is inspected.
  • Attack surface mapping: Enumerates user inputs, database queries, auth checks, external calls, cryptography, and state operations per changed file.
  • Verification and reporting: Cross-checks potential issues against surrounding code and tests, and produces per-file findings with severity, evidence, and concrete fixes.
  • Use Case: Ideal for pull request security audits, release readiness reviews, and developer-assisted vulnerability triage.

Quick Start

Run a security-focused code review of all changes on the current branch and list every per-file issue with severity, evidence, and suggested fixes.

Frequently Asked Questions about find-bugs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit git branch changes for security vulnerabilities?

To audit git branch changes for security vulnerabilities, you can automatically parse the full diff and inspect every changed file to enumerate attack surfaces, verify auth checks, review external calls, and generate per-file findings with severity and remediation steps.

What is attack surface mapping in a code review diff?

Attack surface mapping in a code review diff is the process of identifying user inputs, database queries, auth checks, external calls, cryptography, and state operations in changed files to systematically verify protections and detect potential code-quality regressions.

How do I review a pull request for bugs file-by-file?

You review a pull request for bugs file-by-file by obtaining the complete git diff, reading each changed line and its surrounding context, cross-checking potential issues against available tests, and producing concrete fixes for identified vulnerabilities.

Can I use an automated code review for release readiness checks?

Yes, you can use an automated security-first code review for release readiness checks to ensure no changed lines are missed, mapping the attack surface and verifying protections before deployment without manual line-by-line inspection.

Do I need full git diff access to find bugs in local branch changes?

Yes, you need full git diff access and the ability to read each changed file to find bugs in local branch changes, ensuring truncated file outputs are read completely so every changed line is inspected for inputs and cryptographic operations.