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

ide-agents

v0.5.2

Published

Local admin for IDE agents and skills from git repos

Readme

ide-agents

Local admin for IDE agents and skills from any git repository — Cursor, Claude Code, and Codex (enable in Settings).

Install skills and subagents into your IDE via symlinks — no copy-paste, no manual path juggling.

GitHub npm

What it does

  • Clones git repositories into ~/.ide-agents/repos/
  • Scans skills/*/SKILL.md and optional agents/*.md
  • Creates symlinks in each enabled tool’s config directory and per-project folders
  • Provides a browser UI: Settings, Repositories, Skills, Agents

Not affiliated with Cursor.

Requirements

  • macOS or Linux (Windows is not supported in v0.1)
  • Node.js 20+ — to run ide-agents (npm i -g ide-agents or npm start)
  • Node.js 20.19+ (or 22 LTS) — to develop from source (npm run dev, npm run build; Vite 8 / Rolldown)
  • git in PATH

Install

npm i -g ide-agents

Or from source:

git clone https://github.com/sergeychernov/ide-agents.git
cd ide-agents
npm install
npm run build
npm i -g .

Quick start

ide-agents

This will:

  1. Create ~/.ide-agents/ on first run (migrates from ~/.agentdesk/ if present)
  2. Start a local server at http://127.0.0.1:3921 (or the next free port)
  3. Open the UI in your browser

Press Ctrl+C to stop.

CLI options

ide-agents --port 3922    # custom port
ide-agents --no-open      # do not open browser

Settings

Open Settings (/settings) and enable the tools you use (Codex, Claude, Cursor). Set each config path (defaults: ~/.codex, ~/.claude, ~/.cursor).

On first run, a tool is enabled only if its default folder already exists in your home directory. You can change paths and toggles anytime; installs apply to all enabled tools.

Add a repository

  1. Open Repositories in the UI
  2. Pick a suggested catalog or enter a git URL and branch (default main)
  3. Click Add / Clone

Your repo should contain:

skills/
  my-skill/
    SKILL.md
agents/          # optional
  my-agent.md

For local testing, use a file:// URL:

file:///Users/you/code/my-skills-repo

Private repos: configure SSH or gh auth yourself — ide-agents does not store tokens.

Install artifacts

  1. Go to Skills or Agents
  2. Select a repository
  3. Click Global (🌐) or Project (📁) on a card — symlinks apply immediately

| Tool | Global (default config path) | Project subfolder | |--------|------------------------------|-------------------| | Cursor | ~/.cursor/ | .cursor | | Claude | ~/.claude/ | .claude | | Codex | ~/.codex/ | .agents |

Global paths use your configured config path per tool. Project path is the directory where you started ide-agents.

Click the active icon again to remove the symlink (only if target is already a symlink).

Development

npm install
npm run dev        # server on :3921 + Vite on :5173
npm run build      # compile server + web
npm start          # run production build

Documentation site (Docusaurus):

npm run docs:install
npm run docs:start # http://localhost:3000

For local testing, add a file:// URL to any git repo with skills/agents (see docs).

Data layout

~/.ide-agents/
├── config.json     # repos, installations, ides (per-tool enable + paths)
└── repos/
    └── <slug>/     # git clone

Docs: Settings & IDEs on the project site.

Troubleshooting

Cannot find native binding / @rolldown/binding-darwin-arm64

Vite 8 uses Rolldown native binaries (optional npm deps). If npm run dev fails:

rm -rf node_modules package-lock.json
npm install

Ensure Node 20.19+ when developing from source (node -v). The repo ships .npmrc with include=optional and platform bindings in optionalDependencies.

License

MIT