Back to Explore

GStack

AI Coding Agents

Use Garry Tan's exact Claude Code setup

💡 gstack turns Claude Code from one generic assistant into a team of specialists you can summon on demand. Six opinionated workflow skills for Claude Code. Plan review, code review, one-command shipping, browser automation, and engineering retrospectives — all as slash commands.

"Give the same Claude Code different 'brains' for different stages, turning a solo assistant into a full-scale engineering squad."

30-Second Verdict
What is it: Y Combinator CEO Garry Tan has open-sourced his complete workflow for writing 10K lines of code per week using Claude Code.
Worth attention: If you use Claude Code, this is currently the most mature workflow enhancement available. With 14.1k GitHub stars, an MIT license, and one-command installation, it's been dogfooded by the YC CEO for 50 days—quality is guaranteed.
9/10

Hype

9/10

Utility

7

Votes

Product Profile
Full Analysis Report

GStack: How the YC CEO Turned Claude Code into a Full Engineering Team

2026-03-16 | ProductHunt | GitHub | 229+ PH Votes | 14.1k GitHub stars

GStack Product Intro

Screenshot Breakdown: GStack's core landing page, listing 6 major pain points "without gstack"—AI never asks if you're building the right thing, inconsistent review depth, shipping becomes a mess, it can't see your app, and QA is entirely manual. These are the problems it solves.


30-Second Quick Judgment

What is it?: Y Combinator CEO Garry Tan has open-sourced his complete workflow for writing 10K lines of code and merging 100 PRs per week using Claude Code. It features 8 slash commands that play roles like CEO, Tech Lead, Staff Engineer, and QA Engineer, giving Claude Code different "brains" for different stages of development.

Is it worth watching?: If you're already using Claude Code, this is the most mature workflow enhancement available, bar none. 14.1k GitHub stars, MIT license, and one-line installation. It's been dogfooded by the YC CEO for 50 days, so quality is guaranteed. However, if you use Cursor, Copilot, or Codex, this isn't for you.


Three Questions for Me

Is it relevant to me?

Target Users:

  • Indie developers and small teams using Claude Code daily.
  • Developers wanting to improve AI coding quality but unsure how to tune prompts.
  • Those frustrated by Claude Code's "one-size-fits-all" mode.

Am I the target? You are if you meet any of these criteria:

  • You use Claude Code but find it often works without asking "why."
  • You ask Claude to "review my PR," but the depth varies every time.
  • You want the AI to help with QA, but it can't see what your page looks like.

When would I use it?:

  • Before starting a new feature → /plan-ceo-review to think through the direction.
  • During architectural design → /plan-eng-review to lock down data flows and boundaries.
  • Before submitting a PR → /review to let a "paranoid Staff Engineer" find flaws.
  • Before releasing → /ship to run through a release checklist with one command.
  • To see actual app results → /browse for 200ms screenshot verification.

Is it useful to me?

DimensionBenefitCost
TimeGarry Tan claims efficiency increased several-fold, up to 17K LOC/day.Learning 8 commands + installing Bun, ~15 mins.
MoneyFree and open-source (MIT).Requires an existing Claude Code subscription.
EffortNo need to design your own prompt workflows; use it out of the box.Strong constraints; you must adopt Garry Tan's workflow philosophy.

ROI Judgment: If you're already paying for Claude Code, the marginal cost of installing gstack is nearly zero. A 15-minute setup gets you 50 days of tuning from the YC CEO. Simply put, it's a no-brainer.

Is it engaging?

What's the 'Wow' factor?:

  • The "Aha!" moment of role switching: The first time you use /plan-ceo-review and Claude asks, "Are you sure this feature actually matters to users?" you'll realize how "scary-obedient" previous versions were.
  • 200ms Browser Automation: /browse allows Claude to actually see your page, take screenshots, click, and verify rendering—it's no longer "half-blind."
  • Security Review Surprises: One CTO reported that the engineering review found an XSS vulnerability the team hadn't even noticed.

Real User Feedback:

Positive: "Your gstack is crazy. This is like god mode. Your eng review discovered a subtle cross site scripting attack that I don't even think my team is aware of." — A CTO friend of Garry Tan (Source)

Positive: "shipped full stack apps with it and it holds up" — Senior TypeScript developer

Critique: "This new release of GStack is for all the haters on Product Hunt who said it was just a bunch of markdown files" — Garry Tan's personal clapback (Source, 797 likes)


For Independent Developers

Tech Stack

  • Core: Claude Code native Skills system (slash commands defined in Markdown).
  • Browser: Persistent Chromium daemon compiled with Bun + Playwright (localhost HTTP communication).
  • Runtime: Bun v1.0+ (3-5s cold start, 100-200ms thereafter).
  • Integration: Greptile (automatically reads and categorizes PR comments).
  • Parallelism: Conductor multi-session system, supporting 15-20 parallel sessions.

Core Implementation

The technical heart of gstack isn't just the Markdown files—it's the browser subsystem. Traditional solutions start a new browser for every call; gstack runs a persistent headless Chromium daemon via localhost HTTP. This keeps cookies, tabs, localStorage, and login states persistent. /browse is implemented with a Playwright binary compiled by Bun, making it 20x faster than the Claude for Chrome MCP with no context bloat.

The workflow is an ordered pipeline: CEO reviews product direction → Tech Lead defines architecture → Engineer implements → QA tests → Ship deploys. Each stage uses a different prompt persona, ensuring Claude thinks with the right "brain" for that phase.

Open Source Status

  • Fully Open Source: MIT License
  • GitHub: garrytan/gstack — 14.1k stars, 1.6k forks
  • Build-it-yourself Difficulty: Medium. The Markdown skills are easy to copy, but the browser daemon + Bun + Playwright integration takes 1-2 weeks. Forking is much more efficient.
  • Runtime-agnostic: Garry Tan found it compatible with Python agents, not just Rails/Node.

Business Model

  • Monetization: None. Purely open source, not for sale.
  • Garry Tan's Goal: Ecosystem building + personal branding + driving Claude Code adoption.
  • Hidden Costs: Requires a Claude Code subscription (Max plan at $200/month or API pay-as-you-go).

Giant Risk

Anthropic could easily build this workflow into Claude Code natively. However, gstack's advantage is being opinionated—it's not a general tool, but a specific engineering philosophy. Even if Anthropic builds similar features, the community might stick with gstack, much like how people use Airbnb's config even though ESLint has Prettier.


For Product Managers

Pain Point Analysis

  • Problem Solved: AI coding assistants working in the same mode across different stages, leading to shallow planning, lax reviews, and unstable deployments.
  • Severity: High-frequency essential need. Every Claude Code user encounters this daily. Garry Tan's quote: "Planning is not review. Review is not shipping. Founder taste is not engineering rigor."
  • PMF Validation: 14.1k stars in < 1 week, with multiple teams independently reaching the same conclusion.

User Persona

  • Core User: Heavy Claude Code users (indie devs, startup CTOs, full-stack engineers).
  • Secondary User: Developers wanting to learn top-tier workflows (the "copy the YC CEO's setup" narrative is highly attractive).
  • Scenarios: Full-time coding + side project development.

Feature Breakdown

FeatureTypeDescription
/plan-ceo-reviewCoreCEO perspective product review, looking for 10-star experiences.
/plan-eng-reviewCoreArchitecture, data flow, and boundary analysis.
/reviewCoreParanoid code review + Greptile integration.
/shipCoreOne-click PR + deployment checklist.
/browseCore200ms persistent browser for visual verification.
/qaCoreAutomated QA testing.
/setup-browser-cookiesUtilityBrowser cookie import.
/retroUtilityEngineering retrospective/review.

Competitive Differentiation

DimensionGStackTurboDocxCursor RulesDIY Skills
Core DifferenceRole-based pipelineMulti-agent parallelIDE-level rulesCustom prompts
InstallationOne-line commandComplex configBuilt-inEntirely manual
BrowserPersistent daemon (200ms)NoneNoneMust build own
Constraint LevelHighMediumLowTotal freedom
PlatformClaude Code onlyMulti-platformCursor onlyAny

Key Takeaways

  1. Role separation is a key insight: Separating plan/review/ship yields much better results than mixing them. This concept can be ported to any AI coding tool.
  2. Persistent browser daemon: 100-200ms response times after cold start can be used in any scenario requiring frequent browser automation.
  3. "Brian Chesky Mode": Making the AI question if you're even doing the right thing before doing it—this product mindset is worth adopting for all AI tools.
  4. One-line installation + zero config: Minimizing the barrier to adoption to the extreme.

For Tech Bloggers

