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

cursorsi

v1.0.7

Published

CursorSI — terminal-native Cursor/OpenRouter agent (Ink TUI) with ask_user MCP, hooks, and harness scaffolding

Readme

cursorsi

Terminal-native Cursor / OpenRouter agent (Ink TUI), with:

  • Interactive /auth and /backend pickers
  • ask_user MCP → QuestionPicker under the prompt
  • Optional project hooks + harness (cursorsi setup)

Install

npm install -g cursorsi --legacy-peer-deps
cursorsi setup          # once per machine → ~/.cursor hooks/skills
cursorsi                # start TUI

Requires Node ≥ 22.5. Use --legacy-peer-deps if npm complains about zod peer ranges (OpenRouter uses zod 4; optional openai peers want zod 3).

First-time setup

cursorsi setup                 # global: ~/.cursor + ~/.cursor-harness + ~/.cursorsi
cursorsi setup --project       # optional: AGENTS.md + local harness in this repo
cursorsi

Inside the TUI:

  1. /auth — store OpenRouter / Cursor / compatible keys
  2. /backend — pick which backend to use
  3. /model — pick a model

Flags:

cursorsi setup --force              # overwrite existing global files
cursorsi setup --sync-harness       # refresh ~/.cursor-harness scripts
cursorsi setup --home-only          # only ~/.cursorsi + settings
cursorsi setup --project            # also scaffold cwd
cursorsi setup --project /path/app  # scaffold a specific project

What gets installed

| Path | Purpose | When | |------|---------|------| | cursorsi (global bin) | TUI + CLI | npm install -g | | cursorsi-ask-mcp | ask_user MCP | npm install -g | | ~/.cursor/hooks.json + hooks/ | Cursor user hooks (all workspaces) | cursorsi setup | | ~/.cursor/skills/harness-* | Global skills | cursorsi setup | | ~/.cursor-harness/ | Scripts + global harness/memory + harness/reports | cursorsi setup | | ~/.cursorsi/ | credentials (via /auth) | cursorsi setup | | ~/.config/cursorsi/ | settings (backend, model) | cursorsi setup | | <project>/AGENTS.md, harness/, … | Project scaffold | cursorsi setup --project |

Publish (maintainers)

From the sispace monorepo:

cd cli
npm run sync:templates   # copy hooks/harness/config into templates/
npm run build
npm pack                 # inspect tarball (~300KB)
# Create a classic or granular npm token with publish + bypass 2FA:
# https://www.npmjs.com/settings/~/tokens
npm publish --access public --otp=XXXXXX
# or: NPM_TOKEN=npm_... npm publish --access public

prepublishOnly / prepack run sync + build automatically.

Note: Arch/CachyOS npm 12 may lack the sigstore module — use npm 10+ via npx npm@10 publish --access public if system npm crashes on publish.

Develop (monorepo)

cd cli && npm install && npm run build
npm run sync:templates   # optional; setup falls back to repo root
node bin/cursorsi.mjs