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

@kenkaiiii/gg-boss

v4.3.158

Published

Orchestrator agent that drives multiple ggcoder sessions across projects from a single chat

Readme

gg-boss

You talk to the boss. The boss drives the workers — one per project — in parallel. Dispatch work, watch them finish, keep a backlog, swap models on the fly. All from one terminal.

Built on @kenkaiiii/ggcoder, @kenkaiiii/gg-agent and @kenkaiiii/gg-ai. Part of the GG Framework monorepo.


🚀 Run It

# Sign in once with ggcoder — gg-boss reuses the same auth
npm i -g @kenkaiiii/ggcoder
ggcoder login

# Install the boss
npm i -g @kenkaiiii/gg-boss

# Pick which projects the boss should drive (interactive picker —
# scans your ggcoder, Claude Code, and Codex session history)
ggboss link

# Start the orchestrator
ggboss

Already linked? ggboss continue resumes the most recent session. ggboss --resume <id> resumes a specific one.


🪄 How it works

You type one prompt. The boss decides which workers to dispatch, in parallel or serial, with prompt_worker (fire-and-forget) or by adding to the task plan and calling dispatch_pending. Each worker is a full ggcoder agent — read, write, edit, bash, grep, find, ls, web fetch, sub-agents — running in its own project directory.

When a worker finishes, you get a tight summary back: Changed, Skipped, Verified, Notes, and a single-letter Status (DONE / UNVERIFIED / PARTIAL / BLOCKED / INFO). The boss reads that, cross-checks it against the worker's actual tool calls, and either reports back to you or re-prompts to verify, finish, or unblock.

A few things make it feel like one conversation instead of N:

  • Live worker state is appended to every event the boss receives. It can never forget that "B is still working" while it's reading "A finished".
  • Auto-chain. If the boss leaves a project parked while pending tasks remain, the orchestrator dispatches the next task itself and tells the boss it did so.
  • Auto-compact. When the boss's context crosses 80%, it compacts and starts a fresh session file so ggboss continue resumes the trimmed history.
  • Crash-resistant. Six workers in one process can't take the boss down — uncaught throws and unhandled rejections are logged to ~/.gg/boss/debug.log and the run loop keeps going.
  • Audio chimes. A done sound on each worker finish, an all-clear chime when every worker is idle and the queue is empty.

🎛 Models

Boss and workers run on different models, on purpose. Use a strong reasoning model (Opus, GPT-5) up top and a fast cheap model (Sonnet, Haiku) for the workers — or whatever combination fits the work.

Defaults: claude-opus-4-7 for the boss, claude-sonnet-4-6 for the workers. Anthropic, OpenAI, GLM, and Moonshot are all supported (anything ggcoder supports). Swap mid-session with /model-boss and /model-workers — your choice persists across restarts.

ggboss --boss-model claude-opus-4-7 --worker-model claude-sonnet-4-6
ggboss --project ../api --project ../web   # explicit project list

⌨️ Keybindings

| Key | What it does | |---|---| | Tab | Cycle the project scope pill (All / per-project) on your next message | | Shift+Tab | Toggle the boss's extended thinking | | Esc | Interrupt the boss mid-turn (workers keep running) | | Ctrl+T | Open the Tasks pane | | Ctrl+C ×2 | Exit gg-boss | | / | Recall previous prompts (when input is empty) | | Enter | Send · Shift+Enter newline · / opens the slash menu |

Inside the Tasks pane (Ctrl+T):

| Key | What it does | |---|---| | / (or k / j) | Navigate tasks | | Enter | Dispatch the selected task to its worker | | r | Run all pending and blocked tasks across idle workers | | d | Delete the selected task | | Esc | Close the pane |


💬 Slash commands

| Command | What it does | |---|---| | /help (/?) | Show all commands and keybindings | | /model-boss | Switch the orchestrator's model | | /model-workers | Switch every worker's model | | /compact | Compact the boss's context now | | /clear | Clear chat history and terminal | | /radio | Stream a free internet radio station while you work | | /quit (/q, /exit) | Exit gg-boss |


📋 The task plan

The boss isn't just a dispatcher — it keeps a persistent backlog. Use it for tracked, reviewable, resumable work.

  • The boss adds tasks via add_task(project, title, description, fresh?).
  • Tasks live in ~/.gg/boss/tasks.json and survive restarts.
  • Press Ctrl+T any time to see the plan, dispatch an item, or delete it.
  • Worker self-reported status (DONE / UNVERIFIED / PARTIAL / BLOCKED / INFO) auto-updates the task, with the boss free to override based on cross-check.
  • When a project goes idle with pending work in the plan, auto-chain picks up the next task without the boss having to remember.

Direct dispatch (prompt_worker) is for one-shot work. The plan is for batches you want to curate, review, and resume.


📻 Radio

/radio streams long-running, royalty-free internet radio while you work — SomaFM Groove Salad, Drone Zone, Radio Paradise Mellow Mix, lofi beats. Pick a station or Off. Requires one of mpv (recommended), ffplay, mpg123, or vlc/cvlc on your PATH.


🗂 Project discovery

ggboss link is interactive. It scans:

  • ~/.gg/sessions/ — your existing ggcoder projects
  • ~/.claude/projects/ — your Claude Code projects (cwds extracted from the JSONL events themselves, not the lossy dir-name encoding)
  • ~/.codex/sessions/ — your Codex projects (cwds pulled from session metadata)

Sorted most-recent first. Pick a few, save the list, and the boss starts a worker for each one.


🛟 Auto-update

On every launch the boss installs any pending update from the prior run (effective next launch) and schedules a fresh registry check in the background. No prompts, no interruption — you just stay current.


👥 Community


📄 License

MIT