Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

plan-review计划审查

Agent Skill

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

总安装

1,014

周安装

41

GitHub Stars

216

下载量

318
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mathews-tom/armory --skill plan-review

简介

plan-review 用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的研究类任务。
  • 通过 npx 安装,需确认权限范围和维护状态,注意可能触发联网操作。
  • 建议结合来源仓库和原始 README 核验具体用法,避免依赖未经验证的搜索结果。

SKILL.md

Plan Review Skill

Purpose

Execute a structured pre-implementation audit of a technical plan, proposal, or design document. The goal is to surface risks, bad assumptions, missing pieces, and scope problems *before* any code is written — when course corrections are cheapest.

This skill is read-only. It never modifies code. It produces a severity-tagged review document with a final ship/rethink/reject verdict.

Step 0 — Mode Selection

Ask the user a single question via AskUserQuestion:

Which review lens? (1) Product — scope, user impact, business alignment. (2) Engineering — architecture, failure modes, test strategy, performance. (3) Combined (default) — both lenses integrated.

Accept the answer and proceed. Do not ask follow-up configuration questions.

Also assess scope size from the plan:

  • Small change (single file, ~100 lines or fewer): deliver a compressed 4-section review — Scope, Risks, Missing, Verdict. Skip the full multi-section template.
  • Standard change: execute the full review sequence below.

Full Review Sequence

1. Plan Comprehension

Read the plan end-to-end. Produce a 2–3 sentence summary confirming understanding. Explicitly list:

  • Stated goals — what the plan claims to achieve.
  • Non-goals — what is explicitly out of scope.
  • Constraints — budget, timeline, compatibility, team size, or technology constraints mentioned or implied.

If the summary is wrong, the user corrects it here before the rest of the review proceeds on a false foundation.

2. Assumption Challenge

Extract every implicit assumption. For each one:

AssumptionIf wrong?Supporting evidenceWhat falsifies it?

Common assumption categories to probe:

  • Data availability and shape
  • Third-party API stability and rate limits
  • Team familiarity with chosen tools
  • Performance characteristics of dependencies
  • Backward compatibility requirements
  • Deployment environment capabilities

3. Risk & Failure Mapping

For each component or subsystem in the plan, fill a failure mode table:

ComponentFailure ModeBlast RadiusRecovery Strategy

Additionally identify data flow shadow paths — side effects, async callbacks, event propagation, or cache invalidation chains that are not on the happy path but will execute in production.

Use ASCII diagrams to illustrate non-obvious data flow or failure propagation where the plan involves three or more interacting components.

4. Component-by-Component Review (Engineering Lens)

For each major component, assess:

  • Error handling strategy — Are errors classified and routed through a registry, or silently swallowed by catch-all handlers?
  • Data integrity invariants — What invariants must hold? How are they enforced? What happens when they break?
  • Concurrency and race conditions — Shared state, lock ordering, optimistic vs. pessimistic strategies, idempotency guarantees.
  • Performance under load — Expected throughput, latency budget, resource consumption at 10x current scale.
  • Test strategy adequacy — Unit, integration, and end-to-end coverage for the component. What is untestable and why?

This section is language- and framework-agnostic. Reference references/project-detection.md for framework-aware examples when the user's stack is known.

Skip this section when running product-lens-only mode.

5. Scope & Priority Assessment (Product Lens)

  • Needed vs. nice-to-have — Which features are load-bearing for the stated goals? Which are speculative?
  • Deferral candidates — What can ship in a follow-up without increasing risk?
  • Over-engineering indicators — Abstractions, configurability, or extensibility that no current requirement demands.
  • User-facing impact — Does the complexity produce proportional user value?

Skip this section when running engineering-lens-only mode.

6. Integration Review

How components connect to each other and to the outside world:

  • API contracts — Request/response shapes, versioning, error codes between modules.
  • State management across boundaries — Who owns state? How is it synchronized? What happens during partial failure?
  • Migration and deployment ordering — Which components must deploy first? Are there intermediate states where the system is inconsistent?
  • Rollback compatibility — Can each deployment step be reversed independently? What data is irreversible?

7. What's Missing

Things the plan does not address that it should:

  • Monitoring and observability (metrics, logs, alerts, dashboards)
  • Error recovery paths beyond the first retry
  • Edge cases outside the stated happy path
  • Security considerations (authn, authz, input validation, secrets management)
  • Load and scale implications (connection pools, queue depth, storage growth)
  • Operational runbooks for incident response

8. Execution Assessment

Evaluate the proposed implementation order:

  • Dependency ordering — Are prerequisites built before dependents?
  • Parallel work opportunities — Which tasks have no mutual dependency and can proceed simultaneously?
  • Risk-first vs. value-first — Does the plan tackle the highest-risk unknowns early, or defer them?
  • Prototype candidates — Which components should be spiked before committing to the full implementation?

9. Verdict

Deliver exactly one of:

VerdictMeaning
ShipPlan is solid. Proceed as written.
Ship with changesViable, but specific modifications listed below are required before proceeding.
RethinkFundamental structural issues require re-planning. Itemize what must change.
RejectPlan is not viable. Explain why and what alternative direction to consider.

Include a one-paragraph rationale for the verdict.

Compressed Review (Small Changes)

For small-scope changes (single file, ~100 lines), deliver four sections only:

  1. Scope — What the change does and its boundaries.
  2. Risks — Failure modes and blast radius (brief table).
  3. Missing — Gaps worth addressing even at this scale.
  4. Verdict — Ship / Ship with changes / Rethink / Reject.

Interaction Protocol

  • Use AskUserQuestion one issue at a time. Never batch multiple questions into a single prompt.
  • For HIGH-severity findings, surface them immediately and ask whether to continue or pause for discussion before proceeding to the next section.
  • This skill is read-only. It does not create, modify, or delete any files.
  • Use ASCII diagrams for data flow and component relationships where they clarify failure propagation or integration topology.

Output Format

Structured review document with:

  • Numbered sections matching the sequence above
  • Severity tags on every finding: [HIGH], [MEDIUM], [LOW]
  • Summary table of all findings at the end, grouped by severity
  • Final verdict with rationale

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.81%
按下载量换算120

Claude

31.76%
按下载量换算101

Cursor

18.4%
按下载量换算59

Gemini CLI

10%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills