用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/WenJunDuan/Rlues --skill athena-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | athena-review |
| description | PACE review stage 执行 skill. v9.6.4 升级: 6 维度 (并行 spawn 3 subagent: reviewer + spec-compliance + evaluator). |
| effort | high |
impl stage 完成 (checklist.yaml 全 completed + tests passing) → 主 agent 进 review.
或 Stop hook prompt 自动检测 + 推进:
stage = impl AND all checklist done AND tests passing → suggest next_stage = review
| # | 维度 | 由谁负责 |
|---|---|---|
| 1 | Correctness (代码正确) | reviewer subagent |
| 2 | Security (安全) | reviewer |
| 3 | Test (测试) | reviewer |
| 4 | Design 一致 (代码符合 design) | reviewer |
| 5 | Quality (质量) | reviewer |
| 6 | Spec Compliance (文档覆盖, v9.6.4 新) | spec-compliance subagent |
# 主 agent 用 Task tool 并行调用
spawn_parallel([
Task(subagent_type="reviewer", prompt="..."), # 1-5 维度
Task(subagent_type="spec-compliance", prompt="..."), # 6 维度 (新)
])
# 等两个完成后, spawn evaluator (后跑, 综合两家)
Task(subagent_type="evaluator", prompt="...")
写入 sprints/{slug}/reviews/pass1.md, 段:
## Reviewer (代码层 findings)读 sprints/{slug}/design.md 提取 ## 验收标准 + ## 实现要点 + ## File Structure Plan.
Bash git diff main...HEAD --stat + --name-only.
逐项对比, 写 sprints/{slug}/reviews/pass1.md 段:
## Spec Compliance (spec-compliance, {timestamp})### MISSING (做少了)### EXTRA (做多了, 分合理 refactor / scope creep)### DEVIATED (做偏了)### 总评 (PASS | REWORK)evaluator 读 reviews/pass1.md 的两段 (reviewer + spec-compliance), 综合给 VERDICT:
| VERDICT | 含义 | 下一步 |
|---|---|---|
| PASS | 全部维度合规 | next_action = polish (Refactor/System) 或 ship |
| CONCERNS | 有 P1/P2 但可推后 | next_action = polish (Refactor/System) 或 ship |
| REWORK | 有 P0 或 MISSING/DEVIATED | next_action = rework_impl |
| FAIL | 严重违规 (e.g. 安全漏洞) | next_action = rework_impl, 标 _index.major_issue |
evaluator 写 _index.next_action.
stage=review 时, Stop hook prompt 自动检查:
pass1.md 缺 ## Spec Compliance 段 → block + 提示 "spawn spec-compliance subagent"REWORK → 主 agent 回 impl 修, 再进 review:
reviews/pass2.md (不覆盖 pass1.md)