npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gstack-codex

v0.2.3

Published

Make Codex easy, deep, and fast with Garry Tan's gstack workflow.

Readme

gstack-codex

gstack-codex overview

Codex is powerful. gstack-codex makes it easy, deep, and fast.

gstack-codex turns Codex into an opinionated product-building workflow in minutes.

It brings Garry Tan's upstream gstack workflow to Codex with a smaller install surface, managed AGENTS.md wiring, and guided skills instead of a blank prompt.

npx gstack-codex init --project
npx gstack-codex init --global

gstack-codex fast install demo

Fast initial install. From blank repo to guided Codex workflow in minutes.

Most people should start with init --project. Use init --global on a clean Codex-only machine.

What You Get In 5 Minutes

  • a guided /office-hours flow instead of staring at a blank Codex prompt
  • structured /plan-ceo-review, /plan-eng-review, /review, and /ship workflows
  • repo-local AGENTS.md wiring and generated skills without manual setup
  • a Codex session that feels like a real agent workflow, not raw terminal driving

Why This Exists

  • Plain Codex is powerful, but the first session can feel ambiguous if you do not already know how to drive agent workflows.
  • Upstream gstack on Claude Code is proven and deep, but it is still a Claude-first setup.
  • gstack-codex is the easiest path to a deep, opinionated gstack workflow on Codex.

Quick Start

Recommended for most users, per project:

npx gstack-codex init --project

Global install, mainly for a clean Codex-only machine:

npx gstack-codex init --global

Prerequisites:

  • codex CLI 0.122.0+
  • a signed-in Codex session
  • Node.js 18.17+

After install:

  1. Open Codex in your repo.
  2. Run /office-hours.
  3. If your Codex surface does not expose slash commands yet, simply ask it to start office hours.
  4. Turn a vague idea into a design doc and follow-up plan instead of starting from scratch.

Detailed install notes live in docs/install.md.

Install Modes

init --project is the repo-local path. It installs the full generated skill pack into .agents/skills, updates AGENTS.md with one managed block, and keeps heavy browser/runtime binaries machine-local in v1. If you are not inside a git repo, it uses the current directory as the project root.

init --global is the clean-machine path. It installs the core pack into $HOME/.agents/skills, updates ~/.codex/AGENTS.md with one managed block, and is meant to get a Codex-only user to /office-hours quickly.

Compared to setting up upstream gstack by hand, gstack-codex removes most of the fiddly parts. Instead of cloning skill repos, running setup scripts, and wiring AGENTS.md yourself, you run one command and get the managed block, the packaged skills, and the expected Codex layout in place.

What Gets Written

Global install writes:

  • ~/.codex/AGENTS.md
  • $HOME/.agents/skills/gstack
  • $HOME/.agents/skills/gstack-upgrade
  • $HOME/.agents/skills/gstack-office-hours
  • $HOME/.agents/skills/gstack-plan-ceo-review
  • $HOME/.agents/skills/gstack-plan-eng-review
  • $HOME/.agents/skills/gstack-review
  • $HOME/.agents/skills/gstack-ship
  • ~/.codex/gstack-codex/install-state.json

Project install writes:

  • AGENTS.md
  • .agents/skills/gstack
  • .agents/skills/gstack-*
  • .agents/skills/.gstack-codex-manifest.json

The installer only manages one block inside AGENTS.md. If no AGENTS.md exists, it creates one.

Maintainer Flow

Release artifacts are built from the vendored upstream checkout under .agents/skills/gstack.

Build the staged release bundle:

npm run build:release

Build the staged bundle and create the npm tarball artifact:

npm run pack:release

This flow writes:

  • bundle/current
  • dist/releases/<version>/bundle
  • dist/releases/<version>/release.json
  • dist/releases/<version>/SHA256SUMS.txt
  • dist/releases/<version>/npm/*.tgz after pack:release

More detail is in docs/release.md.