一键导入
planning
Create and execute phased implementation plans stored in .agents/plans using numbered markdown files with YAML front matter and checklist steps.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and execute phased implementation plans stored in .agents/plans using numbered markdown files with YAML front matter and checklist steps.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | planning |
| description | Create and execute phased implementation plans stored in .agents/plans using numbered markdown files with YAML front matter and checklist steps. |
Use this skill whenever work should be organized into explicit phases and tracked as a plan file.
.agents/plans/.000-first-plan.md001-another-plan.md002-plan-more.mdEvery plan must be a Markdown file with YAML front matter containing:
namedescriptionstepssteps must be a YAML array that represents phases. Each phase should contain a phase name and a checklist of steps.
Recommended structure:
---
name: 000-first-plan
description: Build the pruning extension skeleton.
steps:
- phase: discovery
steps:
- "- [ ] step 1: inspect the repo structure"
- "- [ ] step 2: identify the extension entry points"
- phase: implementation
steps:
- "- [ ] step 1: implement the pruning logic"
- "- [ ] step 2: wire the pruning into context preparation"
- phase: validation
steps:
- "- [ ] step 1: add or update tests"
- "- [ ] step 2: verify the final behavior"
---
The Markdown body should mirror the phased structure for readability. Keep the body and front matter aligned so the plan stays easy to execute.
# 000-first-plan
## Phase 1 — Discovery
- [ ] step 1: inspect the repo structure
- [ ] step 2: identify the extension entry points
## Phase 2 — Implementation
- [ ] step 1: implement the pruning logic
- [ ] step 2: wire the pruning into context preparation
## Phase 3 — Validation
- [ ] step 1: add or update tests
- [ ] step 2: verify the final behavior
.agents/plans/.- [x] in both the body and the front matter if the plan is being kept in sync there.- [ ] step 1: ... when open, - [x] step 1: ... when complete.