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

plan-exit-review计划退出审查

Agent Skill

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

总安装

629

周安装

27

GitHub Stars

37

下载量

220
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill plan-exit-review

简介

用于在任务前查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果,支持多宿主环境协作。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,使用前需确认权限和维护状态。
  • 建议检查是否会触发联网、命令执行或文件读写操作,确保符合安全策略。
  • 可结合来源仓库和原始 README 进一步核验具体用法和适用边界。

SKILL.md

Plan Exit Review

Audience: Engineers about to start implementation. Goal: Catch scope creep, missing coverage, and design flaws interactively before writing code.

Priority Hierarchy

If running low on context or user asks to compress: Step 0 > Test diagram > Opinionated recommendations > Everything else. Never skip Step 0 or the test diagram.

Engineering Principles

These guide all recommendations:

  • DRY — flag repetition aggressively
  • Well-tested — rather too many tests than too few
  • Engineered enough — not under-engineered (fragile) or over-engineered (premature abstraction)
  • Handle more edge cases, not fewer — thoughtfulness > speed
  • Explicit over clever
  • Minimal diff — achieve the goal with fewest new abstractions and files touched
  • Complexity proportional to the problem

Diagrams

  • Use ASCII diagrams liberally for data flow, state machines, dependency graphs, pipelines, decision trees
  • When modifying code with existing ASCII diagrams nearby, verify accuracy and update in the same commit
  • Stale diagrams are worse than no diagrams — they actively mislead

Step 0: Scope Challenge (Mandatory)

Before reviewing anything, answer:

  1. What existing code already solves each sub-problem? Can we capture outputs from existing flows rather than building parallel ones?
  2. What is the minimum set of changes that achieves the stated goal? Flag work that could be deferred without blocking the core objective. Be ruthless about scope creep.
  3. Complexity check: If plan touches >8 files or introduces >2 new classes/services, treat as a smell and challenge whether the same goal can be achieved with fewer moving parts.

Then AskUserQuestion with three tracks:

  1. SCOPE REDUCTION — Plan is overbuilt. Propose a minimal version that achieves the core goal, then review that.
  2. BIG CHANGE — Work through interactively, one section at a time (Architecture > Code Quality > Tests > Performance) with at most 4 top issues per section.
  3. SMALL CHANGE — Compressed review: Step 0 + one combined pass covering all 4 sections. Pick the single most important issue per section. Present as a single numbered list with lettered options + mandatory test diagram + completion summary. One AskUserQuestion round at the end.

If user does not select SCOPE REDUCTION, respect that decision fully. Raise scope concerns once in Step 0 — after that, commit to the chosen scope and optimize within it. Do not silently reduce scope, skip planned components, or re-argue for less work.

Review Sections (After Scope Is Agreed)

1. Architecture Review

Evaluate:

  • System design and component boundaries
  • Dependency graph and coupling concerns
  • Data flow patterns and potential bottlenecks
  • Scaling characteristics and single points of failure
  • Security architecture (auth, data access, API boundaries)
  • Whether key flows deserve ASCII diagrams in the plan or code comments
  • For each new codepath or integration point: one realistic production failure scenario and whether the plan accounts for it

STOP. Call AskUserQuestion with findings. Do NOT proceed until user responds.

2. Code Quality Review

Evaluate:

  • Code organization and module structure
  • DRY violations — be aggressive
  • Error handling patterns and missing edge cases (call out explicitly)
  • Technical debt hotspots
  • Over-engineered or under-engineered areas
  • Existing ASCII diagrams in touched files — still accurate after this change?

STOP. Call AskUserQuestion with findings. Do NOT proceed until user responds.

3. Test Review

Make a diagram of all new UX, new data flow, new codepaths, and new branching outcomes. For each, note what is new. Then for each new item, verify a test exists.

STOP. Call AskUserQuestion with findings. Do NOT proceed until user responds.

4. Performance Review

Evaluate:

  • N+1 queries and database access patterns
  • Memory-usage concerns
  • Caching opportunities
  • Slow or high-complexity code paths

STOP. Call AskUserQuestion with findings. Do NOT proceed until user responds.

Issue Presentation Format

For every issue found:

  1. Describe the problem concretely with file and line references
  2. Present 2-3 options including "do nothing" where reasonable
  3. For each option: effort, risk, maintenance burden (one line)
  4. Lead with recommendation as directive: "Do B. Here's why:" — not "Option B might be worth considering"
  5. Map reasoning to a specific engineering principle above

AskUserQuestion format:

  • Start: "We recommend [LETTER]: [one-line reason]"
  • List: A)... B)... C)...
  • Label: issue NUMBER + option LETTER (e.g., "3B")
  • Recommended option listed first
  • One sentence max per option

Required Outputs

NOT In Scope

List work considered and explicitly deferred, with one-line rationale per item.

What Already Exists

List existing code/flows that partially solve sub-problems. Note whether plan reuses them or unnecessarily rebuilds.

TODOS.md Updates

Deferred work that would meaningfully improve the system. Each entry:

  • What: One-line description
  • Why: Concrete problem it solves (not "nice to have")
  • Context: Enough detail for someone in 3 months to understand motivation, current state, where to start
  • Depends on / blocked by: Prerequisites or ordering constraints

Ask user which deferred items to capture before writing. A TODO without context is worse than no TODO.

Failure Modes

For each new codepath from the test diagram, list one realistic failure (timeout, nil reference, race condition, stale data) and whether:

  1. A test covers that failure
  2. Error handling exists
  3. User sees a clear error or silent failure

If any failure mode has no test AND no error handling AND would be silent: flag as critical gap.

Completion Summary

- Step 0: Scope Challenge (user chose: ___)
- Architecture Review: ___ issues found
- Code Quality Review: ___ issues found
- Test Review: diagram produced, ___ gaps identified
- Performance Review: ___ issues found
- NOT in scope: written
- What already exists: written
- TODOS.md updates: ___ items proposed
- Failure modes: ___ critical gaps flagged

Retrospective Learning

Check git log for the branch. If prior commits suggest a previous review cycle (review-driven refactors, reverted changes), note what changed and whether the current plan touches the same areas. Be more aggressive reviewing previously problematic areas.

Unresolved Decisions

If user does not respond to an AskUserQuestion or interrupts to move on, note which decisions were left unresolved. At the end, list as "Unresolved decisions that may bite you later" — never silently default to an option.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.63%
按下载量换算85

Claude

28.24%
按下载量换算62

Cursor

18.49%
按下载量换算41

Gemini CLI

10.01%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills