multiAI Summary Pending
reviewing-code
Use when reviewing code changes, checking PRs, or evaluating code quality.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/reviewing-code/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/bpsai/reviewing-code/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/reviewing-code/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How reviewing-code Compares
| Feature / Agent | reviewing-code | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use when reviewing code changes, checking PRs, or evaluating code quality.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Code Review ## Quick Commands ```bash # Run ALL checks at once (tests + linting) bpsai-pair ci # Validate project structure bpsai-pair validate # See what changed git diff main...HEAD --stat git diff main...HEAD ``` ## Review Output Format ```markdown ## Code Review: [Description] ### Summary Brief assessment. ### Must Fix 1. **[File:Line]** - Issue and fix ### Should Fix 1. **[File:Line]** - Suggestion ### Consider 1. **[File:Line]** - Optional improvement ### Positive Notes - What was done well ### Verdict - [ ] Approve - [ ] Approve with comments - [ ] Request changes ``` ## Project-Specific Checks - Type hints on public functions - Docstrings on public interfaces - No hardcoded values (use config) - Tests for new functionality - Mock external services (Trello, GitHub APIs) - Follow existing patterns in codebase ## Quick Checks ```bash # Find debug statements git diff main...HEAD | grep -E "print\(|breakpoint|pdb" # Find TODOs in changes git diff main...HEAD --name-only | xargs grep -n "TODO\|FIXME" # Check for secrets git diff main...HEAD | grep -iE "password|secret|api.?key|token" ```