一键导入
view-plan
View a plan's tasks and progress, regardless of output format.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
View a plan's tasks and progress, regardless of output format.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bridge skill for the feature pipeline. Runs pre-flight checks for implementation and invokes the technical-implementation skill. Called by continue-feature — not directly by users.
Bridge skill for the feature pipeline. Runs pre-flight checks for planning and invokes the technical-planning skill. Called by continue-feature — not directly by users.
Bridge skill for the feature pipeline. Runs pre-flight checks for review and invokes the technical-review skill. Called by continue-feature — not directly by users.
Continue a feature through the pipeline. Routes to the next phase (specification, planning, or implementation) based on artifact state. Can be invoked manually or from plan mode bridges.
Scan all plans and wire up cross-topic dependencies. Finds unresolved external dependencies, matches them to tasks in other plans, and updates both the plan index and output format.
Run migrations to keep workflow files in sync with the current system design. This skill is mandatory before running any workflow skill.
| name | view-plan |
| description | View a plan's tasks and progress, regardless of output format. |
| disable-model-invocation | true |
| hooks | {"PreToolUse":[{"hooks":[{"type":"command","command":"$CLAUDE_PROJECT_DIR/.claude/hooks/workflows/system-check.sh","once":true}]}]} |
Display a readable summary of a plan's phases, tasks, and status.
If no topic is specified, list available plans:
ls .workflows/planning/
Ask the user which plan to view.
Read the plan file from .workflows/planning/{topic}/plan.md and check the format: field in the frontmatter.
Load the format's reading reference:
../technical-planning/references/output-formats/{format}/reading.md
This file contains instructions for reading plans in that format.
Follow the reading reference to locate and read the actual plan content.
Display a readable summary:
Output the next fenced block as a code block:
Plan: {topic}
**Format:** {format}
### Phase 1: {phase name}
- [ ] Task 1.1: {description}
- [x] Task 1.2: {description}
### Phase 2: {phase name}
- [ ] Task 2.1: {description}
...
Show:
Keep it scannable - this is for quick reference, not full detail.