review

Dispatches code reviews to the Bugbot or Security Review subagent based on user selection.

Updated Aug 6, 2026
One-click install
npx skills add https://github.com/ferrarifankid04/ai-skills-public --skill review-ferrarifankid04
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review
Source: https://github.com/ferrarifankid04/ai-skills-public/tree/main/cursor/skills-cursor/review
Command: npx skills add https://github.com/ferrarifankid04/ai-skills-public --skill review-ferrarifankid04

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When reviewing code changes, developers must decide whether to run a general bug check or a security-focused audit, and manually invoking the right subagent adds friction. This Skill presents a single choice and routes the request to the correct review workflow automatically. ## Core Features & Use Cases - Guided Review Selection: Prompts the user with a single-select question offering Bugbot or Security Review, using the AskQuestion tool when available or asking directly otherwise. - Subagent Dispatch: Runs the matching review exactly once by following the /review-bugbot or /review-security instructions. - Use Case: After finishing a feature branch, a developer invokes the review command, picks "security" from the prompt, and the Security Review subagent audits the diff for vulnerabilities without further setup. ## Quick Start Ask the assistant to review your current code changes and choose either the Bugbot or Security Review option when prompted.

Frequently Asked Questions about review

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

FAQPage Schema
How do I run a code review with Bugbot or Security Review?

Invoke the review command and answer the single-select prompt with either bugbot or security. The Skill then runs the matching review once by following the /review-bugbot or /review-security instructions.

What is the difference between Bugbot and Security Review?

Bugbot performs a general review of code changes to catch bugs, while Security Review focuses on auditing changes for security issues. The Skill lets you pick one per invocation rather than running both.

What happens if the AskQuestion tool is not available?

The Skill falls back to asking you directly in plain conversation. You still receive the same two options, bugbot and security, and the chosen review runs once afterward.

Can I run both Bugbot and Security Review in one invocation?

No, the Skill is designed to run exactly one review per invocation based on your single-select choice. To get both, invoke the review command a second time and select the other option.

Why does the review skill not trigger automatically?

The Skill sets disable-model-invocation to true, so it only runs when you explicitly invoke it. This prevents unintended reviews from firing during unrelated coding tasks.