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

@ganderbite/relay

v0.7.6

Published

Run deterministic multi-step Claude Code workflows with checkpoint and resume.

Downloads

1,823

Readme

@ganderbite/relay

The relay command-line binary. Runs flows, manages runs, inspects auth, and scaffolds new flow packages.


What it does

@ganderbite/relay wraps @ganderbite/relay-core in a terminal-facing binary. It handles provider selection, pre-run banners, TTY progress output, and error display. Every command exits with a documented exit code so CI scripts can distinguish billing misconfigurations from step failures.


Install

npm install -g @ganderbite/relay

Requires Node ≥ 20.10.

If relay is not found after install, ensure the npm global bin directory is in your PATH. Run npm bin -g to locate it, then add that path to your shell profile (.zshrc, .bashrc, etc.).


First-time setup

relay init      # write provider choice to ~/.relay/settings.json
relay doctor    # confirm Node, claude binary, auth state, and .relay dir

Without relay init the CLI exits with NoProviderConfiguredError (exit 6) before any step executes.


Commands

relay run <flow> [input]

Run a flow. <flow> is a local directory path or a catalog flow name.

relay run codebase-discovery --repoPath=. --audience=dev
relay run ./packages/flows/codebase-discovery --repoPath=.

relay resume <runId>

Resume a run from its last checkpoint. Skips steps that completed successfully.

relay resume f9c3a2

relay list

List installed flows and catalog flows available for install.

relay install <name>

Install a flow from the catalog.

relay install codebase-discovery

relay new <name>

Scaffold a new flow package using the generator.

relay new my-audit

relay doctor

Check Node version, claude binary, auth state, and .relay directory. Exits 0 if no blockers, 3 if only the API-key guard is blocking, 1 for other blockers.

relay --help glossary

Print the vocabulary table:

flow        a named, versioned sequence of steps you can run
step        one node in a flow (prompt, script, branch, parallel)
handoff     the JSON one step produces and a later step consumes
run         one execution of a flow; identified by a run id
checkpoint  the saved state of a run after each step completes

Exit codes

| Code | Meaning | |---|---| | 0 | Success | | 1 | Runner failure — step error or unexpected exception | | 2 | FlowDefinitionError or ProviderCapabilityError — malformed flow package | | 3 | Auth error — SubscriptionAuthError or ProviderAuthError; see docs/billing-safety.md | | 4 | HandoffSchemaError — handoff data did not match the declared schema | | 5 | Timeout — TimeoutError or AuthTimeoutError | | 6 | NoProviderConfiguredError — run relay init | | 7 | I/O error — AtomicWriteError writing checkpoint or state | | 8 | Rate limited — ProviderRateLimitError |


Billing safety

Relay runs on your Claude subscription. Run claude /login once to authenticate. The CLI exits with code 3 (auth error) if subscription credentials are not found before any step executes. See docs/billing-safety.md for CI guidance.


License

MIT. Copyright Ganderbite.