workflow-auto

Chains analyze, plan, execute, and commit phases into one uninterrupted workflow.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running a multi-phase development workflow normally requires manually approving each transition between analysis, planning, execution, and committing. This Skill removes those intermediate approval gates for small tasks so the entire pipeline runs in one pass. ## Core Features & Use Cases - Sequential Phase Execution: Runs workflow-analyze, workflow-plan, workflow-execute, and commit in order without stopping for approval. - Single-Commit Constraint: Restricts planning to one commit with vertical slicing, automatically generating the commit message at the end. - Structured Documentation: Produces analysis.md, plan.md, summary-commit-1.md, and commit_message.md under docs/work/{task-name}/. - Use Case: You have a small bug fix or minor refactor that fits in one commit. Invoke this Skill with the task description and it analyzes, plans, implements, and commits the change without requiring you to review each phase. ## Quick Start Ask the assistant to run the auto workflow on your small task, for example: run workflow-auto to fix the login redirect bug and commit it in a single commit.

Frequently Asked Questions about workflow-auto

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

FAQPage Schema
How do I run a full development workflow without approving each phase?▼

Invoke workflow-auto with your task description and it executes analyze, plan, execute, and commit phases sequentially without stopping for approval. Each phase follows its original skill's exact process and templates.

When should I use workflow-auto instead of individual workflow commands?▼

Use workflow-auto for small tasks completable in one commit when you want to skip manual phase transitions. For complex features needing multiple commits or tasks requiring validation, use the individual workflow commands instead.

Can workflow-auto split a task into multiple commits?▼

No, workflow-auto restricts planning to a single commit using vertical slicing only. If your task requires commit splitting, run the individual workflow-plan and workflow-execute commands instead.

What documents does the automated workflow generate?▼

It creates analysis.md, plan.md, and summary-commit-1.md in Korean under docs/work/{task-name}/, plus a commit_message.md file. Each document follows the exact template from its corresponding phase skill.

What are the limitations of workflow-auto?▼

It is not suited for complex features requiring multiple commits, tasks needing validation via workflow-validate, or situations where you want to review the analysis or plan before execution begins.