一键导入
run-review
Surfaces all pending reviews and guides the reviewer agent through approving or rejecting each one.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Surfaces all pending reviews and guides the reviewer agent through approving or rejecting each one.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Decomposes a requirement into tasks and inserts them into the DevFlow database, auto-spawning reviews for qualifying task types.
Reads a project brief from the workspace and ingests it into the DevFlow database — creating a project row and deriving requirements.
| name | run-review |
| description | Surfaces all pending reviews and guides the reviewer agent through approving or rejecting each one. |
Lists all reviews with status = 'pending' and guides the reviewer agent through recording an approval or rejection for each one.
Run /run-review to process the current review backlog — either after a build cycle or on demand to unblock downstream tasks.
Load pending reviews — call read_reviews (no filters) and filter client-side for rows where status = 'pending'. If there are none, report "No pending reviews." and stop.
For each pending review:
a. Call read_tasks with the review's task_id to load the task context (title, task_type, status).
b. Present the review to the user:
notesc. Ask the user (or apply automated criteria) for a decision: approve or reject.
d. If approving — call update_review with:
status = 'approved'notes: a brief rationale for approvale. If rejecting — call update_review with:
status = 'rejected'notes: clear feedback explaining what needs to changef. The server sets reviewed_at automatically on approved or rejected — do not attempt to set it.
After all reviews — report a summary table:
status to 'blocked' or 'in_progress' using the Builder or Tester agent.reviewed_at is set by the MCP server — never pass it as an argument to update_review.