workflow-execute

Execute a specific commit from plan.md and generate a Korean summary document.

1|Updated Mar 8, 2026
One-click install
npx skills add https://github.com/kubrickcode/cine-mirror --skill workflow-execute-kubrickcode
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: workflow-execute
Source: https://github.com/kubrickcode/cine-mirror/tree/main/.agents/skills/workflow-execute
Command: npx skills add https://github.com/kubrickcode/cine-mirror --skill workflow-execute-kubrickcode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It removes the manual overhead of implementing individual commits from an implementation plan by executing checklist items, running tests, and auto-generating a structured summary document for each commit. ## Core Features & Use Cases - Plan-Driven Execution: Reads plan.md from docs/work/{task-name}/ and executes the checklist for a specified commit number, with support for locating the most recent plan automatically. - Test Discipline Enforcement: Follows the Test Requirement declared in the plan (TDD, TEST-AFTER, or NO-TEST) and enforces atomic commits containing tests and implementation together. - Automated Summary Generation: Creates or overwrites summary-commit-N.md in Korean, documenting changed files, verification results, technical decisions, and follow-up tasks. - Use Case: After running /workflow-plan to produce a plan for a refactoring task, invoke /workflow-execute REFACTORING 1 to implement commit 1, run its tests, and produce a summary without manual bookkeeping. ## Quick Start Ask the AI to run /workflow-execute with your task name and commit number, for example /workflow-execute API-REDESIGN 2, to implement that commit and generate its summary.

Frequently Asked Questions about workflow-execute

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute a specific commit from an implementation plan?▼

Run /workflow-execute with the task name and commit number, such as /workflow-execute REFACTORING 1. It reads the checklist for that commit in docs/work/{task-name}/plan.md, implements the items, runs tests, and writes a summary document.

How do I run a plan commit without specifying the task name?▼

Pass only the commit number, for example /workflow-execute 1. The command searches docs/work/*/ for the most recently modified plan.md and uses it. If none exists, it errors and asks for the task name.

What happens if plan.md does not exist for my task?▼

Execution stops with an error telling you to run /workflow-plan first for that task. The plan file is a required prerequisite because it contains the checklist and test requirements for each commit.

Does it support TDD workflows when implementing commits?▼

Yes. It follows the Test Requirement declared in plan.md: TDD writes a failing test first then implements, TEST-AFTER implements then writes tests, and NO-TEST skips tests. Tests and implementation must land in the same atomic commit.

What language are the generated summary documents written in?▼

All generated summary-commit-N.md documents must be written in Korean. This is a strict rule in the skill, covering achievement goals, changed files, verification results, and follow-up tasks.

Can I rerun a commit that already has a summary file?▼

Yes. If summary-commit-N.md already exists, the skill treats it as a revision cycle, reads the existing file for context, and overwrites it so only the final state is kept.