Founder Story

  • Garry Tan: Born in 1981 in Winnipeg, Canada. His father was a Chinese-Singaporean machinist, and his mother was a Chinese-Burmese nurse. He taught himself to code at 14 and found his first job by cold-calling the Yellow Pages. Stanford CS grad.
  • Career Path: Palantir employee #10 (designed the logo) → Founded Posterous (acquired by Twitter) → Founded Initialized Capital (invested in Coinbase, Instacart, Flexport) → Returned to YC as CEO in 2023.
  • Forbes Midas List: 2018-2023, #6 seed investor.
  • Why build gstack?: After 50 days of personally writing massive amounts of code with Claude Code (10K LOC/week, 100 PRs/week), he open-sourced his best practices. He says, "It's 2026 and unbelievable power is in an open github repo with a few markdown files."

Controversies / Discussion Angles

  • "Just a bunch of Markdown files": The biggest controversy on Product Hunt. Critics say it's not a product, just prompt files. Garry Tan countered by updating the browser daemon and evals system.
  • Quality vs. Quantity: 17K LOC/day vs. 35% test code. Amazon has already scaled back AI usage due to code quality issues. What does this number actually signify?
  • Is the YC CEO still coding?: This is a topic in itself. YC has invested in thousands of companies—does the CEO really have time to code on weekends? Is he a true builder or just a spokesperson for Claude Code?
  • Platform Lock-in: Only works with Claude Code. This is a major pain point for Cursor/Copilot users.

Hype Data

  • ProductHunt: 229-327 votes (growing).
  • GitHub: 14.1k stars, 1.6k forks (in < 1 week).
  • Twitter: Launch tweet has 797 likes; Garry Tan updates frequently.
  • HackerNews: Positive discussion; Garry Tan noted he "didn't get roasted too hard."
  • Media: Coverage from MarkTechPost, SitePoint (2 articles), Medium (2 articles), TikTok, TopAIProduct, and more.
  • TikTok: GitHub Awesome channel featured a video introduction.

Content Suggestions

  • Angles: "The YC CEO's Coding Methodology" / "Claude Code Best Practices" / "AI Programming: From Tools to Workflows."
  • Viral Potential: AI Coding + YC + Garry Tan's personal brand provides triple the traffic potential. The uniqueness depends on whether you can provide a real review after trying it yourself.

For Early Adopters

Pricing Analysis

TierPriceFeatures IncludedIs it enough?
GStack CoreFree (MIT)All 8 skills + browser daemonFully sufficient
Claude Code Max$200/monthUnlimited Claude Code usageRecommended for heavy users
Claude Code APIPay-as-you-goPay per callGood for light users

Hidden Costs: Bun installation + Git clone. If your project team uses it, everyone needs to run ./setup.

