Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

create-plans制定计划

Agent Skill

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

总安装

329

周安装

14

GitHub Stars

16

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/cfircoo/claude-code-toolkit --skill create-plans

简介

采用原子化拆分策略制定高质量执行计划,控制上下文负载在 50% 以内。

  • 每个阶段产出即作为下一阶段的输入 prompt,形成闭环质量保障机制。
  • 适用于需要精细拆解的长周期项目,通过小步快跑降低认知负荷。
  • 注意监控上下文增长曲线,超过阈值时应主动拆分避免质量退化。
  • create-plans 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

<essential_principles>

When planning a phase, you are writing the prompt that will execute it.

The quality degradation curve:

  • 0-30% context: Peak quality (comprehensive, thorough, no anxiety)
  • 30-50% context: Good quality (engaged, manageable pressure)
  • 50-70% context: Degrading quality (efficiency mode, compression)
  • 70%+ context: Poor quality (self-lobotomization, rushed work)

Critical insight: Claude doesn't degrade at 80% - it degrades at ~40-50% when it sees context mounting and enters "completion mode." By 80%, quality has already crashed.

Solution: Aggressive atomicity - split phases into many small, focused plans.

Examples:

  • 01-01-PLAN.md - Phase 1, Plan 1 (2-3 tasks: database schema only)
  • 01-02-PLAN.md - Phase 1, Plan 2 (2-3 tasks: database client setup)
  • 01-03-PLAN.md - Phase 1, Plan 3 (2-3 tasks: API routes)
  • 01-04-PLAN.md - Phase 1, Plan 4 (2-3 tasks: UI components)

Each plan is independently executable, verifiable, and scoped to 2-3 tasks maximum.

Atomic task principle: Better to have 10 small, high-quality plans than 3 large, degraded plans. Each commit should be surgical, focused, and maintainable.

Autonomous execution: Plans without checkpoints execute via subagent with fresh context - impossible to degrade.

See: references/scope-estimation.md

Checkpoint types:

  • checkpoint:human-verify - Human confirms Claude's automated work (visual checks, UI verification)
  • checkpoint:decision - Human makes implementation choice (auth provider, architecture)

Rarely needed: checkpoint:human-action - Only for actions with no CLI/API (email verification links, account approvals requiring web login with 2FA)

Critical rule: If Claude CAN do it via CLI/API/tool, Claude MUST do it. Never ask human to:

  • Deploy to Vercel/Railway/Fly (use CLI)
  • Create Stripe webhooks (use CLI/API)
  • Run builds/tests (use Bash)
  • Write.env files (use Write tool)
  • Create database resources (use provider CLI)

Protocol: Claude automates work → reaches checkpoint:human-verify → presents what was done → waits for confirmation → resumes

See: references/checkpoints.md, references/cli-automation.md

During execution, deviations are handled automatically via 5 embedded rules:

  1. Auto-fix bugs - Broken behavior → fix immediately, document in Summary
  2. Auto-add missing critical - Security/correctness gaps → add immediately, document
  3. Auto-fix blockers - Can't proceed → fix immediately, document
  4. Ask about architectural - Major structural changes → stop and ask user
  5. Log enhancements - Nice-to-haves → auto-log to ISSUES.md, continue

No user intervention needed for Rules 1-3, 5. Only Rule 4 (architectural) requires user decision.

All deviations documented in Summary with: what was found, what rule applied, what was done, commit hash.

Result: Flow never breaks. Bugs get fixed. Scope stays controlled. Complete transparency.

See: workflows/execute-phase.md (deviation_rules section)

Milestone-driven: Ship v1.0 → mark milestone → plan v1.1 → ship → repeat. Milestones mark shipped versions and enable continuous iteration.

Purpose:

  • Historical record in MILESTONES.md (what shipped when)
  • Greenfield → Brownfield transition marker
  • Git tags for releases
  • Clear completion rituals

Default approach: Extend existing roadmap with new phases.

  • v1.0 ships (phases 1-4) → add phases 5-6 for v1.1
  • Continuous phase numbering (01-99)
  • Milestone groupings keep roadmap organized

Archive ONLY for: Separate codebases or complete rewrites (rare).

See: references/milestone-management.md

If it sounds like corporate PM theater, delete it.

At 25% remaining: Mention context getting full At 15% remaining: Pause, offer handoff At 10% remaining: Auto-create handoff, stop

Never start large operations below 15% without user confirmation.

Mandatory gates:

  • Before writing PLAN.md (confirm breakdown)
  • After low-confidence research
  • On verification failures
  • After phase completion with issues
  • Before starting next phase with previous issues

See: references/user-gates.md

  • Check for repo on invocation, offer to initialize
  • Commit only at: initialization, phase completion, handoff
  • Intermediate artifacts (PLAN.md, RESEARCH.md, FINDINGS.md) NOT committed separately
  • Git log becomes project history

