بنقرة واحدة
workflow-execute
Execute commit N from plan.md and generate summary
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Execute commit N from plan.md and generate summary
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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-execute |
| description | Execute commit N from plan.md and generate summary |
| disable-model-invocation | true |
$ARGUMENTS
Expected format:
/workflow-execute TASK-NAME N (task name and commit number)/workflow-execute N (commit number only - searches for most recent plan.md)Examples:
/workflow-execute REFACTORING 1/workflow-execute API-REDESIGN 2/workflow-execute 1 (uses most recent plan.md)Parse User Input:
docs/work/WORK-{task-name}/plan.mdplan.md in docs/work/WORK-*/Check Prerequisites:
plan.md existsLoad Context:
Execute Tasks:
Verify:
Generate/Overwrite Summary:
docs/work/WORK-{task-name}/summary-commit-N.mdReport Completion:
CRITICAL: All documents you generate (summary-commit-N.md) MUST be written in Korean.
IMPORTANT: If validation code exists in __prototype__/ directory:
Prototype purpose: Proof of technical feasibility and core idea verification
File to create: docs/work/WORK-{task-name}/summary-commit-N.md
# Commit N: [Title]
> **Written At**: [YYYY-MM-DD HH:mm]
> **Related Plan**: `plan.md` > Commit N
---
## 🎯 Achievement Goal
[1 sentence]
---
## 📝 Changed Files
**Added**:
- `src/new/file.ts`: [Description]
**Modified**:
- `src/existing.ts:45`: [Changes]
**Deleted** (if any):
- `src/old/file.ts`: [Deletion reason]
## 💡 Core Changes
- [Change 1]
- [Change 2]
---
## ✅ Verification Results
**Test Method**:
- [Test content]
**Test Results**:
- [Results]
## 🧪 Edge Cases (if verified)
- [Case 1]: [Expected behavior]
- [Case 2]: [Expected behavior]
---
## 🔑 Technical Decisions (if any)
- **[Technology/Pattern]**: [Selection reason in 1 line]
---
## ⚠️ Caveats (if any)
- [Constraints]
- [Environment variable added]: `KEY=value`
- [Dependency install]: `npm install package`
## 📌 Follow-up Tasks (if any)
- TODO: [Specific content]
plan.md for the complete task list and execution plananalysis.md for deep context (optional but recommended for complex work)summary-commit-N.md to understand if this is a revision__prototype__/ directory (reference code created during validation phase)Now start the task according to the guidelines above.