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-cli/core

v0.2.2

Published

AI context engine for your codebase — generate structured context files for Claude, Cursor, and other AI assistants

Downloads

352

Readme

@orbit-cli/core

AI context engine for your codebase. Generate structured context files for Claude, Cursor, Copilot, Windsurf, and other AI assistants.

Orbit demo

Unlike code-dump tools (like Repomix), Orbit understands your project's structure — tech stack, routes, database schema, import graph, dependencies, and git activity — and generates focused context that helps AI assistants write better code.

Why Orbit?

| | Orbit | Code-dump tools | |---|---|---| | Output | Structured context (tech, routes, DB, imports) | Raw file contents | | Token usage | Minimal (structure only) | High (full source code) | | Multi-format | CLAUDE.md, .cursorrules, Copilot, Windsurf | Usually one format | | Import graph | Hub modules ranked by dependency count | None | | Custom rules | Preserved across regeneration | N/A | | Setup | Zero config — just run npx | Often requires configuration |

Quick Start

# Generate a CLAUDE.md (no sign-up, no config)
npx @orbit-cli/core scan -g

# Preview what Orbit detects (without writing a file)
npx @orbit-cli/core scan

That's it. Open the generated CLAUDE.md in Claude Code, and your AI assistant now understands your project.

Multi-Format Output (Pro)

Generate context files for any AI assistant:

orbit scan -g                          # CLAUDE.md (free)
orbit scan -g --target cursor          # .cursorrules
orbit scan -g --target copilot         # .github/copilot-instructions.md
orbit scan -g --target windsurf        # .windsurfrules
orbit scan -g --target cursor-mdc      # .cursor/rules/*.mdc (modular)

What It Detects

  • Tech Stack — frameworks, languages, package manager, Node version
  • Project Structure — pages, API routes, database tables
  • Import Graph — module dependencies, hub modules ranked by import count
  • Exports — components, functions, types with file locations
  • Dependencies — categorized (UI, state, testing, database, auth, etc.)
  • Git Status — branch, recent commits, uncommitted changes
  • Code Metrics — file count, lines of code, largest files
  • Deployment — platform (Vercel, AWS, etc.) and CI configuration
  • Environment Variables — variable names detected (values are never read)
  • Scripts — npm/pnpm scripts available

Custom Rules (Preserved on Regeneration)

When you re-run orbit scan -g, your hand-written notes are preserved:

<!-- ORBIT:USER-START -->
## Our Coding Standards
- Use `const` over `let` everywhere
- All API routes must validate input with Zod
- Components use named exports, not default
<!-- ORBIT:USER-END -->

Write anything between the markers — Orbit keeps it intact across regeneration.

Task-Aware Context (Optional)

Connect to the Orbit dashboard to include task context — so AI knows what you're building right now:

orbit login                 # Sign in
orbit init                  # Link to a project
orbit add "Add user auth"   # Create a task
orbit start ORB-a1b2        # Start working
orbit scan -g               # Context now includes active tasks

MCP Server

Use Orbit as an MCP server for real-time context in Claude Desktop or other MCP clients:

orbit mcp-serve

Provides tools: orbit_getProjectContext, orbit_getModuleContext, orbit_getActiveTasks, orbit_getFileRelations, orbit_getTaskFocus.

All Commands

| Command | Description | |---------|-------------| | orbit scan | Scan project and display overview | | orbit scan -g | Generate AI context file | | orbit scan -g --target <format> | Generate for specific AI tool | | orbit watch | Watch for changes and auto-regenerate | | orbit focus <task-id> | Generate task-focused context | | orbit login | Sign in to Orbit | | orbit init | Link directory to a project | | orbit list | List tasks | | orbit add <title> | Create a task | | orbit start <id> | Start a task | | orbit done <id> | Complete a task | | orbit mcp-serve | Start MCP server | | orbit issues | Import GitHub issues as tasks |

Requirements

  • Node.js >= 20

Free vs Pro

| Feature | Free | Pro ($12/mo) | |---------|------|-------------| | scan -g (CLAUDE.md) | Unlimited | Unlimited | | Multi-format output | - | All formats | | Custom rules preservation | 1 project | Unlimited | | orbit watch | - | Unlimited | | MCP Server | - | Authenticated | | Context history | 3 snapshots | Unlimited | | Smart Context | - | AI-powered |

License

MIT