Table of Contents
cstack is a Codex-native workflow stack inspired by gstack. The goal is simple: give Codex explicit working modes so planning, review, QA, and shipping feel consistent instead of improvised.
What cstack includes
plan-product-reviewfor clarifying the real user outcome and shaping a sharp v1plan-eng-reviewfor architecture, risks, failure modes, and test planningreviewfor bug-focused and regression-focused code reviewshipfor release readiness and last-mile delivery checksqafor quick, standard, or full validation passesretrofor capturing what worked and what should improve next
Why this is useful
AI coding tools are strongest when the task is framed clearly. Product thinking is not the same as engineering planning. Code review is not the same as release execution. cstack makes those modes explicit.
How to use it
- Start with
$plan-product-reviewwhen the request is still fuzzy. - Move to
$plan-eng-reviewwhen the feature direction is clear and implementation needs structure. - Use
$reviewafter coding to catch correctness and regression risks. - Run
$shipbefore merge or release. - Use
$qawhen you want structured validation evidence. - Finish with
$retroif you want to improve the next cycle.
Example workflow
A typical feature flow might look like this:
- Idea arrives ->
$plan-product-review - Architecture locked ->
$plan-eng-review - Implementation complete ->
$review - Release prep ->
$ship - Validation ->
$qa - Learning loop ->
$retro
Installation
The project is available publicly on GitHub:
https://github.com/SilentJMA/codex-cstack
mkdir -p "$CODEX_HOME/skills"
git clone https://github.com/SilentJMA/codex-cstack.git "$CODEX_HOME/skills/cstack"
cd "$CODEX_HOME/skills/cstack"
./setup
The repository includes installation notes for macOS, Linux, Windows PowerShell, and WSL/Git Bash.
AGENTS.md integration
cstack also includes an AGENTS.md snippet that routes planning, review, and shipping to the right skills by default. This is helpful when multiple contributors are working in the same repository.
Resources
FAQ
Is cstack only for Codex?
It is designed for Codex skill triggering and Codex-style workflows.
Do I need all the skills?
No. You can start with review and ship, then add the planning and QA modes as your workflow grows.
Who is this best for?
Builders and teams who want more consistent delivery quality from AI-assisted development.


