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

implementation-plan-review实施计划审查

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

公开资料未说明

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/validkeys/sherpy --skill implementation-plan-review

简介

implementation-plan-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 适用于研究类任务,如查找技术方案、筛选参考资料或匹配开发需求。
  • 通过 npx skills add 命令安装,需结合来源 README 核验具体用法。
  • 使用前建议确认权限范围和是否会触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Implementation Plan Review

This skill reviews generated implementation plans against established best practices to ensure quality, completeness, and development readiness.

Prerequisites

  • Generated milestones.yaml file
  • Associated milestone-m*.tasks.yaml files
  • Optional: Source business-requirements.yaml and technical-requirements.yaml for alignment checks

Review Process

Phase 1: Structure Validation

Load and parse all plan files:

  1. File Discovery

- Locate milestones.yaml - Find all milestone-m*.tasks.yaml files - Verify all referenced task files exist

  1. Schema Validation

- Validate YAML syntax - Check required fields present - Verify data types and formats

  1. Reference Integrity

- Validate milestone dependencies exist - Validate task dependencies exist - Check task file references match milestones

Phase 2: Best Practices Compliance

Review against embedded best practices:

Style Anchors

  • 2-3 style anchors included per milestone task file
  • Concrete file paths (not abstract descriptions)
  • Specific line numbers provided
  • Complete examples (code + tests + README where applicable)
  • Current patterns reflecting best practices
  • Clear descriptions explaining what pattern is demonstrated

Task Sizing (from task-sizing.md)

  • Minimum 30 minutes per task (document rationale if smaller)
  • Optimal 30-150 minutes for most tasks
  • Maximum 150 minutes (2.5 hours) - split if larger
  • Limited file scope (1-3 files preferred, >5 requires justification)
  • Clear deliverables for each task
  • Acceptance tests defined

TDD Requirements

  • TDD checklist included for code tasks
  • Test-first approach specified
  • Validation commands provided
  • Expected outputs documented
  • Test modification forbidden when tests fail

Affirmative Instructions

  • Permitted actions explicit (e.g., "ONLY use: X, Y, Z")
  • Negative framing avoided
  • Constraints clear and actionable
  • File scopes explicit ("touch ONLY", "modify ONLY")

Drift Prevention (from drift-policy.md)

  • Drift policy stated in task instructions
  • Stop criteria clear (unexpected dependencies, file scope violations)
  • Revert instructions provided
  • Incident documentation process specified
  • Allowed deviations understood (formatting, whitespace)

Quality Gates

  • Pre-commit hooks defined
  • Validation commands specified per task
  • Success criteria measurable
  • Failure handling documented

Prompt Positioning

  • Critical specs at beginning of task instructions
  • Style anchors early in task definitions
  • Hard rules reiterated at end
  • Requirements not buried in middle

Phase 3: Drift Policy Compliance

Review against embedded drift policy:

Stop & Revert Criteria Coverage

Check that tasks include guidance for:

  • New dependencies detection - How to identify unauthorized dependencies
  • File scope violations - What to do if >3 unexpected files touched
  • Linting/type errors - Handling unresolvable errors
  • Test failures - Policy on modifying vs fixing implementation

Immediate Actions Documentation

  • Stop instruction clear - "STOP immediately" language used
  • Error message format - How to summarize deviation
  • Revert process - When and how to revert
  • Incident note location - Where to document (docs/drift-incidents/)

Recording Learnings

  • Rule update process mentioned
  • Where to update (.cursor/rules/, CLAUDE.md)

Allowed Deviations

  • Minor formatting - Understood as acceptable
  • Whitespace edits - Allowed without review
  • Single-line refactors - Within scope and type-checked

Phase 4: Task Sizing Analysis

Review against embedded task sizing guidelines:

Duration Compliance

Generate report:

task_sizing_report:
  total_tasks: [count]
  by_duration:
    too_small:  # < 30m
      - task_id: [id]
        estimate_minutes: [n]
        rationale: [why small]
        recommendation: [merge or accept]
    optimal:    # 30-150m
      count: [n]
      percentage: [%]
    too_large:  # > 150m
      - task_id: [id]
        estimate_minutes: [n]
        recommendation: [split into X, Y, Z]

File Scope Analysis

  • 1-3 files preferred
  • >5 files justified or split
  • Explicit file lists in each task
  • Touch-only files clearly marked

Task Decomposition Quality

  • Smallest useful deliverable defined
  • Clear acceptance test per task
  • Example files provided
  • Commit after each task strategy

Large Task Detection

Identify tasks requiring decomposition:

decomposition_needed:
  - task_id: [id]
    current_estimate: [minutes]
    suggested_split:
      - name: [subtask 1]
        estimate: [minutes]
      - name: [subtask 2]
        estimate: [minutes]
      - name: [subtask 3]
        estimate: [minutes]

Phase 5: Completeness Check

