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

squad-station

v0.8.9

Published

Message routing and orchestration for AI agent squads

Readme

Squad Station

Message routing and orchestration for AI agent squads — coordinate multiple AI agents through a single orchestrator using tmux sessions and SQLite messaging.

Provider-agnostic: works with Claude Code, Gemini CLI, or any terminal-based AI tool.

Install

npx squad-station@latest install

This downloads the squad-station binary for your platform and scaffolds project files:

.squad/
├── sdd/                              # SDD methodology playbooks
│   ├── gsd-playbook.md
│   ├── bmad-playbook.md
│   ├── openspec-playbook.md
│   └── superpowers-playbook.md
├── rules/                            # Git workflow rule templates
│   ├── git-workflow-get-shit-done.md
│   ├── git-workflow-bmad-method.md
│   ├── git-workflow-openspec.md
│   └── git-workflow-superpowers.md
└── examples/                         # Example squad.yml configs
    ├── orchestrator-claude.yml
    └── orchestrator-gemini.yml

Handles macOS quarantine (xattr removal) and upgrades over existing cargo-installed symlinks automatically.

Quick Start

# 1. Copy an example config
cp .squad/examples/orchestrator-claude.yml squad.yml

# 2. Edit — set project name, providers, models
vi squad.yml

# 3. Launch the squad
squad-station init

Example squad.yml

project: my-app

sdd:
  - name: get-shit-done
    playbook: ".squad/sdd/gsd-playbook.md"

orchestrator:
  provider: claude-code
  role: orchestrator
  model: haiku
  description: Team leader, coordinates tasks for agents

agents:
  - name: implement
    provider: claude-code
    role: worker
    model: sonnet
    description: Senior coder, coding, fixing bugs

  - name: brainstorm
    provider: claude-code
    role: worker
    model: opus
    description: Technical lead, planning, analysis, code reviews

Commands

| Command | Description | |---------|-------------| | squad-station init | Launch squad from squad.yml — creates DB, sessions, hooks | | squad-station send <agent> --body "<task>" | Send a task to an agent | | squad-station signal [agent] | Signal agent task completion | | squad-station list | List messages (--agent, --status, --limit) | | squad-station agents | List agents with live status | | squad-station status | Project and agent summary | | squad-station ui | Interactive TUI dashboard | | squad-station view | Tiled tmux view of all agent sessions | | squad-station doctor | Health check for diagnosing issues | | squad-station watch --daemon | Start watchdog health monitor | | squad-station reset | Kill sessions, delete DB, relaunch | | squad-station clean | Kill sessions and delete DB (--all includes logs) |

All commands support --json for machine-readable output.

Requirements

  • macOS or Linux
  • tmux
  • Node.js 14+ (for npx install only)

Alternative Install

# curl
curl -fsSL https://raw.githubusercontent.com/thientranhung/squad-station/master/install.sh | sh

# From source
git clone https://github.com/thientranhung/squad-station.git
cd squad-station && cargo build --release

License

MIT