一键导入
plan-process
Planning pattern for feature development: active plan structure, issue file format, and archival process when a plan is implemented.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Planning pattern for feature development: active plan structure, issue file format, and archival process when a plan is implemented.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | plan-process |
| description | Planning pattern for feature development: active plan structure, issue file format, and archival process when a plan is implemented. |
The planning workflow for feature development. Each plan lives in a
numbered folder under docs/plans/ with a PLAN.md overview and broken-down
issue files, then gets archived once implemented.
Scan docs/plans/ and docs/plans/archive/ for all existing numbers, take the highest NNN, and add 1:
# Active plan folders (docs/plans/NNN-*/)
ls docs/plans/ | grep -E '^[0-9]+' | sed 's/-.*//' | sort -n | tail -1
# Archived plans (docs/plans/archive/NNN-*.md)
ls docs/plans/archive/ | grep -E '^[0-9]+' | sed 's/-.*//' | sort -n | tail -1
Use the greater of the two +1. Example: if highest is 021, next plan is 022.
docs/plans/NNN-short-name/
PLAN.md # Overview: why, what, approach, scope, task order
01-first-step.md # Actionable issue with objective, files, steps
02-next-step.md # ...
...
PLAN.md — High-level design document covering:
Numbered issue files — Self-contained, actionable work items:
When a plan is fully implemented, consolidate PLAN.md + all issue files into a
single short summary (~20-30 lines), write it to archive/NNN-short-name.md,
then remove the original folder:
# Archive summary includes:
# - 1-2 paragraphs explaining what and why
# - Brief scope bullets (major areas, not every file)
# - Phase/task list (headings only, no detail)
The archive is a flat list of .md files — one per completed plan. Full
implementation details remain in git history.