Milestone Structure

  • All milestones have unique IDs
  • Names are clear and descriptive
  • Descriptions explain deliverables
  • Dependencies correctly ordered
  • No circular dependencies
  • Estimated durations realistic
  • Task files referenced correctly
  • Success criteria testable

Task Breakdown

  • All tasks have unique IDs
  • Task names descriptive
  • Descriptions clear and actionable
  • Estimates follow sizing rules
  • Types specified (code/test/docs/config)
  • Dependencies explicit and correct
  • File lists complete and accurate
  • Instructions detailed and clear

Task Quality

  • Objectives clearly stated
  • Implementation steps numbered
  • Constraints explicit
  • TDD checklists included (code tasks)
  • Validation commands provided
  • Expected outputs documented
  • Drift policy stated

Phase 6: Alignment Check

Business Requirements (if provided)

  • All functional requirements mapped to tasks
  • Priority aligns with business priorities
  • MVP scope clearly defined
  • Success criteria can verify business goals

Generate coverage matrix:

business_requirement_coverage:
  FR-1: [task-ids]
  FR-2: [task-ids]
  FR-3: [gap]  # Not covered

Technical Requirements (if provided)

  • Architecture decisions reflected
  • Technology choices enforced
  • Testing strategy implemented
  • Security requirements addressed
  • Performance requirements considered

Generate coverage matrix:

technical_requirement_coverage:
  architecture:
    - decision: [description]
      enforced_in: [task-ids]
  technology:
    - choice: [description]
      enforced_in: [task-ids]

Phase 7: Dependency Analysis

Critical Path

  • Critical path identified
  • Duration calculated
  • Parallel opportunities noted
  • Unnecessary dependencies removed
  • Dependencies minimal but sufficient

Generate dependency graph:

dependency_analysis:
  critical_path:
    - [milestone-id]
    - [milestone-id]
  critical_path_duration: [time]

  parallel_opportunities:
    - can_parallelize: [[m1, m2], [m3, m4]]
      time_saved: [duration]

  dependency_issues:
    - task: [id]
      issue: [description]
      recommendation: [fix]

Circular Dependency Check

  • No circular dependencies in milestones
  • No circular dependencies in tasks
  • Dependency graph is a DAG

Phase 8: Gap Identification

Common Gaps

  • Infrastructure tasks present (setup, tooling)
  • Test tasks included
  • Documentation tasks included
  • Error handling tasks included
  • Configuration tasks included
  • Deployment/release tasks included
  • Assumptions documented
  • Style anchors for new patterns
  • Clear file boundaries
  • Integration tasks between components

Generate gap report:

gaps:
  missing_task_types:
    - type: [infrastructure/tests/docs/etc]
      importance: [high/medium/low]
      recommendation: [description]

  missing_requirements_coverage:
    - requirement: [id]
      category: [functional/non-functional]
      impact: [high/medium/low]

  undocumented_assumptions:
    - task: [id]
      assumption: [description]
      recommendation: [document explicitly]

Phase 9: Style Anchor Validation

  • Anchors reference existing files (if repository available)
  • Line numbers accurate (if verifiable)
  • Patterns demonstrated correctly
  • Descriptions helpful
  • Sufficient anchors for each new pattern
  • Test anchors included
  • README anchors included where applicable

Phase 10: Quality Gate Validation

  • Linter commands specified
  • Type checker commands specified
  • Test commands specified
  • Commands are executable
  • Expected outputs defined
  • Failure handling documented

Review Output

Generate comprehensive review report as implementation-plan-review.yaml.

The output document includes: metadata (plan files, review date), overall_scores (structure, best practices, task sizing, completeness, alignment, development readiness — each 1-10), critical_issues, high_priority_issues, medium_priority_issues, best_practices_violations (by category), gaps, strong_areas, optimization_opportunities, specific_recommendations, and readiness_assessment.

See references/output-spec.md for the complete document specification with all fields, issue IDs (CRIT-NNN/WARN-NNN/INFO-NNN), and scoring criteria.

See references/example.yaml for a full example.

Usage

Review an implementation plan:

/implementation-plan-review path/to/milestones.yaml

The skill will:

  1. Load all milestone and task files
  2. Validate structure and schema
  3. Check compliance against all best practices
  4. Analyze task sizing and dependencies
  5. Identify gaps and issues
  6. Generate comprehensive review report
  7. Provide specific recommendations

Output Files

Generates:

  • implementation-plan-review.yaml - Comprehensive review report
  • task-sizing-analysis.yaml - Detailed task sizing breakdown
  • requirement-coverage.yaml - Requirements to tasks mapping
  • dependency-graph.yaml - Milestone and task dependencies

Best Practice References

This skill embeds and enforces best practices directly:

1. Implementation Plan Best Practices

Core Principle:

Models optimize locally; enforce global constraints with layered verification (prompt → IDE → commit → CI → runtime).

Key Practices:

  • Style Anchors: Always include 2-3 exemplary files as templates with exact paths and line numbers. Prefer concrete repository examples (code + tests + README). Enforce anchors early to prevent architectural drift.
  • Task Sizing: Split work into 30m–2.5h atomic tasks (30–150 minutes optimal). Limit scope to specific files. Commit after each small task. Revert immediately on drift. If a task is shorter than 30m, either increase estimate or split it with rationale.
  • Affirmative Instructions: State permitted actions explicitly (e.g., "ONLY use: X, Y, Z"). Avoid negative framing.
  • Tiered Rules: Global (user prefs), Project (persistent in CLAUDE.md or.cursor/rules/), Context-aware (per directory/file).
  • TDD as Anchor: Require TDD checklist before implementation (tests → minimal code → more tests → refactor). When tests fail, return failing output with instruction: "Revise implementation to pass this test while keeping all previously passing tests. Do not modify the test. Do not add dependencies."
  • Drift Handling: Stop and revert immediately on unexpected dependencies or unfamiliar patterns. Do not fix mid-stream. Document learnings and update persistent rules after each session.
  • Prompt Positioning: Put critical specs, style anchors, and hard rules at the beginning and reiterate at the end of prompts (avoid burying requirements in the middle).
  • External Data Validation: Never use type assertions on external data. Validate all external inputs with proper error handling and validation.

IDE/Linting:

  • Enforce strict linting (go vet, golangci-lint, gofmt)
  • Run tests with race detection
  • Zero warnings policy

Quality Gates:

  • Pre-commit: make lint and make test with zero warnings
  • CI: Count violations and fail if thresholds exceeded

2. Drift Policy

Purpose: Define when to stop, revert, and document when the model's edits deviate from project rules.

Stop & Revert Criteria:

  • Model introduces new dependencies not listed in allowed stack
  • Edits touch files outside specified targets (>3 unexpected files)
  • Linting or type errors introduced that cannot be resolved within task scope
  • Tests fail and model proposes changing tests to pass

Immediate Actions:

  1. Stop the model session and return clear error message summarizing deviation
  2. Revert workspace to state before task started (use git where appropriate)
  3. Create incident note in docs/drift-incidents/ with: what happened, files changed, new dependencies, remediation steps

Recording Learnings:

  • After resolving, update .cursor/rules/ or CLAUDE.md with new rules to prevent recurrence

Allowed Deviations:

  • Minor formatting changes (editor config) or whitespace-only edits
  • Single-line refactors within targeted files if within scope and type-checked

Review & Approval:

  • Any revert or incident note must be reviewed by human maintainer before re-running

3. Task Sizing Guidance

Purpose: Keep model-directed work in predictable, reviewable chunks to reduce drift and unexpected scope growth.

Guidelines:

  • Target task duration: 30 minutes to 2.5 hours
  • Prefer changes limited to 1-3 files where possible
  • If a requested change touches >5 files or will take >2.5 hours, split into smaller tasks

Process:

  1. Define smallest useful deliverable and clear acceptance test
  2. Provide example files and exact paths to edit
  3. After each completed task, run tests and commit with clear message

Breaking Down Large Tasks:

  • Decompose into: (a) tests + scaffolding, (b) minimal implementation, (c) refactor & polish
  • Create plan note listing sub-tasks and acceptance criteria

Examples:

  • Small: fix a bug in src/utils/parse.ts — 30-60 mins
  • Medium: add new API endpoint src/server/user.ts with tests — 1-2.5 hours
  • Large: migrate auth system — split into design + incremental PRs

Decision Support

After review, provide recommendations:

If Critical Issues Found

"I've identified [n] critical issues that block development: 1. [Critical issue 1] 2. [Critical issue 2] Recommendation: Fix these issues before starting development. Would you like to: 1. Fix issues now (I'll regenerate affected tasks) 2. Review issues manually 3. Proceed with awareness (not recommended)"

If High Priority Issues Found

"I've identified [n] high-priority issues that should be addressed: 1. [Issue 1] 2. [Issue 2] Recommendation: Address these before development or early in milestone 0. Would you like to: 1. Address now (I'll update the plan) 2. Note for milestone 0 3. Proceed and handle as needed"

If Ready with Modifications

"The plan is mostly ready with [n] recommended improvements. Strong areas: - [What's well-planned] Recommended improvements: - [Improvement 1] - [Improvement 2] Timeline impact: [estimate] Would you like to: 1. Apply improvements now 2. Note for implementation 3. Start development as-is"

If Ready for Development

"The implementation plan is ready for development! Strengths: - [What's excellent] - [Best practices followed] Minor optimization opportunities: - [Opportunity 1] - [Opportunity 2] Estimated timeline: [duration] Critical path: [duration] You can begin development with confidence."

Integration

This skill integrates with:

  • implementation-planner - Reviews plans generated by this skill
  • business-requirements-interview - Validates alignment with business needs
  • technical-requirements-interview - Validates technical specification coverage

Examples

See references/example.yaml for a complete sample review output.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.66%
按下载量换算85

Claude

29.4%
按下载量换算63

Cursor

18.95%
按下载量换算41

Gemini CLI

9.78%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills