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

@chamba/cursor-extras

v1.4.0

Published

Optional Cursor extras for chamba: slash commands + subagents installer

Readme

@chamba/cursor-extras

Optional Cursor extras for chamba: slash commands and subagents on top of the chamba MCP server.

Only need the tools? Point Cursor at @chamba/mcp directly (see the Cursor setup guide). This package adds the /commands and subagents on top — the same ones Claude Code gets.

Usage

npx @chamba/cursor-extras@latest install          # commands + subagents + register the MCP server
npx @chamba/cursor-extras@latest install --global  # + npm i -g @chamba/mcp; launch the binary, not npx
npx @chamba/cursor-extras@latest install --force   # overwrite existing files
npx @chamba/cursor-extras@latest uninstall         # remove them
npx @chamba/cursor-extras@latest --version

Requires Cursor 2.4+ for subagents (commands work from 1.6). It installs into ~/.cursor/:

  • Commandscommands/: /ticket, /triage, /qa, /design, /orq, /map, /workspace, /worktrees, /recall, /vault.
  • Subagentsagents/: planner, implementer, reviewer, tester, qa, diagnostician.
  • MCP serverchamba under mcpServers in ~/.cursor/mcp.json (preserves any others).

Then restart Cursor and type / in the Agent input — /ticket, /triage, /qa, … are there.

How it relates to Claude Code

The command and subagent prompts are shared with @chamba/claude-extras — one source of truth, translated to Cursor's format on install:

  • Commands become plain markdown (Cursor commands have no frontmatter): the body is the prompt, the filename is the command name. $ARGUMENTS is kept — you type your request when invoking.
  • Subagents get name + description + model. Cursor accepts a bare Anthropic model id, so the model from your chamba per-agent config (~/.chamba/config.json) is passed through when it's Anthropic; otherwise model: inherit lets Cursor use the parent agent's model. chamba's effort has no stable Cursor equivalent, so it's dropped.

chamba never calls a model — this only tells Cursor's model how to delegate. Configure the per-agent reparto with npx @chamba/claude-extras config <show|set|preset|…>; every editor reads the same ~/.chamba/config.json.

--global — a steadier launch

By default the MCP server is registered as npx -y @chamba/mcp, which re-resolves the package from npm on every spawn. install --global runs npm i -g @chamba/mcp and registers the chamba-mcp binary instead — no per-launch npm. Falls back to the npx launcher if the global install can't run.

License

MIT