Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

review-plan审查计划

Agent Skill

review-plan 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

569

周安装

23

GitHub Stars

3

下载量

178
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:review-plan(审查计划)
来源仓库:https://github.com/benredmond/apex
仓库路径:skills/review-plan
安装命令:
npx skills add https://github.com/benredmond/apex --skill review-plan
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/benredmond/apex --skill review-plan

简介

review-plan 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于项目规划、需求拆解和里程碑设定等研究检索类任务场景。
  • 通过结构化查询支持对任务依赖和资源分配的可视化呈现。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网或命令执行。
  • 可结合来源仓库和原始 README 文档核验具体用法和功能边界。

SKILL.md

Run a fresh reviewer round against the current task plan, revise the <plan> section after every in-scope VERDICT: REVISE, and repeat until the plan reaches VERDICT: APPROVED, the loop hits 5 rounds, or the task must return to /apex:research or /apex:plan because the inputs are too weak for safe review.

Target: 2-3 rounds. Hard max: 5 rounds.

You can find tasks in ./apex/tasks/ or run with: /apex:review-plan [identifier] Load task file, extract the current plan, and start round 1.

  1. Create a compact round summary for the reviewer:

- Current plan snapshot - Contract and research constraints - Prior round findings and what changed since then

  1. Spawn exactly one fresh subagent for the round
  2. Instruct the subagent:

- This is a read-only review round - Do not edit files - Review the plan as an adversary, not a collaborator - Inspect repo files if needed to verify feasibility - Focus on: - mandatory artifact completeness - architecture soundness - contract coverage - contract version / amendment acknowledgement - security concerns - edge cases and failure modes - concurrency, state, ordering, and race risks - pattern provenance and trust alignment - documentation drift - non-functional requirement coverage - validation quality and realism - implementation sequencing and dependency order - research-to-plan mismatches

  1. Require the subagent to return this structure:
ROUND: [N]
VERDICT: [REVISE|APPROVED]
NEXT ACTION: [CONTINUE|RETURN_TO_RESEARCH|RETURN_TO_PLAN|IMPLEMENT]

MUST FIX
- ...

NON-BLOCKING
- ...

SUGGESTED PLAN EDITS
- ...

APPROVAL SUMMARY
- ...

Rules for the verdict:

  • APPROVED only when there are no blocking issues left
  • REVISE when any blocking issue remains
  • Reviewer must not use softer top-line verdicts like PROCEED or RETHINK

Rules for NEXT ACTION:

  • CONTINUE means the plan is reviewable and can be revised in place
  • RETURN_TO_RESEARCH means the evidence base is too weak for safe review
  • RETURN_TO_PLAN means the plan is below threshold or requires scope / contract rework
  • IMPLEMENT is only valid with VERDICT: APPROVED
  1. Extract the blocking findings
  2. If NEXT ACTION is RETURN_TO_RESEARCH:

- stop the loop - do not edit <plan> - instruct the user to run /apex:research [identifier]

  1. If NEXT ACTION is RETURN_TO_PLAN:

- stop the loop - do not edit <plan> - instruct the user to run /apex:plan [identifier]

  1. Otherwise continue with in-scope plan fixes
  2. Update the task's <plan> section directly to resolve them
  3. Keep edits scoped to the plan:

- preserve all 5 mandatory artifacts - preserve architecture decision, builder handoff, and contract validation - acknowledge contract version and any amendments - preserve or restore docs drift, pattern provenance, and NFR coverage checks - refine architecture choice - add missing mitigations - cover uncovered acceptance criteria - tighten sequencing - replace vague validation with concrete commands - clarify ownership of edge cases or concurrency handling

  1. Do not edit <task-contract> or <research>
  2. If a blocking issue cannot be fixed without changing contract scope, assumptions, or acceptance criteria:

- stop the loop - report VERDICT: REVISE - set next action to RETURN_TO_PLAN - instruct the user to return to /apex:plan [identifier]

  1. After editing the plan, validate the mutation before the next round:

- reread the task file - confirm the <plan> block still parses and is isolated from surrounding sections - confirm the edit stayed scoped to <plan> - confirm required plan artifacts were not accidentally removed - if the task file is malformed, repair it before continuing; if that is not possible, stop and return to /apex:plan [identifier]

  1. After each revision, summarize in chat:
  • what the reviewer flagged
  • what changed in the plan
  • what remains to validate next round
  1. Start the next round with a fresh reviewer subagent

If round 5 ends with VERDICT: REVISE:

  • Stop the loop
  • Set next action to RETURN_TO_PLAN
  • Do not continue beyond 5 rounds
  • Present the unresolved blockers
  • Recommend returning to /apex:plan [identifier] for a larger rework

Round Status

  • Round [N]: [REVISE|APPROVED]
  • Repeat for each executed round, up to 5

Final Verdict

VERDICT: [REVISE|APPROVED]

Next Action

[RETURN_TO_RESEARCH|RETURN_TO_PLAN|IMPLEMENT]

Blocking Findings

  • [Finding + exact fix, if any remain]

Plan Changes Made

  • [High-signal summary of plan revisions applied during the loop]

Final Notes

  • [If IMPLEMENT]: Ready for /apex:implement [identifier]
  • [If RETURN_TO_RESEARCH]: Return to /apex:research [identifier]
  • [If RETURN_TO_PLAN]: Return to /apex:plan [identifier]
  • Missing mandatory plan artifacts or thin placeholder artifacts
  • Missing or contradictory contract coverage
  • Missing contract version / amendment acknowledgement
  • Architecture that does not match research evidence
  • Security-sensitive gaps with no mitigation or explicit exclusion
  • Concurrency/state/order-of-operations risks left implicit
  • Edge cases handled with wishful thinking
  • Pattern claims that do not trace back to research or codebase evidence
  • Documentation drift identified in research but absent from the plan
  • Non-functional requirements without validation coverage
  • Validation gates that are vague, manual-only, or not runnable
  • File or dependency assumptions that do not match the repo

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.92%
按下载量换算50

OpenCode

24.97%
按下载量换算44

kilo

19.69%
按下载量换算35

Antigravity

12.9%
按下载量换算23

crush

8.01%
按下载量换算14

github-copilot

3.9%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/benredmond/apex --skill review-plan;npx skills add benredmond/apex --skill "review-plan" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills