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

codebyplan

v1.13.57

Published

CLI for CodeByPlan — AI-powered development planning and tracking

Readme

codebyplan

CLI for CodeByPlan — AI-powered development planning and tracking.

Installation

npx codebyplan setup

This will:

  1. Sign you in via OAuth (a browser window opens automatically; no API key needed)
  2. Configure Claude Code to connect via remote MCP
  3. Optionally link a repository

Commands

codebyplan setup

Interactive setup wizard. Authenticates via OAuth and configures the MCP server connection.

codebyplan config

Sync repo configuration from the CodeByPlan database to .codebyplan.json. Updates server_port, server_type, branch_config, and port_allocations. Also runs the worktree self-heal to cache the active worktree ID in memory.

Options:

| Flag | Description | | ------------------ | ------------------------------------------------ | | --path <dir> | Project root directory (default: cwd) | | --repo-id <uuid> | Repository ID (default: from .codebyplan.json) | | --dry-run | Preview changes without writing |

Example:

codebyplan config
codebyplan config --dry-run

codebyplan ports

Verify port allocations match local package.json dev scripts. Reports mismatches and unallocated apps. With --fix, auto-creates missing port allocations in the database.

Options:

| Flag | Description | | ------------------ | ------------------------------------------------ | | --path <dir> | Project root directory (default: cwd) | | --repo-id <uuid> | Repository ID (default: from .codebyplan.json) | | --dry-run | Preview changes without writing | | --fix | Auto-create missing port allocations |

Example:

codebyplan ports
codebyplan ports --fix
codebyplan ports --fix --dry-run

codebyplan tech-stack

Detect and sync tech stack dependencies from all package.json files in the project. Also runs the local config migration to move any legacy worktree_id from .codebyplan.json to the gitignored .codebyplan.local.json.

Options:

| Flag | Description | | ------------------ | ------------------------------------------------ | | --path <dir> | Project root directory (default: cwd) | | --repo-id <uuid> | Repository ID (default: from .codebyplan.json) | | --dry-run | Preview changes without writing |

Example:

codebyplan tech-stack
codebyplan tech-stack --dry-run

codebyplan help

Show help message.

codebyplan --version

Print the CLI version.

MCP Server

Claude Code connects to CodeByPlan via a remote MCP server. The setup command configures this automatically:

{
  "mcpServers": {
    "codebyplan": {
      "type": "http",
      "url": "https://mcp.codebyplan.com/mcp"
    }
  }
}

Authentication is handled via OAuth Bearer — no API key is stored in this file.

Learn More