Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 2.37 KB

File metadata and controls

52 lines (40 loc) · 2.37 KB

gstack — AI Engineering Workflow

gstack is a collection of SKILL.md files that give AI agents structured roles for software development. Each skill is a specialist: CEO reviewer, eng manager, designer, QA lead, release engineer, debugger, and more.

Available skills

Skills live in .agents/skills/. Invoke them by name (e.g., /office-hours).

Skill What it does
/office-hours Start here. Reframes your product idea before you write code.
/plan-ceo-review CEO-level review: find the 10-star product in the request.
/plan-eng-review Lock architecture, data flow, edge cases, and tests.
/plan-design-review Rate each design dimension 0-10, explain what a 10 looks like.
/design-consultation Build a complete design system from scratch.
/review Pre-landing PR review. Finds bugs that pass CI but break in prod.
/debug Systematic root-cause debugging. No fixes without investigation.
/design-review Design audit + fix loop with atomic commits.
/qa Open a real browser, find bugs, fix them, re-verify.
/qa-only Same as /qa but report only — no code changes.
/ship Run tests, review, push, open PR. One command.
/document-release Update all docs to match what you just shipped.
/retro Weekly retro with per-person breakdowns and shipping streaks.
/browse Headless browser — real Chromium, real clicks, ~100ms/command.
/setup-browser-cookies Import cookies from your real browser for authenticated testing.
/careful Warn before destructive commands (rm -rf, DROP TABLE, force-push).
/freeze Lock edits to one directory. Hard block, not just a warning.
/guard Activate both careful + freeze at once.
/unfreeze Remove directory edit restrictions.
/gstack-upgrade Update gstack to the latest version.

How to install

$mkdir -p .agents/skills && cd .agents/skills && git clone --single-branch --depth 1 https://github.com/garrytan/gstack.git
$cd gstack && ./setup --host codex

This repository uses repo-local gstack skills for Codex.

The local install lives under .agents/skills/ and is intentionally gitignored. If the skills are missing or stale, refresh them with:

cd .agents/skills/gstack && ./setup --host codex

Use the repo-local gstack skills from this checkout when they are relevant.