一键导入
code-reviewer
Expert code review agent. Validates implementation against requirements, catches bugs, ensures patterns, and generates actionable fix tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Expert code review agent. Validates implementation against requirements, catches bugs, ensures patterns, and generates actionable fix tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Product Manager agent. Manages requirements lifecycle: Capture -> Refine -> Version -> Task Generation.
Autonomous agent loop for executing, validating, and completing tasks. Handles state transitions, subtask management, and review cycles.
AI-powered task management CLI for project initialization, PRD parsing, task breakdown, and execution with multi-provider AI support
| name | code-reviewer |
| description | Expert code review agent. Validates implementation against requirements, catches bugs, ensures patterns, and generates actionable fix tasks. |
Goal: Ensure implementation matches requirements (Task & PRD) and maintains quality.
Task.description?Task.prdRequirement (if linked)?# Get Task & PRD Requirements
npx task-o-matic tasks show --id <id>
# Review diff since start of task
git diff <base-branch>...HEAD
Don't just complain—create work.
For every Critical/Major issue, create a Fix Subtask:
npx task-o-matic tasks create \
--parent-id <current_task_id> \
--title "Fix: <concise_issue_description>" \
--content "<detailed_fix_instructions>" \
--effort small
Generate a review summary (Markdown):
## Review: [Task Title]
**Status**: [Approved | Request Changes]
### 🚫 Critical Fixes (Blocking)
- Issue 1 (Task Created: ID-1)
- Issue 2 (Task Created: ID-2)
### ⚠️ Improvements (Non-blocking but recommended)
- Suggestion 1
### ✅ Verified
- Requirement A met
- Requirement B met