Agent Skills
› jjongguet/oh-my-product
› review
review
GitHub对代码变更执行结构化审查,涵盖正确性、安全性、可维护性及测试覆盖率,按严重程度输出发现的问题与建议。
Trigger Scenarios
用户请求进行代码审查
检查特定文件或范围的代码质量
Install
npx skills add jjongguet/oh-my-product --skill review -g -y
SKILL.md
Frontmatter
{
"name": "review",
"aliases": [
"\/review",
"code review",
"review code",
"review pr"
],
"description": "Perform a structured code review of recent changes or a specific scope.",
"primaryRole": "reviewer"
}
Review Skill (oh-my-product)
Use this skill when the user wants to perform a code review.
What it does
Executes a structured code review covering correctness, security, maintainability, and test coverage. Outputs findings with severity ratings (critical / high / medium / low).
Review checklist
- Correctness — Logic errors, edge cases, null/undefined handling
- Security — Injection, auth bypass, secret exposure, OWASP Top 10
- Maintainability — Code clarity, naming, duplication, coupling
- Test coverage — Missing tests, untested paths, flaky patterns
- Performance — O(n²) loops, N+1 queries, memory leaks
Output format
## Review Summary
### Critical
- [ ] <issue with file:line reference>
### High
- [ ] <issue with file:line reference>
### Medium
- [ ] <issue with file:line reference>
### Low / Suggestions
- [ ] <suggestion>
Usage
Run via skill dispatch:
omp skill review [--scope <files or description>]
Version History
- 4f49e99 Current 2026-07-25 06:34


