繁中 →
visitors so far

gstack, the Claude Code skill pack

The open-source skill pack from Y Combinator's CEO (55 skills by the official recount, Aug 2026), installed with one command

← Back to homeAbout me·Failure list·GitHub·Threads
?
What is gstack?

The 30 second version

gstack = a skill pack for Claude Code

gstack is an open-source project from Garry Tan , the current CEO of Y Combinator. It fits Claude Code with 23 specialist skills and 8 tools, from automated QA to AI code review to opening a PR in one step, all from a single command.

Think of Claude Code as a new phone, and gstack as installing the 23 most useful apps in one go.

129K+
GitHub stars (as of 2026/8/25)
23
skills
8
tools
1 line
to install
1
One-line install
About 30 seconds
Prerequisites

Check you have these before you start

  • Claude Code installed
  • Git installed
  • Bun v1.0+ (command below if you do not have it)
No Bun yet?

Install Bun first

curl -fsSL https://bun.sh/install | bash

When it finishes, run bun --version and if a version number shows up, you are good.

The main command

Install gstack in one line

Open Terminal and paste this:

git clone --single-branch --depth 1 https://github.com/garrytan/gstack.git ~/.claude/skills/gstack && cd ~/.claude/skills/gstack && ./setup
That line does three things: 1. download gstack from GitHub 2. put it in Claude Code's skills directory 3. run the setup script. Fully automatic, nothing else to do.
Verify the install

Check that it landed

Open Claude Code and type:

/qa

If Claude Code recognizes the command instead of saying it cannot find it, gstack installed fine.

2
The 5 skills you will use most
Learn these five and you are set
/qa
Automated QA testing

Give it a URL and it opens a browser, hunts for bugs, and fixes what it finds. No clicking through every button and form yourself. The AI runs the pass and repairs what breaks.

/browse
Give the AI eyes

Lets the AI see the page. Screenshots, clicks, filling forms. It used to read code without ever seeing the screen. Now it drives the browser like a person and sees what your users see.

/ship
Open a PR in one step

Run the tests, review the code, open the PR, all in one command. It used to mean running tests by hand, writing the PR description, waiting for review. Now one /ship handles all of it.

/review
AI code review

Reviews your code the way a senior engineer would. It looks at architecture, logic and security, and gives concrete suggestions. Code review is what you miss most when you build alone, and this skill fills the gap.

/investigate
Automatic debugging

Hand it an error message and it chases the cause down. Not "here is what it might be", but actually reading the code, finding the reason, and handing you the fix.

3
Selected skills (55 in the official pack, the 23 most used ones covered here)
Grouped by stage of the work
Think stage

Planning and thinking

SkillWhat it does
/office-hoursSimulated office hours to sharpen an idea
/plan-ceo-reviewReviews your plan from a CEO's seat
/plan-eng-reviewReviews the technical plan from an engineering lead's seat
/plan-design-reviewReviews UX and UI from a design lead's seat
Design stage

Design

SkillWhat it does
/design-consultationDesign consultation, talking through direction and style
/design-reviewReviews a design and suggests improvements
Build stage

Development

SkillWhat it does
/reviewAI code review, checking code quality
/investigateTracks a bug to its root cause
/shipTests + code review + PR in one step
Test stage

Testing

SkillWhat it does
/qaAutomated QA, opens a browser to find bugs and fix them
/qa-onlyTests only, no fixes, produces a report
/csoSecurity review, hunts for vulnerabilities
/benchmarkPerformance testing, finds the bottleneck
/canaryCanary testing, verifies on a small slice
Release stage

Release

SkillWhat it does
/land-and-deployMerges the PR and deploys
/document-releaseGenerates release notes
/retroRetrospective, records what you learned
Browse

Browser control

SkillWhat it does
/browseOpens a browser to visit pages, screenshot and interact
/connect-chromeConnects to a Chrome window you already have open
/setup-browser-cookiesSets up browser cookies
Safety tools

Protect your project

SkillWhat it does
/carefulCareful mode, confirms every step
/freezeFreezes files so the AI cannot change them by mistake
/guardGuard mode, watches for changes
/unfreezeUnfreezes
?
Common questions

Is it free?

Completely free, under the MIT open-source license. Anyone can use it, change it and share it. gstack itself is free, but you still need access to Claude Code (an Anthropic API key or a Claude Max subscription).

Does it work on Windows?

Yes. Run the install command in Git Bash or WSL (Windows Subsystem for Linux). WSL2 runs smoothest and feels the same as Mac or Linux.

How is it different from Claude Code?

gstack is anadd-on pack for Claude Code, like installing an app on your phone. Claude Code is the base system, and gstack adds 23 specialist skills on top. Without Claude Code you cannot run gstack, and Claude Code works fine on its own if you skip gstack.

How do you update it?

Type this inside Claude Code to move to the latest version:

/gstack-upgrade

Will it affect my existing projects?

No. gstack installs into ~/.claude/skills/gstack/ and never touches your project files. It only adds skills inside Claude Code, and changes no existing settings or code.

Safety note: telemetry (usage logging)

gstack keeps a local record of which skills you use, at ~/.gstack/analytics/skill-usage.jsonl.

Nothing is uploaded by default.Unless you opt into telemetry during install, the data stays on your own machine.

How to check your own state:

cat ~/.gstack/analytics/skill-usage.jsonl

Content in there means there is a local record, still going nowhere.

If that bothers you, delete the log:

rm -rf ~/.gstack/analytics/

The skills themselves are fine. The telemetry is just something users should know about.

Want more AI development tips?

Follow Leo for first-hand notes as they happen

Follow @kanisleo328

Useful? Cite this page and pass it on