con un clic
workflow-plan
Generate implementation plan with commit-level tasks
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Generate implementation plan with commit-level tasks
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Transform verbose natural language requests into structured bilingual documentation (Korean for review + English for AI prompts)
Review current git changes or latest commit using code-reviewer and architect-reviewer agents
Review comments and suggest cleanup (identify unnecessary comments, recommend improvements)
Generate Conventional Commits-compliant messages (feat/fix/docs/chore) in Korean and English
Identify and safely remove dead code, deprecated code, and unused exports from codebase
Generate business rule documentation from domain knowledge and requirements
| name | workflow-plan |
| description | Generate implementation plan with commit-level tasks |
| 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.