What: Open-source Claude Code skill pack by YC CEO Garry Tan
Stars: 85,000+ GitHub stars (as of April 2026)
Install: one command, ~30 seconds
Core claim: 810× logical code output vs 2013 pace
License: MIT, free forever
What Is GStack?
If you search for “GStack,” you will see people describing it as a Claude Code setup, a workflow, or even an AI engineering team. All of those are partially correct, but they miss the core idea.
GStack is a structured development system built on top of Claude Code.
It does not replace Claude. It organizes how Claude works.
Instead of giving vague prompts like “build a login system,” GStack forces you into a sequence of roles and decisions. Each role is encoded as a skill, which is essentially a Markdown prompt template with strict expectations.
These skills are triggered using slash commands such as:
/office-hours/plan-ceo-review/review/qa/ship
Each one transforms the AI’s behavior.
For example:
/office-hoursforces strategic thinking/plan-eng-reviewforces architectural rigor/reviewforces production-level code scrutiny
This is why GStack feels different from tools like Copilot or Cursor.
Those tools focus on:
writing code faster
predicting what you will type
GStack focuses on:
making better decisions
reducing mistakes before they happen
structuring the entire lifecycle of building software
In simple terms:
Copilot helps you type faster.
GStack helps you build smarter.
If you want a base understanding of the underlying system, see [Claude Code guide]. For a broader comparison, refer to [AI coding tools comparison].
Who Built GStack and Why?
GStack was created by Garry Tan, CEO of Y Combinator.
His background explains why GStack exists:
CEO of YC since 2022
Early employee at Palantir
Designed Palantir’s logo
Co-founded Posterous, acquired by Twitter
Built Bookface, YC’s internal platform, solo
Garry Tan is not just a manager. He is a builder who has repeatedly worked at high speed.
In 2026, he shared results that got attention:
810× increase in logical code output compared to 2013
Built 3 production services and 40 features in 60 days, part-time
Instead of keeping that workflow private, he turned it into GStack.
The core idea is simple:
Great builders follow repeatable mental models.
GStack encodes those models into AI-readable workflows.
This is why GStack is not just a tool. It is a codified mindset.
How to Install GStack (Step-by-Step)
Before you install GStack, you need a working Claude Code environment.
Prerequisites
Claude Code CLI: https://docs.anthropic.com/en/docs/claude-code
Git installed
Bun v1.0+
Node (required on Windows)
Anthropic API access
Global Install (30 seconds)
git clone --single-branch --depth 1 \
https://github.com/garrytan/gstack.git \
~/.claude/skills/gstack \
&& cd ~/.claude/skills/gstack && ./setupThis installs GStack globally for your user.
Install Inside a Project
cp -Rf ~/.claude/skills/gstack .claude/skills/gstack \
&& rm -rf .claude/skills/gstack/.git \
&& cd .claude/skills/gstack && ./setupThis is useful when working with teams. Everyone gets the same skills automatically.
Install for Other Agents
git clone --single-branch --depth 1 \
https://github.com/garrytan/gstack.git \
.agents/skills/gstack \
&& cd .agents/skills/gstack && ./setup --host codexSupported hosts include:
Codex
Cursor
Gemini
Opencode
Factory
Slate
Kiro
What Happens During Installation?
When you run the setup script, GStack installs:
Skill files into~/.claude/skills/gstack/
A lightweight browser (~58MB)
Required dependencies
Important:
No background processes
No system-level changes
No PATH modifications
After installation, you will be prompted to update your CLAUDE.md file.
Upgrading GStack
Inside Claude Code:
/gstack-upgradeAll GStack Skills Explained (Complete Overview)
GStack currently includes 23 core workflow skills plus utility commands. Each skill activates a different role.
Planning and Strategy Skills
/office-hours
This is the starting point.
It forces you to answer six critical questions about your idea. It challenges assumptions and reframes the problem.
Think of it as YC office hours with an AI partner.
/plan-ceo-review
This skill evaluates your idea like a founder.
It introduces four modes:
Scope expansion
Selective expansion
Hold scope
Scope reduction
This prevents overbuilding or underbuilding.
/plan-eng-review
This is where engineering rigor kicks in.
It forces:
architecture clarity
system diagrams
edge case coverage
test planning
/plan-design-review
Focuses on UI and UX.
It scores your design and explains what a perfect version would look like.
/autoplan
This chains all planning skills into one command.
It reduces friction and ensures consistency.
Design Skills
/design-consultation
Creates a design system from scratch.
Outputs a DESIGN.md file that becomes your reference.
/design-shotgun
Generates multiple design directions.
You choose the best one. The system learns your taste over time.
/design-html
Converts designs into production-ready HTML.
Works with frameworks like React, Vue, and Svelte.
/design-review
Runs a detailed UI audit.
Fixes issues and improves visual consistency.
Code Review and Debugging
/review
Acts like a senior engineer reviewing your code.
Finds:
performance issues
race conditions
missing indexes
unsafe logic
/investigate
For debugging.
It prevents random fixes and enforces structured debugging.
/codex
Uses a different AI model for a second opinion.
This reduces blind spots.
QA and Testing
/qa
Uses a real browser to test your app.
Finds bugs and fixes them automatically.
/qa-only
Same as above but generates a report only.
Deployment and Release
/ship
Automates release steps:
sync
test
push
PR creation
documentation updates
/land-and-deploy
Completes deployment and verifies production.
/canary
Monitors your app after deployment.
/document-release
Keeps documentation aligned with code.
Security and Performance
/cso
Runs security audits based on OWASP principles.
/benchmark
Measures performance and tracks improvements.
Browser and Agent Skills
/browse
Headless browser automation.
/open-gstack-browser
Full browser with sidebar AI agent.
/pair-agent
Allows multiple AI agents to collaborate in a shared browser.
Memory and Retrospective
/retro
Weekly performance review.
/learn
Stores long-term learnings and patterns.
Utility Commands
Includes:
/careful
/freeze
/guard
/unfreeze
/setup-browser-cookies
/setup-deploy
/setup-gbrain
/gstack-upgrade
The GStack Sprint Workflow
GStack works best when used as a full system.
A typical workflow:
/office-hoursto refine idea/autoplanto structure work
Build using Claude Code/reviewto catch issues/codexfor validation/qafor testing/csofor security/shipto release/land-and-deployto deploy/canaryto monitor/retroto improve
This compresses an entire engineering team into a repeatable process.
GStack Results and Stats
85,000+ GitHub stars
12,500+ forks
39,000 stars in 11 days
30,000+ daily users
Built with TypeScript (79.6%) and Go (18.3%)
Performance claims:
10,000+ lines per week
3 production systems in 60 days
810× increase vs earlier workflows
GStack vs Other AI Coding Tools

Who Should Use GStack?
Best for:
Solo founders
Indie hackers
Small teams
Builders who want leverage
Not ideal for:
Large teams with defined roles
Developers who want minimal setup
FAQ (People Also Ask)
What is GStack?
GStack is a workflow system for Claude Code that organizes AI development into structured roles.
Is GStack free?
Yes. It is open source under the MIT license.
What is the install command for GStack?
Use the Git clone command provided in this guide.
Does GStack work with Cursor or Codex?
Yes. It supports multiple AI agents and environments.
What is /plan-ceo-review in GStack?
It is a strategic planning skill that evaluates product scope and direction.
How is GStack different from GitHub Copilot?
Copilot helps write code. GStack structures how software is built end to end.
Who created GStack?
Garry Tan, CEO of Y Combinator.
What are the requirements to use GStack?
Claude Code, Git, Bun, and an API key.
Quick Start
Step 1: Install GStack
Step 2: Run /office-hours
Step 3: Run /autoplan
If you use GStack casually, it will feel like a better prompt system.
If you use it fully, it becomes something else entirely:
A system that turns one developer into a structured, high-output engineering team.

