一键导入
reviewing-code
Use when reviewing code changes, checking PRs, or evaluating code quality.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when reviewing code changes, checking PRs, or evaluating code quality.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Post-processes clirec recordings for video production by scrubbing TUI artifacts, redacting PII, and stitching clean shell sections with raw Claude Code sections.
Reviews a user-provided demo script, proposes a clirec-ready version with timing and wait directives, then records on approval. Three phases — review, propose, record.
Manages task lifecycle transitions including starting, completing, and blocking tasks with enforcement gates and Trello synchronization.
Guides module architecture decisions including file size limits, function boundaries, and modular design patterns to maintain code quality and prevent complexity creep.
Runs cross-repo contract detection and impact analysis on sibling projects in a workspace. Detects schema, route, command, and config changes, traces the dependency graph, and produces an impact report with severity and recommended actions.
Use when work is complete and ready for integration, merge, or PR creation.
| name | reviewing-code |
| description | Use when reviewing code changes, checking PRs, or evaluating code quality. |
| skills | ["reviewing-code"] |
| agent-roles | ["reviewer"] |
# 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
## 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
# 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"