workflow

Orchestrates development tasks through classification, planning, wave scheduling, and review gates.

1|1|Updated Jun 24, 2026
One-click install
npx skills add https://github.com/growmax/growmax-skills --skill workflow-growmax
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: workflow
Source: https://github.com/growmax/growmax-skills/tree/main/gmax/skills/workflow
Command: npx skills add https://github.com/growmax/growmax-skills --skill workflow-growmax

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Development tasks often lack a consistent operating procedure, leading to skipped analysis, unreviewed plans, and regressions in shared code. This Skill defines a repeatable pipeline that routes every bug fix or feature through classification, business context, architecture, planning, parallel build waves, and review with explicit human gates. ## Core Features & Use Cases - Task Classification and Entry Paths: Sizes work as trivial, small, standard, or epic, then routes bug fixes and new features through distinct analysis-first or context-first flows. - Wave-Based Parallel Building: Consumes the plan's phase DAG in waves, dispatching up to 3 concurrent builders with disjoint file boundaries and integration gates after each wave. - Session Continuity via STATE.md: Maintains a per-task resume file with stage, phase checkboxes, and next action so any fresh session can pick up exactly where work stopped. - Use Case: A team fixing a multi-file bug uses the pipeline to frame the business context, analyze the codebase, get human approval on the design, build phases in parallel waves, and pass a senior review before close-out. ## Quick Start Ask the orchestrator to drive your next bug fix or feature through the gmax workflow pipeline, starting with classification and a void task folder.

Frequently Asked Questions about workflow

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

FAQPage Schema
How do I structure a bug fix workflow with human approval gates?▼

Start with a business frame comparing expected versus observed behavior, then run codebase analysis to locate the divergence. Present findings to the human for confirmation before the architect designs the fix, and gate again on the design and plan before building.

How to run parallel coding agents on one feature safely?▼

Split the plan into phases where each phase owns one concern and at most five files, then dispatch only phases with disjoint file lists and no overlapping shared entries. Cap concurrency at three builders and run an integration gate after each multi-phase wave.

What is the difference between the bug-fix and feature entry paths?▼

Bug fixes start with codebase analysis hunting the divergence named by the business frame, while features start with the context-architect organizing the developer's description into a confirmed flow. Both converge at architecture design and planning.

How do I resume an interrupted AI coding session?▼

Read the task's STATE.md file, jump to the recorded stage, and read only the artifact that stage consumes. Completed stages are never re-read and their human gates are never re-asked.

When should a task be classified as epic instead of standard?▼

Classify as epic when the work spans multiple concerns requiring several plan files, while standard covers a single feature or bug across multiple files. When in doubt, choose the higher tier since under-ceremony causes regressions.