Onboarding Guide

  • Setup Time: 15 minutes.
  • Learning Curve: Low (if you're already familiar with Claude Code slash commands).
  • Steps:
    1. Ensure Claude Code, Git, and Bun v1.0+ are installed.
    2. Paste the installation command into Claude Code (one line).
    3. Run ./setup to compile the browser binary.
    4. Start by trying /plan-ceo-review.

Pitfalls and Critiques

  1. "Just markdown files": At its core, it is indeed prompt files; the browser daemon is where the technical value lies. Don't expect magic; it simply saves you the time of writing prompts yourself.
  2. Platform Lock-in: Completely tied to Claude Code. Cursor users shouldn't bother.
  3. Model Error Rates: The 1-5% error rate of frontier models can amplify in a pipeline; human oversight remains essential.
  4. Lack of Specification Layer: There is no machine-verifiable "definition of correct"; QA and reviews rely on prompt guidance rather than formal verification.
  5. Opinionated Constraints: If your project workflow differs significantly from Garry Tan's, it may require heavy customization.

Security and Privacy

  • Data Storage: Entirely local. Code stays on your machine and doesn't pass through third parties.
  • Browser Cookies: /setup-browser-cookies imports cookies from your Mac's browser; be mindful of security.
  • API Calls: Code content is sent to the Anthropic API (this is Claude Code's native behavior, not an extra gstack action).

Alternatives

AlternativeProsCons
DIY Claude Code SkillsFully customizedRequires heavy prompt engineering experience
awesome-claude-codeDiverse, pick-and-chooseNon-systemic, no synergy between skills
TurboDocxMore thorough multi-agent reviewComplex config, no browser automation
Cursor RulesNative IDE supportDifferent ecosystem, no role separation concept

For Investors

Market Analysis

  • AI Code Tools Market: $34.58B (2026) → $91.3B (2032), CAGR 17.52%.
  • Developer Adoption: 91% of engineering organizations have adopted at least one AI coding tool; 51% of developers use them daily.
  • Drivers: Improved model capabilities (from autocomplete to end-to-end orchestration), pressure for dev efficiency, and the rise of AI-native developers.

Competitive Landscape

TierPlayersPositioning
LeadersGitHub Copilot, CursorIDE-level AI coding
Mid-tierClaude Code, Codex, ClineCLI/Agent-level coding
Workflow LayerGStack, TurboDocx, awesome-claude-codeClaude Code workflow enhancement

Timing Analysis

  • Why now?: Claude Code's Skills system has just matured enough to support complex workflows. Early 2026 is the turning point for AI programming, and the workflow layer is the next battleground.
  • Tech Maturity: Underlying models (Claude Opus 4.6, etc.) have the reasoning power to support role-based prompts. Browser automation (Playwright + Bun) is now stable.
  • Market Readiness: Developers are moving from "trying AI coding" to "how to use AI coding well." Workflow tools fill this gap.

Team Background

  • Founder: Garry Tan, YC CEO, #6 on Forbes Midas List.
  • Team: Personal project, no independent team.
  • Track Record: Early Palantir employee, Posterous (acquired by Twitter), Initialized Capital (invested in Coinbase/Instacart/Flexport).

Funding Status

  • Non-commercial Project: No funding needs, purely open source.
  • Investment Angle: This isn't an investable company, but an ecosystem signal—the value of AI coding is shifting from the model layer to the workflow layer. It's worth watching who will turn this model into a paid SaaS.

Conclusion

GStack isn't just a product; it's a manifesto: the future of AI coding isn't about model strength, but workflow orchestration.

Garry Tan has proven with 50 days of data and 14.1k stars that adding "role separation" to Claude Code transforms it from an "obedient but mindless intern" into a "specialized engineering team." This insight is simple yet profound.

User TypeRecommendation
DevelopersHighly Recommended — If you use Claude Code, there's no reason not to install it. Free, 15 mins, dogfooded by the YC CEO. Better if customized after forking.
Product ManagersWorth Studying — The "role separation" concept can be ported to any AI tool design. Pay attention to the "Brian Chesky Mode" in /plan-ceo-review.
BloggersGreat Topic — YC CEO + AI Coding + Open Source = Triple traffic. The controversy ("just markdown files" vs. actual results) provides a great discussion angle.
Early AdoptersTry Now — Zero cost, zero risk. But manage expectations: it makes Claude Code more disciplined, not omnipotent.
InvestorsWatch the Signal — Not investable (non-commercial), but it validates the market demand for the "AI coding workflow layer." Whoever turns this into SaaS is worth a look.

Resource Links

ResourceLink
Official Site/GitHubhttps://github.com/garrytan/gstack
ProductHunthttps://www.producthunt.com/products/gstack
Garry Tan Twitterhttps://x.com/garrytan
MarkTechPost Reporthttps://www.marktechpost.com/2026/03/14/garry-tan-releases-gstack-an-open-source-claude-code-system-for-planning-code-review-qa-and-shipping/
SitePoint Tutorialhttps://www.sitepoint.com/gstack-claude-code-setup/
HackerNews Discussionhttps://news.ycombinator.com/item?id=47355173
Medium Analysishttps://agentnativedev.medium.com/garry-tans-gstack-running-claude-like-an-engineering-team-392f1bd38085
TurboDocx Comparisonhttps://www.turbodocx.com/blog/garry-tan-gstack
Original LinkedIn Posthttps://www.linkedin.com/posts/garrytan_i-just-open-sourced-my-entire-claude-code-activity-7437871520024199168-Q_eY

2026-03-16 | Trend-Tracker v7.3 | Based on 9 searches + 7 Twitter posts + 5 images

One-line Verdict

GStack isn't just a product; it's a manifesto: the future of AI coding isn't about model strength, but workflow orchestration.

FAQ

Frequently Asked Questions about GStack

Y Combinator CEO Garry Tan has open-sourced his complete workflow for writing 10K lines of code per week using Claude Code.

The main features of GStack include: /plan-ceo-review: Product review from a CEO perspective, /plan-eng-review: Architecture, data flow, and boundary analysis, /review: Paranoid code review, /ship: One-click PR and deployment checklist, /browse: 200ms persistent browser for visual verification, /qa: Automated QA testing.

GStack itself is free (MIT), but requires Claude Code Max ($200/month) or API pay-as-you-go.

Indie devs and small teams using Claude Code daily; developers wanting to improve AI code quality but unsure how to tune prompts; those frustrated by Claude Code's 'one-size-fits-all' mode.

Alternatives to GStack include: TurboDocx (multi-agent parallel), Cursor Rules (IDE-level rules), DIY Skills (custom prompts)..

Data source: ProductHuntMar 16, 2026
Last updated: