Close Menu
  • Home
  • Opinion
  • Region
    • Africa
    • Asia
    • Europe
    • Middle East
    • North America
    • Oceania
    • South America
  • AI & Machine Learning
  • Robotics & Automation
  • Space & Deep Tech
  • Web3 & Digital Economies
  • Climate & Sustainability Tech
  • Biotech & Future Health
  • Mobility & Smart Cities
  • Global Tech Pulse
  • Cybersecurity & Digital Rights
  • Future of Work & Education
  • Trend Radar & Startup Watch
  • Creator Economy & Culture
What's Hot

Bengaluru startup Hooly is constructing an AI health coach that understands motivation

March 16, 2026

Moonshot AI Releases π‘¨π’•π’•π’†π’π’•π’Šπ’π’ π‘Ήπ’†π’”π’Šπ’…π’–π’‚π’π’” to Substitute Mounted Residual Mixing with Depth-Clever Consideration for Higher Scaling in Transformers

March 16, 2026

Pixelpaw Labs’ Section Delivers Mouse Precision and Controller Consolation in One Cut up System

March 16, 2026
Facebook X (Twitter) Instagram LinkedIn RSS
NextTech NewsNextTech News
Facebook X (Twitter) Instagram LinkedIn RSS
  • Home
  • Africa
  • Asia
  • Europe
  • Middle East
  • North America
  • Oceania
  • South America
  • Opinion
Trending
  • Bengaluru startup Hooly is constructing an AI health coach that understands motivation
  • Moonshot AI Releases π‘¨π’•π’•π’†π’π’•π’Šπ’π’ π‘Ήπ’†π’”π’Šπ’…π’–π’‚π’π’” to Substitute Mounted Residual Mixing with Depth-Clever Consideration for Higher Scaling in Transformers
  • Pixelpaw Labs’ Section Delivers Mouse Precision and Controller Consolation in One Cut up System
  • πŸ‘¨πŸΏβ€πŸš€TechCabal Day by day – Your DStv might change into cheaper
  • Mazagan Seashore & Golf Resort Celebrates Commencement of Third Cohort of Girls’s Management Program
  • Tencent Cloud Turns into Sponsor of OpenClaw Group
  • IBM AI Releases Granite 4.0 1B Speech as a Compact Multilingual Speech Mannequin for Edge AI and Translation Pipelines
  • One Fan Simply Proved Sims 5 May Work in Unreal Engine 5, and He Did It in Two Weeks Flat
Monday, March 16
NextTech NewsNextTech News
Home - AI & Machine Learning - Garry Tan Releases gstack: An Open-Supply Claude Code System for Planning, Code Overview, QA, and Transport
AI & Machine Learning

Garry Tan Releases gstack: An Open-Supply Claude Code System for Planning, Code Overview, QA, and Transport

NextTechBy NextTechMarch 14, 2026No Comments5 Mins Read
Share Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email Copy Link
Follow Us
Google News Flipboard
Garry Tan Releases gstack: An Open-Supply Claude Code System for Planning, Code Overview, QA, and Transport
Share
Facebook Twitter LinkedIn Pinterest Email


What if AI-assisted coding grew to become extra dependable by separating product planning, engineering overview, launch, and QA into distinct working modes? That’s the concept behind Garry Tan’s gstack, an open-source toolkit that packages Claude Code into 8 opinionated workflow expertise backed by a persistent browser runtime. The tookit describes itself as β€˜Eight opinionated workflow expertise for Claude Codeβ€˜ and teams widespread software program supply duties into distinct modes akin to planning, overview, transport, browser automation, QA testing, and retrospectives. The aim is to not substitute Claude Code with a brand new mannequin layer. It’s to make Claude Code function with extra express function boundaries throughout product planning, engineering overview, launch, and testing.

The 8 Core Instructions

The gstack repository at the moment exposes 8 primary instructions: /plan-ceo-review, /plan-eng-review, /overview, /ship, /browse, /qa, /setup-browser-cookies, and /retro. Every command is mapped to a particular working mode. /plan-ceo-review is positioned as a product-level planning cross. /plan-eng-review is used for structure, knowledge move, failure modes, and checks. /overview is concentrated on manufacturing danger and code overview. /ship is used for making ready a prepared department, syncing with primary, working checks, and opening a PR. /browse provides the agent browser entry, whereas /qa is designed for systematic testing of affected routes and flows. /setup-browser-cookies imports cookies from a neighborhood browser into the headless session, and /retro is used for engineering retrospectives.

The Persistent Browser Is the Core System

A very powerful technical a part of gstack just isn’t the Markdown expertise. It’s the browser subsystem. gstack provides Claude Code a persistent browser and that the browser is the arduous half, whereas the remainder is especially Markdown. As an alternative of launching a contemporary browser for each motion, gstack runs a long-lived headless Chromium daemon and communicates with it over localhost HTTP. The reason being latency and state retention. A chilly begin prices round 3–5 seconds per instrument name, whereas subsequent calls after startup are designed to run in roughly 100–200 ms. As a result of the browser stays alive, cookies, tabs, localStorage, and login state persist throughout instructions. The server additionally shuts down robotically after half-hour of idle time.

How gstack Connects Browser Automation to QA

That daemon structure issues for QA and browser-driven improvement. In lots of agent workflows, browser automation is a separate debugging step or a screenshot utility. In gstack, browser entry is a part of the core workflow. The repo describes /browse because the mode that lets the agent log in, click on by the app, take screenshots, and examine breakage. /qa builds on high of that by analyzing the department diff, figuring out affected routes, and testing the related pages or flows. The pattern move within the repo reveals /qa inspecting 8 modified information and 3 affected routes, then testing these routes in opposition to a neighborhood app occasion. This implies the undertaking is making an attempt to tie supply modifications to precise software conduct as an alternative of treating QA as a indifferent guide cross.

Set up Necessities and Venture Format

The repository’s implementation decisions are additionally pretty particular. gstack requires Claude Code, Git, and Bun v1.0+. The bundle.json reveals the present model as 0.3.3, lists Playwright and diff as runtime dependencies, and compiles a browse executable from the browse supply tree. In line with the repo’s README, /browse compiles a local binary and is supported on macOS and Linux, for each x64 and arm64. The set up move copies the repo into ~/.claude/expertise/gstack, runs ./setup, and registers the abilities for Claude Code. Groups may also copy the identical setup right into a repository-local .claude/expertise/gstack listing so the workflow is shared inside a undertaking.

Why the Venture Makes use of Bun

The structure doc explains why the undertaking makes use of Bun moderately than a extra standard Node.js setup. There are 4 said causes: compiled binaries, native SQLite entry, native TypeScript execution, and a built-in HTTP server with Bun.serve(). These decisions are sensible moderately than beauty. gstack reads Chromium’s SQLite cookie database straight, and Bun’s built-in database help removes the necessity for further native packages. The compiled binary mannequin additionally suits the repo’s set up fashion, as a result of customers are usually not anticipated to handle a separate runtime toolchain inside ~/.claude/expertise/.

Key Takeaways

  • gstack is a workflow layer for Claude Code, not a brand new mannequin or agent framework. It packages software program supply into 8 opinionated slash-command expertise for planning, overview, transport, browser automation, QA, cookie setup, and retrospectives.
  • The persistent browser daemon is the primary technical element. gstack runs a long-lived headless Chromium course of over localhost HTTP so cookies, tabs, localStorage, and login state persist throughout instructions.
  • QA is tied on to code modifications. The /qa workflow analyzes department diffs, identifies affected routes, and checks the related software paths as an alternative of treating browser checks as a separate guide step.
  • The undertaking is constructed round Bun for sensible methods causes. Bun is used for compiled binaries, native SQLite entry, native TypeScript execution, and a built-in HTTP server for the browser daemon.
  • gstack’s contribution is operational construction. Its primary worth is separating product overview, engineering overview, code overview, launch, and browser-driven validation into express modes with slender duties.

Take a look atΒ Repo right here.Β Additionally,Β be at liberty to comply with us onΒ TwitterΒ and don’t neglect to hitch ourΒ 120k+ ML SubRedditΒ and Subscribe toΒ our E-newsletter. Wait! are you on telegram?Β now you’ll be able to be a part of us on telegram as nicely.


Elevate your perspective with NextTech Information, the place innovation meets perception.
Uncover the most recent breakthroughs, get unique updates, and join with a world community of future-focused thinkers.
Unlock tomorrow’s traits in the present day: learn extra, subscribe to our e-newsletter, and turn into a part of the NextTech group at NextTech-news.com

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
NextTech
  • Website

Related Posts

Moonshot AI Releases π‘¨π’•π’•π’†π’π’•π’Šπ’π’ π‘Ήπ’†π’”π’Šπ’…π’–π’‚π’π’” to Substitute Mounted Residual Mixing with Depth-Clever Consideration for Higher Scaling in Transformers

March 16, 2026

IBM AI Releases Granite 4.0 1B Speech as a Compact Multilingual Speech Mannequin for Edge AI and Translation Pipelines

March 16, 2026

A Coding Implementation to Design an Enterprise AI Governance System Utilizing OpenClaw Gateway Coverage Engines, Approval Workflows and Auditable Agent Execution

March 16, 2026
Add A Comment
Leave A Reply Cancel Reply

Economy News

Bengaluru startup Hooly is constructing an AI health coach that understands motivation

By NextTechMarch 16, 2026

Final 12 months, when Varun Francis and Pavan Gowda began constructing Hoolyβ€”whose title attracts inspiration…

Moonshot AI Releases π‘¨π’•π’•π’†π’π’•π’Šπ’π’ π‘Ήπ’†π’”π’Šπ’…π’–π’‚π’π’” to Substitute Mounted Residual Mixing with Depth-Clever Consideration for Higher Scaling in Transformers

March 16, 2026

Pixelpaw Labs’ Section Delivers Mouse Precision and Controller Consolation in One Cut up System

March 16, 2026
Top Trending

Bengaluru startup Hooly is constructing an AI health coach that understands motivation

By NextTechMarch 16, 2026

Final 12 months, when Varun Francis and Pavan Gowda began constructing Hoolyβ€”whose…

Moonshot AI Releases π‘¨π’•π’•π’†π’π’•π’Šπ’π’ π‘Ήπ’†π’”π’Šπ’…π’–π’‚π’π’” to Substitute Mounted Residual Mixing with Depth-Clever Consideration for Higher Scaling in Transformers

By NextTechMarch 16, 2026

Residual connections are one of many least questioned elements of contemporary Transformer…

Pixelpaw Labs’ Section Delivers Mouse Precision and Controller Consolation in One Cut up System

By NextTechMarch 16, 2026

In case you spend your days at a desk and your evenings…

Subscribe to News

Get the latest sports news from NewsSite about world, sports and politics.

NEXTTECH-LOGO
Facebook X (Twitter) Instagram YouTube

AI & Machine Learning

Robotics & Automation

Space & Deep Tech

Web3 & Digital Economies

Climate & Sustainability Tech

Biotech & Future Health

Mobility & Smart Cities

Global Tech Pulse

Cybersecurity & Digital Rights

Future of Work & Education

Creator Economy & Culture

Trend Radar & Startup Watch

News By Region

Africa

Asia

Europe

Middle East

North America

Oceania

South America

2025 Β© NextTech-News. All Rights Reserved
  • About Us
  • Contact Us
  • Privacy Policy
  • Terms Of Service
  • Advertise With Us
  • Write For Us
  • Submit Article & Press Release

Type above and press Enter to search. Press Esc to cancel.

Subscribe For Latest Updates

Sign up to best of Tech news, informed analysis and opinions on what matters to you.

Invalid email address
Β We respect your inbox and never send spam. You can unsubscribe from our newsletter at any time.Β Β Β Β Β 
Thanks for subscribing!