Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计未展示

em%3areviewem%3 正在查看

Agent Skill

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

总安装

324

周安装

13

GitHub Stars

公开资料未说明

下载量

105
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cloudvoyant/codevoyant --skill em:review

简介

em%3areview 审查工程路线图或史诗级计划,评估容量合理性、依赖缺口和风险点。

  • 分析里程碑质量和阶段划分逻辑,提出优化建议和资源调整方案。
  • 接受 plan 目录路径或默认最近修改项作为输入源。
  • 安装前需确保 Task 工具可用以实现并行步骤执行。
  • 注意:重点识别隐藏假设和未声明的依赖关系,防止后期返工。

SKILL.md

Compatibility: If AskUserQuestion is unavailable, present options as a numbered list and wait for the user's reply. If Task is unavailable, run parallel steps sequentially. The context: fork and agent: frontmatter fields are Claude Code-specific — on OpenCode and VS Code Copilot they are ignored and the skill runs inline using the current model.

Review an engineering roadmap or epic plan for capacity realism, dependency gaps, missing risks, and phasing quality.

Step 0: Parse Args

Accept either a plan dir path (.codevoyant/plans/{slug}) or default to the most recently modified plan dir under .codevoyant/plans/.

Extract --silent flag.

Set PLAN_DIR accordingly. Verify {PLAN_DIR}/roadmap.md exists — if not, report error and exit.

Step 1: Read All Plan Artifacts

Read all plan artifacts and build a unified picture of total scope vs. stated capacity:

  • {PLAN_DIR}/roadmap.md — phases, capacity, risks, architecture sections
  • Every file in {PLAN_DIR}/breakdowns/ — epic sub-tasks and estimates

Note the team size, time horizon, and total estimated effort from the roadmap.

Step 2: Parallel Review Checks

Run four review agents in parallel (model: claude-haiku-4-5-20251001, run_in_background: true):

Agent R1 — Capacity & Failure Modes

Does the total scope fit the stated team size and time horizon? Flag over-allocation (>80% utilization leaves no buffer). Look for months with no slack.

Build an Error & Rescue Registry check: for each epic, identify the top 3 failure scenarios, state what the rescue action is, and verify whether it is documented in the breakdowns. Output a table:

EpicFailure scenarioRescue actionDocumented?

Flag any epic where failure scenarios are undocumented or rescue actions are "TBD".

Agent R2 — Dependencies + One-Way/Two-Way Audit

Are all inter-epic and external dependencies called out? Are any dependencies ordering-violated (epic A needs B but B is later)? Are external dependencies (other teams, services) flagged with owners?

Classify each major inter-epic architectural decision as:

  • ONE-WAY (!) — hard to reverse; flag if rationale is missing or weak
  • TWO-WAY — can change later; note for completeness

Output a decisions table alongside the standard dependency findings.

Agent R3 — Risk Assessment

Are risks specific and actionable (not just "this is risky")? Missing risk callouts for: new tech, unclear requirements, single points of failure, external dependencies.

For each risk found, score Completeness: X/10 — is the mitigation complete and concrete (10) or hand-wavy and vague (1)? Flag any risk with Completeness < 6 as needing revision.

  • Each risk mitigation must cite what evidence informs it (file, system name, prior incident). Mitigations with no evidence anchor score a maximum of 6/10 regardless of prose quality.
  • Vague quantifiers ("many tasks", "several risks") in risk descriptions: flag INFORMATIONAL and suggest a specific count.

Agent R4 — Phasing Quality + "What Already Exists" Check

Does each phase have a clear theme? Are deliverables concrete (can you tell if a phase is done)? Is the NOT-this-period list present and justified?

Run a "What already exists" check: scan the codebase context and breakdowns for any epic that appears to be rebuilding something the codebase already has. Flag with [BORING-BY-DEFAULT FLAG] if found.

  • Objective in plan.md: does it describe user/business impact (outcome) or feature delivery (output)? Flag any bullet containing "ship", "build", "implement", "deliver", "complete" as the primary verb with suggestion: "Reframe as the outcome this delivers, e.g. 'engineers can deploy without manual steps' not 'build deployment automation'."

Wait for all four agents (TaskOutput block: true). Synthesize findings.

Step 2.5: Fix-First Classification

Before presenting anything to the user, categorize all findings:

AUTO-FIX (perform immediately without asking)

  • Missing breakdown file for a listed epic -> create a skeleton {PLAN_DIR}/breakdowns/{epic-slug}.md with section headings and TBD placeholders
  • Phase with no theme -> derive a one-sentence theme from the phase's deliverables and insert it
  • Empty risk section in roadmap -> populate from R3 findings (insert the flagged risks directly)

ASK (surface to user via AskUserQuestion before acting)

Triggers:

  • Capacity over-allocation (>80% utilization)
  • One-way door decisions without documented rationale
  • Major scope overlaps between epics

For each ASK item, use the following AskUserQuestion format (mandatory):

  1. Re-ground: state the plan name, roadmap horizon, and a one-sentence context for why this item matters
  2. Simplify: explain the issue in plain language (no jargon)
  3. Recommend: state the preferred action and include Completeness: X/10 for each option
  4. Lettered options with human effort estimate and CC (Claude Code) effort estimate per option

Example format:

AskUserQuestion:
  question: "Plan: {SLUG} ({horizon}) — {one-sentence context}.
    Issue: {plain-language explanation of the problem}.
    Recommended: Option A (Completeness: 8/10)"
  options:
    - label: "A) {action} — Human: {Xh}, CC: {Yh}"
    - label: "B) {action} — Human: {Xh}, CC: {Yh}"
    - label: "C) Skip for now"

Step 3: Produce Review Report

Generate a structured review report:

## Review — {date}

### Summary

{1-3 sentence verdict: is this roadmap ready to commit to?}

### Blocking Issues

{items that must be addressed before committing}

### Concerns

{items worth discussing but not blockers}

### Looks Good

{specific things done well — anchor to actual content}

### Suggested Next Steps

{ordered list of what to do with this feedback}

Append a Review Readiness Dashboard at the end of the report:

| Section            | Status | Verdict                               |
| ------------------ | ------ | ------------------------------------- |
| Capacity           | ?/?/?  | {1-line summary}                      |
| Dependencies       | ?/?/?  | {1-line summary}                      |
| Error & Rescue     | ?/?/?  | {N epics documented / M missing}      |
| One-way door flags | ?/?/?  | {N flagged, M with missing rationale} |
| Phasing quality    | ?/?/?  | {1-line summary}                      |
| Overall            |        | Ready / Needs fixes / Blocked         |

Status legend: PASS = no issues, WARN = concerns worth noting, FAIL = blocking issue.

Step 4: Present Review Inline

Output the full review report directly in the chat as structured markdown — do not write a file. The report was generated in Step 3; display it now.

If invoked interactively (not --silent), ask:

AskUserQuestion:
  question: "What would you like to do with this review?"
  options:
    - label: "Looks good — no changes needed"
    - label: "Open the roadmap file to address issues"
    - label: "Re-run em:plan with adjustments"

Step 5: Notification

If --silent is not set, send a desktop notification:

npx @codevoyant/agent-kit notify --title "em:review complete" --message "Review complete for '{SLUG}': {N} blocking, {N} concerns"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

39.6%
按下载量换算42

Claude

29.2%
按下载量换算31

Cursor

19.08%
按下载量换算20

Gemini CLI

9.57%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills