一键导入
workflow-plan
Generate implementation plan with commit-level tasks. Use after workflow-analyze to create detailed, vertically-sliced commit plan.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate implementation plan with commit-level tasks. Use after workflow-analyze to create detailed, vertically-sliced commit plan.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Transform verbose natural language requests into structured bilingual documentation (Korean for review + English for AI prompts). Use when you need to clarify and structure a complex request before implementation.
Review current git changes or latest commit using code-reviewer and architect-reviewer agents. Use after completing code changes to get comprehensive quality feedback.
Review comments and suggest cleanup (identify unnecessary comments, recommend improvements). Use to aggressively clean up comment debt in code.
Identify and safely remove dead code, deprecated code, and unused exports from codebase. Use when you need to clean up unused or obsolete code.
Generate business rule documentation from domain knowledge and requirements. Use when you need to document complex business logic or domain rules.
Implement UI E2E tests sequentially using Playwright MCP, stop on bug discovery. Use after e2e-ui-research to implement the planned test scenarios.
| name | workflow-plan |
| description | Generate implementation plan with commit-level tasks. Use after workflow-analyze to create detailed, vertically-sliced commit plan. |
| disable-model-invocation | true |
$ARGUMENTS
Expected format: /workflow-plan TASK-NAME [additional requirements]
Example:
/workflow-plan REFACTORING limit to 3 commits/workflow-plan API-REDESIGN keep backward compatibilityYou MUST consider the user input before proceeding (if not empty).
Parse User Input:
Check Prerequisites:
docs/work/WORK-{task-name}/analysis.md existsLoad Requirements:
Identify Impact Scope:
Decompose Commits (Vertical Slicing):
Review Principle Violations:
Write Documents (Dual Language):
docs/work/WORK-{name}/plan.ko.md (Korean - for user reference)docs/work/WORK-{name}/plan.md (English - for agent consumption)CRITICAL: You must generate TWO versions of all documents:
plan.ko.md): For user reference - written in Koreanplan.md): For agent consumption - written in EnglishBoth versions must contain identical structure and information, only the language differs.
Each commit must satisfy:
Horizontal Slicing Forbidden:
Vertical Slicing Example:
→ We apply as Commit order
Files to create:
docs/work/WORK-{task-name}/plan.ko.md (Korean version)docs/work/WORK-{task-name}/plan.md (English version)# [Task Name] - Implementation Plan
> **Analysis Result**: See `analysis.md`
> **Selected Approach**: [Approach N]
## Impact Scope (Approximate)
**Main Areas**: [StatusBarManager, ConfigManager, etc.]
---
## Commit Plan
### Commit 1: [Title]
**Goal**: [1 sentence - describe complete value provided by this commit]
**Task Checklist**:
- [ ] [Specific task 1]
- [ ] [Specific task 2]
- [ ] Test: [Test content]
- [ ] Build verification: [Build command]
**Verification Method**:
1. [Specific verification method]
2. [User scenario]
**Independently Deployable**: ✅ / ⚠️ [Reason]
---
### Commit 2: [Title]
**Goal**: [1 sentence - describe complete value provided by this commit]
**Task Checklist**:
- [ ] [Specific task 1]
- [ ] [Specific task 2]
- [ ] Test: [Test content]
- [ ] Build verification: [Build command]
**Verification Method**:
1. [Specific verification method]
2. [User scenario]
**Independently Deployable**: ✅ / ⚠️ [Reason]
---
## Principle Violation Justification (Only if needed)
| Violation | Why Necessary | Why Simple Alternative Rejected |
| --------- | ---------------------------- | ------------------------------- |
| Using any | VS Code API types incomplete | Cost to fix @types > benefit |
---
## Progress
- [ ] Commit 1
- [ ] Commit 2
Now start the task according to the guidelines above.