Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

create-plan制定计划

Agent Skill

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

总安装

563

周安装

23

GitHub Stars

44

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/darraghh1/my-claude-setup --skill create-plan

简介

create-plan 创建完整项目计划,按阶段分解任务并生成可执行路线图。

  • 适用于 solo 会话模式,直接在 1M 上下文中完成规划、探索与自检闭环。
  • 自动读取模板与现有计划避免命名冲突,输出结构化 phase 文件供后续实施。
  • 包含 shell 命令执行能力,安装前需审查所有 !`command` 指令的安全性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Create Complete Plan — Solo Session

Create a complete plan with phases for: $ARGUMENTS

Current Plans

Existing plans in the repository (avoid naming conflicts):

!ls plans/ 2>/dev/null || echo "(no plans directory yet)"

Architecture

This skill runs as a solo session — you do everything directly with full 1M context. No subagents, no teams, no delegation. You read templates, explore the codebase, create plan artifacts, self-review, and fix issues — all in one session.


Step 1: Clarify Requirements

The user has experienced 20-phase plans built on wrong assumptions — hours of work discarded because a 30-second question wasn't asked upfront. Clarification prevents this waste.

Read the task description above. If anything is ambiguous or underspecified, use AskUserQuestion to clarify before proceeding.

Questions to ask if not clear from the description:

  1. Problem: What specific problem are we solving? What pain point does this address?
  2. Scope: Is this a small feature, medium enhancement, or major system?
  3. Users: Who uses this feature? (specific roles, account types)
  4. Integrations: Does this connect to external services or APIs?
  5. Data: What data does this create, read, update, or delete?
  6. UI: Where does this appear in the app? New page, existing page, component?

If the description says "add voice commands" but doesn't specify which commands, ASK. If it says "improve performance" but doesn't specify what's slow, ASK. The user prefers a brief clarification dialogue over assumptions that lead to rework.

Step 2: Explore Codebase

Before estimating complexity or designing phases, ground yourself in the actual code. This prevents plans built on assumptions instead of code reality.

Use Glob, Grep, and Read to explore:

  1. Affected Files/Modules — which files and directories will likely need changes
  2. Existing Patterns — naming conventions, file structure, import patterns in those areas
  3. Reusable Components — services, components, utilities that already exist and can be leveraged
  4. Integration Points — where the new feature connects to existing code (routes, services, database tables)
  5. Potential Conflicts — areas of complexity, recent changes that might complicate implementation

Keep notes concise. Focus on facts from the code, not assumptions.

Step 3: Read Templates

Read both templates — you'll need them for creating plan.md and phase files:

Read: ${CLAUDE_SKILL_DIR}/references/PLAN-TEMPLATE.md
Read: ${CLAUDE_SKILL_DIR}/references/PHASE-TEMPLATE.md

Step 4: Create plan.md

Create the plan folder and plan.md following the template structure.

Folder naming: plans/{YYMMDD}-{feature-name}/

Plan.md must include:

  • Executive Summary (mission, big shift, primary deliverables)
  • Phasing Strategy with Phase Table (status, title, skill, group, dependencies)
  • Group Summary table (groups, their phases, descriptions)
  • Architectural North Star
  • Security Requirements
  • Decision Log

GROUPING (critical for implementation):

  • Connected phases that build the same feature/component MUST share a group: name
  • Set group: in each phase's frontmatter (e.g., group: "auth-system")
  • Include a Group Summary table in plan.md showing groups, their phases, and descriptions
  • Order groups so dependencies flow top-to-bottom (group A before group B if B needs A)
  • Single-phase groups are valid for standalone work
  • Groups define implementation session boundaries — one /implement session per group

User Checkpoint 1

Show the user the plan summary — executive summary, phase breakdown, group structure, architecture decisions.

Ask for approval/feedback using AskUserQuestion:

  • Approved: Continue to Step 5
  • Changes needed: Revise plan.md and re-present

Step 5: Create Phase Files

Create all phase files following the PHASE-TEMPLATE.md structure. Each phase must include:

  • Frontmatter (title, description, skill, status, group, dependencies)
  • Goal and context
  • Implementation steps with code blocks grounded in codebase patterns (read real files before writing code blocks)
  • Acceptance criteria
  • Testing requirements (TDD — tests come first)
  • Files to create/modify

Phase sizing: 5-8 medium phases > 30 small phases. Each phase should be a coherent unit of work (service + actions + tests), not a micro-slice.

User Checkpoint 2

Show the user the full phase breakdown — titles, skills, groups, dependencies.

Ask for approval/feedback:

  • Approved: Continue to Step 6
  • Changes needed: Revise phases and re-present

Step 6: Flow Audit (3+ Phases)

For plans with 3 or more phases, run a structural flow audit BEFORE per-phase reviews. This catches design-level issues (circular dependencies, wrong ordering, incoherent data flow) that would invalidate all review work if discovered later.

Skip this step for 1-2 phase plans (too small for flow issues).

/audit-plan plans/{YYMMDD}-{feature-name}

Gate logic:

Overall AssessmentAction
"Unusable"HARD BLOCK: Fix structural issues, re-audit
"Major Restructuring Needed"HARD BLOCK: Fix issues, re-audit
"Significant Issues"SOFT BLOCK: Show user, ask whether to proceed or fix
"Minor Issues" or "Coherent"PROCEED to Step 7

Step 7: Self-Review

Review plan.md and each phase file sequentially using /review-plan.

For plan.md:

/review-plan plans/{YYMMDD}-{feature-name}

For each phase:

/review-plan plans/{YYMMDD}-{feature-name} phase 01
/review-plan plans/{YYMMDD}-{feature-name} phase 02
...

Fix any Critical/High issues found during review. Medium issues — use your judgment.

Step 8: Report Summary

Report to the user:

  1. Folder location: plans/{YYMMDD}-{feature-name}/
  2. Files created:

- plan.md - phase-01-*.md through phase-NN-*.md - reviews/planning/ folder with review files

  1. Review status:

- Plan.md: template score (X/11) - Each phase: template score (X/12) + codebase score (N issues by severity) - Flow audit (3+ phases): overall assessment + Critical/High issue count

  1. Overall verdict: Ready/Not Ready for implementation
  2. Critical issues (if any) that need addressing before implementation

Resuming After Context Compact

If you notice context was compacted or you're unsure of current progress:

  1. Run TaskList to see all tasks and their status
  2. Find the in_progress task — that's where you were
  3. Run TaskGet {id} on that task to read full details
  4. Read plan.md to get the Phase Table for broader context
  5. Continue from the in_progress step — don't restart from Step 1

Error Breakout Conditions

STOP and report to user if:

  • Flow audit returns "Unusable" and you cannot restructure
  • Review FAIL repeats 3+ times on the same file
  • Cannot resolve Critical review issues
  • User requests cancellation
  • Context window approaching limit with no clear path forward

Do not continue when blocked. Report and let the user decide.


Patterns That Prevent User-Reported Failures

The user experienced each of these failures. Understanding the harm helps you avoid them:

Pattern to AvoidHarm When Ignored
Skipping requirements clarificationWrong plan built on false premises, hours of wasted effort
Skipping user checkpointsUser discovers wrong assumptions after all phases are written
Writing code blocks without reading codebasePhases contain wrong patterns, caught late during implementation
Single-file micro-phases (too granular)Excessive overhead — 30 phases for a medium feature wastes review/audit cycles
Folder without date prefixFolders become unsorted chronologically
Skipping TaskList check after compactDuplicates work if resuming

Template Locations

  • Plan: references/PLAN-TEMPLATE.md
  • Phase: references/PHASE-TEMPLATE.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.71%
按下载量换算66

Claude

29.79%
按下载量换算54

Cursor

18.51%
按下载量换算33

Gemini CLI

10.25%
按下载量换算18

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/darraghh1/my-claude-setup --skill create-plan 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills