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

create-implementation-plan制定实施计划

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/emiliosheinz/agent-skills --skill create-implementation-plan

简介

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

  • 专注于实施计划制定的垂直切片策略工具。
  • 采用 tracer bullet 方法确保每个阶段都可部署验证。
  • 需结合技术设计文档使用,不负责架构定义。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Implementation Plan Creator

Creates implementation plans that define how to execute a project — phases, tasks, sequencing, testing, and milestones. Does not define system architecture. References a technical design when one exists.

Core Principle: Vertical Slices

Structure every plan as vertical slices following the tracer bullet strategy. Each phase delivers a thin but complete slice through all layers.

  • Phase 1 is always the tracer bullet: the simplest possible end-to-end flow that proves the architecture works
  • Every phase produces a deployable increment that can be demonstrated and validated
  • Testing is embedded in each phase — never deferred to a standalone phase
  • No phase is purely "setup" or "infrastructure" without user-visible functionality

Task ID Convention

Task IDs are derived from the feature slug and are unique across the entire plan. Format: PREFIX-PN-NN

  • PREFIX — feature slug uppercased and shortened to 3–5 characters (e.g. user-onboardingONBD, payment-refundsPAY)
  • PN — phase number (e.g. P1, P2)
  • NN — sequential task number within the phase (e.g. 01, 02)

Example: ONBD-P1-01, ONBD-P1-02, ONBD-P2-01

Phase Structure

Each phase must define:

  • Goal: User-facing or system-visible capability this phase delivers
  • Vertical slice: Which layers are touched and what flows end-to-end
  • Tasks: Specific work items with owners and estimates
  • Testing: What is tested in this phase and how
  • Acceptance criteria: How to verify the phase goal
  • Dependencies: What must be complete before this phase starts

Example Phase Progression

  • Phase 1 (Tracer Bullet): Single entity, one endpoint, basic persistence, one happy-path test — proves the full stack end-to-end
  • Phase 2: Core business logic, error handling, validation — primary use case complete
  • Phase 3: External integrations, async processing — system connects to the outside world
  • Phase 4: Edge cases, advanced features, performance — production hardening
  • Phase N (Final): Phased rollout, monitoring verification, documentation — production readiness

Routing

  • Define requirements → /create-prd
  • Design architecture → /create-technical-design
  • Write the code → /implement

Process

Step 1: Locate Upstream Artifacts

Check .specs/[feature-slug]/ for existing documents. If the feature slug is not yet known, ask for the feature name first and derive the slug.

  • Technical design found (.specs/[feature-slug]/TECHNICAL-DESIGN.md): Read it. Use it as the source of truth for architecture, components, APIs, and constraints. Reference it explicitly throughout the plan. Do not re-derive architectural decisions — cite the design.
  • PRD found but no technical design (.specs/[feature-slug]/PRODUCT-REQUIREMENTS.md): Read it. Then do a quick research phase: scan the relevant codebase to understand existing patterns, integration points, and constraints well enough to derive the architectural context needed for the plan.
  • Neither found: Do a quick research phase — scan the codebase for existing patterns, identify relevant entry points and integration boundaries, and derive scope, approach, and constraints from the task description and code. Keep this focused and efficient; the goal is just enough context to write a solid plan.

Step 2: Gather Context

Ask for (skip anything already answered by upstream artifacts):

  • Project/feature name and team members
  • Target timeline or milestone dates
  • Any known constraints (hard deadlines, team availability, external dependencies)

Step 3: Collect Phase Information

Ensure you have enough to structure phases with vertical slices:

  • What is the simplest end-to-end flow that proves the architecture?
  • What is the core business logic that must be complete for V1?
  • Are there external integrations or async processes?
  • What does production readiness require (monitoring, rollback, docs)?

Step 4: Determine Critical Sections

SectionRequired When
Testing StrategyAll projects
Rollback PlanProduction deployments

Testing Strategy: test types (unit, integration, e2e, contract, load) with scope, approach, and critical scenarios per type. Each phase embeds its own testing — this section describes the overall strategy and test data management approach.

Rollback Plan: deployment strategy (feature flags, phased rollout percentages), rollback triggers with specific thresholds, rollback steps (immediate, database, communication), post-rollback process (RCA, fix, re-test, re-deploy).

Step 5: Generate and Validate

File location: .specs/[feature-slug]/IMPLEMENTATION-PLAN.md — derive the slug from the feature name (lowercase, hyphen-separated). Create the directory if it does not exist.

Generate using the template below. Validate against the checklist. Highlight any gaps in the output summary.

Template

# Implementation Plan — [Project/Feature Name]

| Field        | Value                        |
| ------------ | ---------------------------- |
| Tech Lead    | @Name                        |
| Team         | Name1, Name2, Name3          |
| Epic/Ticket  | [Link]                       |
| Status       | Draft / In Review / Approved |
| Created      | YYYY-MM-DD                   |
| Last Updated | YYYY-MM-DD                   |

## Overview

Brief description of what is being built and the execution strategy.

**Technical Design**: [link to TECHNICAL-DESIGN.md if available, or "Not provided"]

## Implementation Phases

Structured as vertical slices following tracer bullet strategy. Testing is embedded in every phase.

### Phase 1: [Tracer Bullet — simplest end-to-end flow]

**Goal**: [User-facing or system-visible capability this phase delivers]

**Vertical slice**: [Which layers are touched and what flows end-to-end]

**Tasks**:

| ID | Task | Owner | Estimate |
|----|------|-------|----------|
| [PREFIX-P1-01] | [Task 1] | @Name | [estimate] |
| [PREFIX-P1-02] | [Task 2] | @Name | [estimate] |

**Testing**:

- [Test type]: [Specific scenarios verified in this phase]

**Acceptance Criteria**:

- [ ] [Verifiable outcome 1]
- [ ] [Verifiable outcome 2]

**Dependencies**: [What must be complete before this phase starts]

---

### Phase 2: [Core business logic complete]

[Same structure as Phase 1]

---

### Phase N: [Production readiness]

[Same structure as Phase 1]

## Milestones

| Milestone | Target Date | Description |
|-----------|-------------|-------------|
| [Name] | YYYY-MM-DD | [What is delivered at this point] |

## Dependencies

| Dependency | Type | Owner | Status | Risk if Delayed |
|------------|------|-------|--------|-----------------|
| [Item] | External / Internal / Technical | @Owner | [Status] | [Impact] |

## Risks

| Risk | Impact | Probability | Mitigation |
|------|--------|-------------|------------|
| [Description] | H/M/L | H/M/L | [Strategy] |

Critical sections (Testing Strategy, Rollback Plan) follow after Risks when applicable.

Validation Checklist

  • Technical design referenced (if one exists)
  • Phase 1 is a tracer bullet delivering end-to-end value
  • Every phase has goal, tasks, testing, acceptance criteria, and dependencies
  • All task IDs follow the PREFIX-PN-NN convention and are unique across the plan
  • Testing is embedded in each phase — no standalone test phase
  • No phase is purely setup or infrastructure without user-visible output
  • Milestones are defined with target dates
  • Dependencies listed with owners and delay risk
  • Risks has 3+ entries with impact, probability, and mitigation
  • Testing Strategy present (all projects)
  • Rollback Plan present (production deployments)

Output Summary

After generating, provide:

Implementation Plan Created: "[Project Name]"
File: .specs/[feature-slug]/IMPLEMENTATION-PLAN.md

Phases: N
Estimated Total Duration: [sum of estimates]

Technical Design: [Linked / Not provided]

Sections Included:
- Mandatory: [list]
- Critical (N/N): [list]

Missing (if any):
- [Section]: [why it matters]

Suggested Next Steps:
- Review phases with team
- Break tasks into tickets/issues
- Run /implement to begin execution

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.28%
按下载量换算27

Claude

27.96%
按下载量换算21

Cursor

16.89%
按下载量换算12

Gemini CLI

9.26%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills