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

@gh-symphony/cli

v0.0.14

Published

Interactive CLI for GitHub Symphony orchestration

Readme

@gh-symphony/cli

Interactive CLI for GitHub Symphony — a multi-tenant AI coding agent orchestration platform.

Requirements

The following tools must be installed before using the CLI:

  • Node.js (v24+) with npm
  • Git
  • GitHub CLI (gh) — authenticated with required scopes:
    gh auth login --scopes repo,read:org,project

1. Install Package

npm install -g @gh-symphony/cli

Verify the installation:

gh-symphony --version

Enable shell completion:

gh-symphony completion bash >> ~/.bashrc
gh-symphony completion zsh >> ~/.zshrc
gh-symphony completion fish > ~/.config/fish/completions/gh-symphony.fish

If your zsh config does not already initialize completion, add this before the generated script line:

autoload -Uz compinit && compinit

2. Set Repository

Navigate to the repository you want to orchestrate, then run:

gh-symphony init

The interactive wizard will:

  1. Authenticate via gh CLI
  2. Let you select a GitHub Project to bind
  3. Map project status columns to workflow phases (active / wait / terminal)
  4. Generate WORKFLOW.md and supporting files in the repository

Customizing Agent Behavior

gh-symphony init generates skill files under .codex/skills/ (or .claude/skills/ for Claude Code). These skills define how the AI agent handles commits, pushes, pulls, and project status transitions.

You can further customize the agent's behavior by editing WORKFLOW.md — this is the policy layer that controls what the agent does at each workflow phase.

Currently supported runtimes: Codex, Claude Code

Project .env Mapping

If your hooks or worker runs need staging hosts, database URLs, Playwright base URLs, or other runtime-only values, store them in the project runtime directory instead of hardcoding them in WORKFLOW.md.

  1. Find the project id from gh-symphony project list.
  2. Create the runtime env file:
mkdir -p ~/.gh-symphony/projects/<project-id>
cat > ~/.gh-symphony/projects/<project-id>/.env <<'EOF'
STAGING_API_HOST=https://staging.example.com
DATABASE_URL=postgres://user:pass@staging-db:5432/app
PLAYWRIGHT_BASE_URL=http://localhost:3000
EOF
  1. Reference those variables from WORKFLOW.md hooks or repository setup scripts:
hooks:
  after_create: 'echo "API_HOST=$STAGING_API_HOST" >> .env.development'
  before_run: 'echo "BASE_URL=$PLAYWRIGHT_BASE_URL" > playwright.env'

Env precedence during hook execution and worker spawn is:

  • project .env as the base
  • system env as the override layer
  • Symphony context vars such as SYMPHONY_* as the highest-priority layer

If you use --config <dir>, replace ~/.gh-symphony with that directory.

3. Set Orchestrator Runner (Project)

On the machine where you want the orchestrator to run, register a project:

gh-symphony project add

The interactive wizard will:

  1. Authenticate via gh CLI
  2. Let you select a GitHub Project
  3. Optionally limit processing to issues assigned to the authenticated user
  4. Optionally customize advanced settings for repository filtering and workspace root directory
  5. Write project configuration to ~/.gh-symphony/

Project Management

gh-symphony project list             # List all configured projects
gh-symphony project remove <id>      # Remove a project

4. Run the Orchestrator

Foreground

gh-symphony start

Background (daemon)

gh-symphony start --daemon          # Start in background
gh-symphony stop                    # Stop the daemon

Monitor

gh-symphony status                  # Show current status
gh-symphony status --watch          # Live dashboard
gh-symphony logs                    # View event logs
gh-symphony logs --follow           # Stream logs in real-time

Dispatch a Single Issue

gh-symphony run org/repo#123

Recover Stalled Runs

gh-symphony recover                 # Recover stalled runs
gh-symphony recover --dry-run       # Preview what would be recovered

Command Reference

Setup:
  init                Interactive repository setup wizard
  config show         Show current configuration
  config set          Set a configuration value
  config edit         Open config in $EDITOR

Orchestration:
  start               Start the orchestrator (foreground)
  start --daemon      Start the orchestrator (background)
  stop                Stop the background orchestrator
  status              Show orchestrator status
  run <issue>         Dispatch a single issue
  recover             Recover stalled runs
  logs                View orchestrator logs
  completion <shell>  Print shell completion for bash/zsh/fish

Project Management:
  project add          Add a new project (interactive wizard)
  project list         List all configured projects
  project remove       Remove a project

Global Options:
  --config <dir>      Config directory (default: ~/.gh-symphony)
  --verbose           Enable verbose output
  --json              Output in JSON format
  --no-color          Disable color output
  --help, -h          Show help
  --version, -V       Show version