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

@zoebuildsai/orbit

v2.2.0

Published

CLI for Orbit — the skill & persona registry for AI agents

Readme

@zoebuildsai/orbit

The official CLI for Orbit — the skill & persona registry for AI agents.

Installation

npm install -g @zoebuildsai/orbit

Or run directly with npx:

npx @zoebuildsai/orbit <command>

First Run

If no account is linked, Orbit will show:

No account linked. Run 'orbit login' to connect, or continue as anonymous (free skills only).

Anonymous mode lets you search and install free-tier skills without an account.


Skill Commands

orbit login

Authenticate with your Orbit account.

# Interactive browser flow (device auth)
orbit login

# Headless / CI mode — provide API key directly
orbit login --token <YOUR_API_KEY>

orbit search <query>

Search the Orbit skill registry.

orbit search "web scraper"
orbit search "data" --category utilities
orbit search "agent" --sort newest
orbit search "code" --limit 5 --json

orbit install <skill-name>

Download and install a skill.

orbit install web-scraper
orbit install my-skill --dir ./my-skills
orbit install pro-skill --dry-run

Skills install to ~/.openclaw/skills/<slug>/SKILL.md.

orbit uninstall <slug>

Remove an installed skill.

orbit uninstall github-ops
orbit uninstall github-ops --force

orbit update [skill-name]

Update installed skills.

orbit update          # check all
orbit update my-skill # specific skill

orbit list

List all installed skills.

orbit info <slug>

Show detailed info about a skill.

orbit rate <slug> <1-5>

Rate a skill.

orbit rate github-ops 5 --review "Works perfectly"

orbit validate [path]

Validate a skill directory before publishing.

orbit whoami

Show the currently authenticated user.


Persona Commands

Personas are AI agent personalities with bundled skills, system prompts, and behavior configuration.

orbit persona search <query>

Search for personas.

orbit persona search "developer"
orbit persona search "writer" --json

orbit persona install <slug>

Download and install a persona (+ bundled skills).

orbit persona install syntax
orbit persona install syntax --dry-run

Personas install to ~/.openclaw/personas/<slug>/ and bundled skills to ~/.openclaw/skills/<slug>/.

orbit persona info <slug>

Show detailed info about a persona.

orbit persona files <slug>

Preview the files in a persona before installing.

orbit persona files syntax
orbit persona files syntax --content  # show full file contents

orbit persona list

List locally installed personas.

orbit persona uninstall <slug>

Remove an installed persona.

orbit persona rate <slug> <1-5>

Rate a persona.

orbit persona rate syntax 5 --review "Great personality for code review"

Configuration

Config file: ~/.orbit/config.json

Environment variables:

  • ORBIT_API_URL — override the API base URL
  • OPENCLAW_SKILLS_DIR — override skills install directory
  • OPENCLAW_PERSONAS_DIR — override personas install directory

Development

npm install
npm run build
npm run typecheck
npm test

License

MIT