Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Review code changes with the Bugbot subagent. Computes diffs, launches a bugbot subagent, and summarizes findings by severity. Use when the user asks to run /review-bugbot or wants a bug-focused code review.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-11 | ✗→✓ | ▲ Improved | 91% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 17% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 42% | 0% |
| case-16 | ✗→✓ | ▲ Improved | 491% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 39% | 0% |
Use this skill when the user asks to run /review-bugbot.
Launch exactly one bugbot subagent with:
readonly: truerun_in_background: false unless explicitly asked to run in backgrounddescription: "Bugbot"subagent_type: "bugbot"The review subagent computes the local diff from the repository path, so do not compute the diff yourself before launching it. The repository path should be the active workspace or repository root for the code the user wants reviewed.
By default, the review subagent infers the repository's actual base branch, such as main, when computing branch changes. In most cases, do not provide Base Branch. Only provide it if you know the current branch or PR should be compared against a specific branch other than the repository's default base branch, such as when you created the current branch from another branch.
Special case: if the user explicitly asks to review a specific PR or branch, make sure that target is checked out before launching the subagent:
github.com/... /review, review {link}, or review {branch-name}.Use this exact prompt shape:
textFull Repository Path: <absolute repository path> Diff: <one of: "branch changes", "uncommitted changes", "natural language"> Base Branch: <only include this line when reviewing branch changes against a known specific base branch> Change Description: <required only when Diff is "natural language"; list each changed file and what changed in it> Custom Instructions: <only include this line when the user gave specific review instructions>
Default to branch changes, which reviews branch changes against the merge-base with the default/base branch, including committed, staged, and unstaged changes. If the user asks to review only uncommitted, local working tree, dirty, or not-yet-committed changes, use uncommitted changes.
If the review subagent fails before producing findings, inspect the failure text.
Full Repository Path, missing Diff, wrong prompt shape, or wrong subagent type, correct the invocation and retry it once immediately.Diff: natural language, omitting Base Branch and providing a Change Description. The subagent will read those files directly. Only use this as a last resort, after the regular diff-based review has failed because the diff could not be computed.Write the Change Description as one block per changed file: a <path> (added|modified|deleted|renamed) header followed by bullet points of what changed. Mention line numbers or ranges inline where they help and you know them (for example (L40-58) or around L120); they are optional, not required on every bullet. Example:
text src/auth/login.ts (modified):
src/auth/legacy.ts (deleted)
src/auth/mfa.ts (added):
After the subagent finishes, summarize the result:
file:line.Do not fix findings or rerun review unless the user explicitly asks for that next step.
Other measured skills in the registry, with their headline benchmark lift.