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

@growthub/cli

v0.3.21

Published

Growthub CLI — orchestrate AI agent teams to run a business

Downloads

2,091

Readme

growthub-core — Agent Swarm Command Center

Growthub is a full-featured DX platform for orchestrating AI agent swarms across sequential ticket pipelines.


Install

npx create-growthub-local --profile dx

Later:

npx create-growthub-local --profile gtm

What this is

growthub-core is an opinionated, self-hosted developer experience platform that treats every unit of work as a Ticket — a sequential pipeline of stages (planning → execution → review → qa → human) — where each stage is owned by a specific AI agent. Designed for parallel multi-ticket execution with real-time agent status, live heartbeat tracking, and full pipeline control from a single command center dashboard.


Architecture

┌──────────────────────────────────────────────────────────┐
│                    growthub-core                         │
│                                                          │
│  ┌───────────────────────────────────────────────────┐   │
│  │  Ticket Command Center (Dashboard)                │   │
│  │  Kanban │ List │ Roadmap (Week / Month)           │   │
│  └───────────────────────────────────────────────────┘   │
│                         │                                │
│               ┌──────────┴─────────┐                     │
│               │   Ticket TKT-N     │                     │
│               │  stageOrder[]      │                     │
│               │  currentStage      │                     │
│               └──────────┬─────────┘                     │
│                          │                               │
│       ┌──────────────────┼──────────────────┐           │
│       │                  │                  │           │
│   Planning           Execution         Review / QA       │
│   Agent              Codex /           Claude /          │
│   (pm role)          Claude Code       Codex             │
│                          │                               │
│             Issues (GRO-NNN) per stage                   │
│             assigned to specific agents                  │
│                                                          │
│  ┌───────────────────────────────────────────────────┐   │
│  │  Embedded PostgreSQL (port 54329)                 │   │
│  │  Drizzle ORM — auto-migration on startup          │   │
│  │  TanStack Query + queryKeys registry              │   │
│  │  Vite dev middleware + tsx watch hot-reload        │   │
│  └───────────────────────────────────────────────────┘   │
└──────────────────────────────────────────────────────────┘

Stack

| Layer | Technology | |---|---| | Server | Node.js + Fastify, TypeScript, tsx watch | | Database | Embedded PostgreSQL via embedded-postgres (port 54329) | | ORM | Drizzle ORM — SQL migrations in packages/db/src/migrations/ | | UI | React 18, Vite, TailwindCSS, shadcn/ui | | Data fetching | TanStack Query v5 — single queryKeys.ts registry | | Agents | Claude Code (local), Codex (local), HTTP adapter | | Auth | Local trusted mode (no auth wall in dev) |


Ticket Pipeline

Tickets are the primary organizing unit. Each ticket has a fully user-configurable stageOrder array:

planning → execution → review → qa → human
  • Stage colors are assigned by index position in stageOrder — never keyed by name
  • Issues (tasks) are spawned per stage and assigned to specific agents
  • Pipeline is sequential — only the active stage has live work; future stages are "up next"
  • Advancing moves currentStage forward; completed stages remain as history
  • Stage names, colors, and order are fully editable inline from the ticket detail page

| Status | Meaning | |---|---| | active | Work in progress | | paused | Manually paused | | done | All stages completed | | cancelled | Abandoned |


Canonical Agents

| Agent | Role | Adapter | Purpose | |---|---|---|---| | Planning Agent | pm | claude_local | Breaks tickets into issues, writes specs | | Execution — Codex | general | codex_local | Implements features from issues | | Execution — Claude Code | general | claude_local | Implements features, debugging | | Review — Claude | qa | claude_local | Code review, correctness checks | | QA/Debugger — Codex | qa | codex_local | Test runs, regression debugging |

All agents have canCreateAgents: true and canAssignTasks: true for sub-agent spawning.


Running locally

pnpm install
npm run dev
# Server + UI: http://localhost:3100

No manual migrations. Auto-migrates on every startup. To add a migration: create a .sql file in packages/db/src/migrations/ and update _journal.json — never run drizzle-kit push.


Key directories

packages/
  db/src/
    schema/        Drizzle table definitions
    migrations/    SQL files (hand-written, never generated)
  shared/src/
    types/         TypeScript types (Ticket, Issue, Agent, ...)
    validators/    Zod schemas
    constants.ts   TICKET_STAGES, TICKET_STATUSES, ...

server/src/
  routes/          Fastify route handlers
  services/        Business logic
  app.ts           Route registration

ui/src/
  pages/           React pages (Dashboard, TicketDetail, Tickets, Archive, ...)
  components/      Shared UI (NewTicketModal, Sidebar, ...)
  api/             API client (tickets.ts, issues.ts, agents.ts, ...)
  lib/
    queryKeys.ts         Single source of truth for all query keys
    company-routes.ts    Route prefix logic

agents/            Agent config markdown files

Archive

Issues support soft-delete via hiddenAt. /archive page supports bulk archive and restore.

GitHub PR binding

New Ticket modal fetches open PRs from your GitHub repos and binds them to tickets. PR context is stored in ticket.metadata.pr and surfaced to agents as part of ticket instructions.


Contributing

See CONTRIBUTING.md.