See: references/git-integration.md

</essential_principles>

<context_scan> Run on every invocation to understand current state:

# Check git status
git rev-parse --git-dir 2>/dev/null || echo "NO_GIT_REPO"

# Check for planning structure
ls -la .planning/ 2>/dev/null
ls -la .planning/phases/ 2>/dev/null

# Find any continue-here files
find . -name ".continue-here.md" -type f 2>/dev/null

# Check for existing artifacts
[ -f .planning/BRIEF.md ] && echo "BRIEF: exists"
[ -f .planning/ROADMAP.md ] && echo "ROADMAP: exists"

If NO_GIT_REPO detected: Inline question: "No git repo found. Initialize one? (Recommended for version control)" If yes: git init

Present findings before intake question. </context_scan>

<domain_expertise> Domain expertise lives in ~/.claude/skills/expertise/

Before creating roadmap or phase plans, determine if domain expertise should be loaded.

<scan_domains>

ls ~/.claude/skills/expertise/ 2>/dev/null

This reveals available domain expertise (e.g., macos-apps, iphone-apps, unity-games, nextjs-ecommerce).

If no domain skills found: Proceed without domain expertise (graceful degradation). The skill works fine without domain-specific context. </scan_domains>

<inference_rules> If user's request contains domain keywords, INFER the domain:

KeywordsDomain Skill
"macOS", "Mac app", "menu bar", "AppKit", "SwiftUI desktop"expertise/macos-apps
"iPhone", "iOS", "iPad", "mobile app", "SwiftUI mobile"expertise/iphone-apps
"Unity", "game", "C#", "3D game", "2D game"expertise/unity-games
"MIDI", "MIDI tool", "sequencer", "MIDI controller", "music app", "MIDI 2.0", "MPE", "SysEx"expertise/midi
"Agent SDK", "Claude SDK", "agentic app"expertise/with-agent-sdk
"Python automation", "workflow", "API integration", "webhooks", "Celery", "Airflow", "Prefect"expertise/python-workflow-automation
"UI", "design", "frontend", "interface", "responsive", "visual design", "landing page", "website design", "Tailwind", "CSS", "web design"expertise/ui-design

If domain inferred, confirm:

Detected: [domain] project → expertise/[skill-name]
Load this expertise for planning? (Y / see other options / none)

</inference_rules>

<no_inference> If no domain obvious from request, present options:

What type of project is this?

Available domain expertise:
1. macos-apps - Native macOS with Swift/SwiftUI
2. iphone-apps - Native iOS with Swift/SwiftUI
3. unity-games - Unity game development
4. swift-midi-apps - MIDI/audio apps
5. with-agent-sdk - Claude Agent SDK apps
6. ui-design - Stunning UI/UX design & frontend development
[... any others found in expertise/]

N. None - proceed without domain expertise
C. Create domain skill first

Select:

</no_inference>

<load_domain> When domain selected, use intelligent loading:

Step 1: Read domain SKILL.md

cat ~/.claude/skills/expertise/[domain]/SKILL.md 2>/dev/null

This loads core principles and routing guidance (~5k tokens).

Step 2: Determine what references are needed

Domain SKILL.md should contain a <references_index> section that maps planning contexts to specific references.

Example:

<references_index>
**For database/persistence phases:** references/core-data.md, references/swift-concurrency.md
**For UI/layout phases:** references/swiftui-layout.md, references/appleHIG.md
**For system integration:** references/appkit-integration.md
**Always useful:** references/swift-conventions.md
</references_index>

Step 3: Load only relevant references

Based on the phase being planned (from ROADMAP), load ONLY the references mentioned for that type of work.

# Example: Planning a database phase
cat ~/.claude/skills/expertise/macos-apps/references/core-data.md
cat ~/.claude/skills/expertise/macos-apps/references/swift-conventions.md

Context efficiency:

  • SKILL.md only: ~5k tokens
  • SKILL.md + selective references: ~8-12k tokens
  • All references (old approach): ~20-27k tokens

Announce: "Loaded [domain] expertise ([X] references for [phase-type])."

If domain skill not found: Inform user and offer to proceed without domain expertise.

If SKILL.md doesn't have references_index: Fall back to loading all references with warning about context usage. </load_domain>

<when_to_load> Domain expertise should be loaded BEFORE:

  • Creating roadmap (phases should be domain-appropriate)
  • Planning phases (tasks must be domain-specific)

Domain expertise is NOT needed for:

  • Creating brief (vision is domain-agnostic)
  • Resuming from handoff (context already established)
  • Transition between phases (just updating status) </when_to_load> </domain_expertise>

If handoff found:

Found handoff: .planning/phases/XX/.continue-here.md
[Summary of state from handoff]

1. Resume from handoff
2. Discard handoff, start fresh
3. Different action

If planning structure exists:

Project: [from BRIEF or directory]
Brief: [exists/missing]
Roadmap: [X phases defined]
Current: [phase status]

What would you like to do?
1. Plan next phase
2. Execute current phase
3. Create handoff (stopping for now)
4. View/update roadmap
5. Something else

If no planning structure:

No planning structure found.

What would you like to do?
1. Start new project (create brief)
2. Create roadmap from existing brief
3. Jump straight to phase planning
4. Get guidance on approach

Wait for response before proceeding.

Critical: Plan execution should NOT invoke this skill. Use /run-plan for context efficiency (skill loads ~20k tokens, /run-plan loads ~5-7k).

After reading the workflow, follow it exactly.

BRIEF.md          → Human vision (you read this)
    ↓
ROADMAP.md        → Phase structure (overview)
    ↓
RESEARCH.md       → Research prompt (optional, for unknowns)
    ↓
FINDINGS.md       → Research output (if research done)
    ↓
PLAN.md           → THE PROMPT (Claude executes this)
    ↓
SUMMARY.md        → Outcome (existence = phase complete)

Rules:

  • Roadmap requires Brief (or prompts to create one)
  • Phase plan requires Roadmap (knows phase scope)
  • PLAN.md IS the execution prompt
  • SUMMARY.md existence marks phase complete
  • Each level can look UP for context

<output_structure> All planning artifacts go in .planning/:

.planning/
├── BRIEF.md                    # Human vision
├── ROADMAP.md                  # Phase structure + tracking
└── phases/
    ├── 01-foundation/
    │   ├── 01-01-PLAN.md       # Plan 1: Database setup
    │   ├── 01-01-SUMMARY.md    # Outcome (exists = done)
    │   ├── 01-02-PLAN.md       # Plan 2: API routes
    │   ├── 01-02-SUMMARY.md
    │   ├── 01-03-PLAN.md       # Plan 3: UI components
    │   └── .continue-here-01-03.md  # Handoff (temporary, if needed)
    └── 02-auth/
        ├── 02-01-RESEARCH.md   # Research prompt (if needed)
        ├── 02-01-FINDINGS.md   # Research output
        ├── 02-02-PLAN.md       # Implementation prompt
        └── 02-02-SUMMARY.md

Naming convention:

  • Plans: {phase}-{plan}-PLAN.md (e.g., 01-03-PLAN.md)
  • Summaries: {phase}-{plan}-SUMMARY.md (e.g., 01-03-SUMMARY.md)
  • Phase folders: {phase}-{name}/ (e.g., 01-foundation/)

Files sort chronologically. Related artifacts (plan + summary) are adjacent. </output_structure>

<reference_index> All in references/:

Structure: directory-structure.md, hierarchy-rules.md Formats: handoff-format.md, plan-format.md Patterns: context-scanning.md, context-management.md Planning: scope-estimation.md, checkpoints.md, milestone-management.md Process: user-gates.md, git-integration.md, research-pitfalls.md Domain: domain-expertise.md (guide for creating context-efficient domain skills) </reference_index>

<templates_index> All in templates/:

TemplatePurpose
brief.mdProject vision document with current state
roadmap.mdPhase structure with milestone groupings
phase-prompt.mdExecutable phase prompt (PLAN.md)
research-prompt.mdResearch prompt (RESEARCH.md)
summary.mdPhase outcome (SUMMARY.md) with deviations
milestone.mdMilestone entry for MILESTONES.md
issues.mdDeferred enhancements log (ISSUES.md)
continue-here.mdContext handoff format
</templates_index>

<workflows_index> All in workflows/:

WorkflowPurpose
create-brief.mdCreate project vision document
create-roadmap.mdDefine phases from brief
plan-phase.mdCreate executable phase prompt
execute-phase.mdRun phase prompt, create summary
research-phase.mdCreate and run research prompt
plan-chunk.mdPlan immediate next tasks
transition.mdMark phase complete, advance
complete-milestone.mdMark shipped version, create milestone entry
handoff.mdCreate context handoff for pausing
resume.mdLoad handoff, restore context
get-guidance.mdHelp decide planning approach
</workflows_index>

<success_criteria> Planning skill succeeds when:

  • Context scan runs before intake
  • Appropriate workflow selected based on state
  • PLAN.md IS the executable prompt (not separate)
  • Hierarchy is maintained (brief → roadmap → phase)
  • Handoffs preserve full context for resumption
  • Context limits are respected (auto-handoff at 10%)
  • Deviations handled automatically per embedded rules
  • All work (planned and discovered) fully documented
  • Domain expertise loaded intelligently (SKILL.md + selective references, not all files)
  • Plan execution uses /run-plan command (not skill invocation) </success_criteria>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.76%
按下载量换算34

windsurf

20.73%
按下载量换算24

OpenCode

17.71%
按下载量换算20

Codex

11.35%
按下载量换算13

Antigravity

8.02%
按下载量换算9

Gemini CLI

3.1%
按下载量换算4

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills