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

create-a-plan制定计划

Agent Skill

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

总安装

1,344

周安装

56

GitHub Stars

4

下载量

448
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cartridge-gg/docs --skill create-a-plan

简介

create-a-plan 将粗略想法或现有规格转化为可执行的详细技术计划,支持并行开发结构。

  • 适用于新功能设计、系统重构或复杂项目启动前的任务分解与资源规划。
  • 输出 PLAN.md 文件,按基础建设、独立工作流与合并集成三阶段组织任务。
  • 需用户提供初始输入(描述或文件路径),自动识别依赖与风险点并给出实施建议。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Create a Plan Skill

This skill runs a structured technical interview to turn a rough idea or an existing spec into a detailed, implementable plan. The output is organized for parallel execution: foundations first, then independent workstreams, then merge and integration.

Invocation

The user will provide one of:

  • A path to a spec or plan file (for example: SPEC.md, PLAN.md, RFC.md)
  • A rough description of what they want to build
  • A feature request or problem statement

Output is always written to PLAN.md in the repo root.

Process

Phase 0: Preflight

  1. If a file path is provided, read it first and note goals, non-goals, constraints, and gaps.
  2. Confirm you will produce PLAN.md as the output in the repo root. If PLAN.md already exists, update it rather than creating a new file.

Phase 1: Discovery

Summarize what is known, then identify missing details. Focus on:

  • Goals and non-goals
  • Constraints (time, budget, platform, dependencies)
  • Success metrics and acceptance criteria

Phase 2: Deep Interview

Use the AskUserQuestion (Claude) and/or request_user_input (Codex) tools in rounds. Ask 1-3 questions per round. Each round should go deeper and avoid repeating what is already known.

CRITICAL RULES:

  1. Never ask obvious questions. If the codebase or spec already answers it, do not ask it again.
  2. Ask about edge cases and failure modes.
  3. Probe for hidden complexity (state transitions, migrations, concurrency).
  4. Challenge assumptions when they create risk or ambiguity.
  5. Identify parallelization boundaries and serial dependencies.
  6. If the user is unsure, propose a default and ask for confirmation.

Question categories to cover as relevant:

  • Technical architecture and data flow
  • Data model and state management
  • API contracts and versioning
  • Caching and invalidation
  • Background jobs, retries, and idempotency
  • Error handling and recovery
  • Observability and debugging
  • Performance, scale, and SLAs
  • Security, privacy, and compliance
  • Integrations and external dependencies
  • UX flows, accessibility, and responsiveness
  • Rollout, migration, and rollback
  • Testing strategy and validation

Phase 3: Dependency Analysis

Identify:

  1. Serial dependencies that must complete first
  2. Parallel workstreams that can run independently
  3. Merge points where work reconvenes

Phase 4: Plan Generation

Write the final plan to PLAN.md. Ensure the plan includes concrete verification steps the agent can run end to end. If the user only wants a plan in chat, provide it inline and mention that it would be written to PLAN.md.

Output Format

The generated plan MUST follow this structure:

# [Feature Name] Implementation Plan

## Overview
[2-3 sentence summary of what this implements and why]

## Goals
- [Explicit goal 1]
- [Explicit goal 2]

## Non-Goals
- [What this explicitly does NOT do]

## Assumptions and Constraints
- [Known constraints or assumptions]

## Requirements

### Functional
- [Requirement]

### Non-Functional
- [Performance, reliability, security, compliance]

## Technical Design

### Data Model
[Schema changes, new entities, relationships]

### API Design
[New endpoints, request/response shapes, versioning]

### Architecture
[System diagram in text or mermaid, component interactions]

### UX Flow (if applicable)
[Key screens, loading states, error recovery]

---

## Implementation Plan

### Serial Dependencies (Must Complete First)

These tasks create foundations that other work depends on. Complete in order.

#### Phase 0: [Foundation Name]
**Prerequisite for:** All subsequent phases

| Task | Description | Output |
|------|-------------|--------|
| 0.1 | [Task description] | [Concrete deliverable] |
| 0.2 | [Task description] | [Concrete deliverable] |

---

### Parallel Workstreams

These workstreams can be executed independently after Phase 0.

#### Workstream A: [Name]
**Dependencies:** Phase 0
**Can parallelize with:** Workstreams B, C

| Task | Description | Output |
|------|-------------|--------|
| A.1 | [Task description] | [Concrete deliverable] |
| A.2 | [Task description] | [Concrete deliverable] |

#### Workstream B: [Name]
**Dependencies:** Phase 0
**Can parallelize with:** Workstreams A, C

| Task | Description | Output |
|------|-------------|--------|
| B.1 | [Task description] | [Concrete deliverable] |

---

### Merge Phase

After parallel workstreams complete, these tasks integrate the work.

#### Phase N: Integration
**Dependencies:** Workstreams A, B, C

| Task | Description | Output |
|------|-------------|--------|
| N.1 | [Integration task] | [Concrete deliverable] |

---

## Testing and Validation

- [Unit, integration, end-to-end coverage]
- [Manual test plan if needed]

## Rollout and Migration

- [Feature flags, staged rollout, migration steps]
- [Rollback plan]

## Verification Checklist

- [Exact commands or manual steps the agent can run to verify correctness]
- [Expected outputs or success criteria]

## Risk Assessment

| Risk | Likelihood | Impact | Mitigation |
|------|------------|--------|------------|
| [Risk description] | Low/Med/High | Low/Med/High | [Strategy] |

## Open Questions

- [ ] [Question that still needs resolution]

## Decision Log

| Decision | Rationale | Alternatives Considered |
|----------|-----------|------------------------|
| [Decision made] | [Why] | [What else was considered] |

Interview Flow Example

Round 1: High-Level Architecture

  • "The spec mentions a sync engine. Is this push-based (webhooks), pull-based (polling), or event-driven (queue)?"
  • "What is the expected data volume and throughput?"

Round 2: Edge Cases

  • "If a batch fails mid-run, do we retry the whole batch or resume from a checkpoint?"
  • "What happens when source data is deleted but still referenced downstream?"

Round 3: Parallelization

  • "Can we process different categories independently, or are there cross-category dependencies?"
  • "Is there a natural partition key that allows sharding?"

Round 4: Operational

  • "What is the acceptable latency for sync or processing?"
  • "How will operators debug failures and what visibility do they need?"

Key Behaviors

  1. Persist until the plan is implementable and verifiable by the agent, but avoid user fatigue by batching questions.
  2. Challenge vague answers when they affect design decisions.
  3. Identify hidden work and operational overhead.
  4. Think about the merge and integration steps early.
  5. Summarize understanding and confirm before writing the final plan.

Completing the Interview

After sufficient rounds of questions:

  1. Summarize your understanding back to the user
  2. Confirm the parallelization strategy
  3. Write the complete plan to the target file
  4. Ask if any sections need refinement

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.36%
按下载量换算149

Codex

32.31%
按下载量换算145

Cursor

19.7%
按下载量换算88

Gemini CLI

10.17%
按下载量换算46

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills