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-ai

v1.0.0

Published

Universal AI coding assistant launcher — Claude Code, OpenAI Codex, Ollama

Readme

orbit-ai

One command to launch any AI coding assistant — Claude Code, OpenAI Codex, Ollama

orbit is a universal AI coding assistant launcher for developers who use multiple AI tools. Instead of remembering different commands, managing multiple accounts, and setting environment variables — just type orbit.

npm license node platform


orbit demo


Features

  • Multi-account Claude Code — switch between work, personal, and client accounts without re-logging in
  • OpenAI Codex — launch with your API key automatically
  • Ollama — run local AI models with no internet required
  • Setup wizard — guided first-run experience, detects what's installed and offers to install what's missing
  • Shared sessions — project conversations are shared across all your Claude accounts
  • Cross-platform — works on macOS, Linux, and Windows (WSL/Git Bash)

Install

npm install -g orbit-ai

Requires Node.js 18+


Quick Start

Run orbit for the first time and the setup wizard will guide you through everything:

orbit

The wizard will:

  1. Ask which AI tools you use
  2. Check if they're installed (and offer to install them)
  3. Add your first Claude account
  4. Show you the welcome screen

Usage

orbit                # Launch the assistant selector
orbit --add          # Add a Claude Code account
orbit --remove       # Remove a Claude Code account
orbit --add-model    # Add an Ollama model to the list
orbit --setup        # Re-run the setup wizard
orbit --list         # List all accounts & models
orbit --version      # Show version and detected providers
orbit --help         # Show the welcome screen

Supported Providers

| Provider | Description | Install | |---|---|---| | Claude Code | Anthropic's AI pair programmer | npm install -g @anthropic-ai/claude-code | | OpenAI Codex | GPT-4o powered coding assistant | npm install -g @openai/codex | | Ollama | Local AI models, no internet required | ollama.com |

You don't need all three — orbit works with whichever ones you have installed.


Multiple Claude Accounts

If you work across multiple clients or projects, orbit lets you maintain separate Claude accounts with isolated configurations and shared project sessions:

orbit --add
# Account name: work
# Email: [email protected]

orbit --add
# Account name: personal
# Email: [email protected]

Each account has its own credentials. Project conversations are shared across accounts so you never lose context when switching.


Ollama (Local Models)

Select any locally available Ollama model from the launcher. orbit uses Claude Code as the frontend for Ollama, so the experience is identical.

orbit --add-model
# Model name: llama3:8b

Data

All configuration is stored in ~/.orbit/:

~/.orbit/
├── accounts.json       # Claude account registry
├── config.json         # Setup state and enabled providers
├── ollama-models.json  # Ollama model list
└── projects/           # Shared project sessions

No credentials are stored in the package — everything stays on your machine.


Contributing

PRs and issues welcome at github.com/gourish7/orbit-ai.


License

MIT © Gourishankar R Pujar