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

orbit-runner

v0.8.1

Published

Turn agent-ready Orbit tasks into headless Claude Code sessions on your own Claude subscription.

Readme

orbit-runner

Turn agent-ready Orbit tasks into headless Claude Code sessions on your own Claude subscription — no Anthropic API key. Flag a task in Orbit and the runner picks it up, spins up a session in an isolated git worktree, and streams the work back to Orbit's Agents and Orchestration pages.

Published to npm as orbit-runner. One command to set up:

bunx orbit-runner@latest init      # or: npm i -g orbit-runner && orbit-runner init

@latest matters with bunx: without it, bunx can run a stale cached copy instead of the newest published version.

init verifies your key, maps your Orbit projects to local repos, and — unless you pass --no-plugin — sets up the Orbit plugin + MCP in your interactive Claude Code (user scope), so /orbit:tasks and the workflow skill are available everywhere. Pass the key non-interactively with --key, or let the Orbit web app hand you the full line from Settings → Agents → Add runner.

Commands

| Command | What it does | | --- | --- | | init | Interactive setup: key, project→repo map, and (opt-out) Claude Code wiring. --key <key>, --no-plugin. | | doctor | Check the environment: claude present, config valid, key works, repos trusted + allowlisted. | | start | Start the daemon. --project, --foreground, --follow, --model, --effort. | | stop / status / logs | Manage and observe running instances. |

The URL is fixed (https://api.orbitagents.dev); set ORBIT_API_URL only for local development against a dev API.

How it works

  • Discovery — polls get_next_task per mapped project: the highest-priority agent-ready, unclaimed, unblocked, conflict-free task.
  • Isolation — creates a git worktree on orbit/<task> off origin/HEAD, so Orbit's GitHub integration links the branch and PR to the task.
  • Self-contained sessions — spawns claude -p … --mcp-config … --strict-mcp-config, so each session gets Orbit's MCP tools without relying on any global install.
  • Presence — POSTs /api/runner/heartbeat (@orbit/shared's runnerHeartbeatSchema) so the fleet strip shows slots, status, and pauses.
  • Usage limits — pauses new dispatch until the reported reset, leaving running sessions alone. When a headless session is out of quota it exits in seconds without a parseable banner, so a backstop also pauses after auto_pause_after_no_starts sessions in a row exit before claiming their task. Such exits are recorded as no start, not failed.

Config

~/.config/orbit-runner/config.json (same format as the reference Python runner, so existing files keep working). Managed by init; edit by hand for advanced fields (max_slots, poll_interval_seconds, rate_limit_pause_minutes, task_retry_cooldown_minutes, auto_pause_after_no_starts, skip_permissions, per-project model/effort, alternate repos).

Session permissions

Headless sessions can't answer permission prompts, so any tool not on the repo's committed .claude/settings.json allowlist is denied (see allowlist.ts; init scaffolds a conservative starter). Set "skip_permissions": true to pass --dangerously-skip-permissions to every session instead, auto-approving all tools. That removes the "denied a tool it needed" failure mode, but a worktree is isolation, not a sandbox — sessions share the host's files, credentials, and network. Only enable on a machine and repos you trust (ideally a VM/container), and never run the runner as root (the flag refuses root). doctor flags it when on.

Development

bun run dev -- doctor        # run the CLI from source
bun run typecheck
bun run build                # bundle to dist/ (bundles @orbit/shared)

Status: init, doctor, the Orbit client, and the dispatch daemon (start/stop/status/logs, including background daemonization, worktree isolation, heartbeats, and usage-limit pauses) are implemented. Ported from scripts/orbit-runner/orbit-runner.py in orbitagents/plugin, with two additions: sessions are handed Orbit's MCP inline (--mcp-config … --strict-mcp-config) so they need no global install, and the runner reports presence to the fleet strip. Not yet ported: service install (launchd/systemd) for start-at-login, and a --config flag for alternate config paths.