ワンクリックで
workflow-execute
Execute commit N from plan.md and generate summary. Use to implement a specific commit from the implementation plan.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Execute commit N from plan.md and generate summary. Use to implement a specific commit from the implementation 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-execute |
| description | Execute commit N from plan.md and generate summary. Use to implement a specific commit from the implementation plan. |
| 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.