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

skillhub-local

v0.2.19

Published

Local web app for managing AI agent skills across your PC

Readme

SkillHub Local

One local dashboard for all your AI coding agents.

Skills · Memories · Instructions · Plugins · MCP Servers Claude Code · Codex · Cursor · OpenCode · Gemini CLI · Copilot · Windsurf · Cline and more

Using Claude + Codex + Cursor? Your agent context is probably scattered across a dozen hidden folders. SkillHub Local puts all of it — skills, memories, instructions, plugins, and MCP servers — in one place you can actually see and manage.

Install

Requires Node.js (v18+).

SkillHub uses the skills CLI under the hood for install/remove/update/search. It prefers a globally installed binary and falls back to npx skills (or npx skills@<version> via SKILLHUB_SKILLS_VERSION):

npm install -g skills

Then install SkillHub:

npm install -g skillhub-local
skillhub-local

Open http://localhost:3742. That's it.

What you can do

See everything

What skills, memories, and instructions does Claude Code have right now? What MCP servers are configured in Cursor? SkillHub scans your filesystem and shows it all in one dashboard — no more grepping through ~/.claude, ~/.codex, and ~/.cursor.

Move context between agents

Found a useful skill in Claude but want it in Codex? Copy or symlink it with one click. The agent matrix shows which skills live where, and fills the gaps directly.

Clean up the mess

Surf stale memories, duplicate skills, and instruction files spread across projects. Spot what's global vs. project-scoped, what's installed where, and tidy it up from a single view.


Features

  • Agent detection — auto-detects 16 agents (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, GitHub Copilot, Windsurf, Cline, Amp, Continue, Roo Code, Goose, Antigravity, Hermes, Zed, Warp), showing install status plus skill and plugin counts per agent
  • Projects — point SkillHub at your code folders (Settings → Project Directories); each subdirectory becomes a project showing its skills, AGENTS.md files, memories, and MCP servers in one view
  • Skill management — scan global and per-project skills (.claude/skills, .agents/skills, .roo/skills, … parsed from SKILL.md), install, remove, update, copy/symlink between agents, with per-agent install status and raw content editing
  • Skill store — browse and search the skills.sh registry, one-click install to all detected agents
  • MCP servers — scan server configs (JSON/JSONC/TOML) across 10 agents, live tool discovery, OAuth flow, and per-server header/env credential overrides
  • Memories — scan AI-learned context from Codex, Claude Code, Windsurf, Cline, and Gemini CLI; global and project-scoped, with inline editing and re-scan
  • Instructions — scan user-authored rules across 12+ agents and AGENTS.md, with YAML frontmatter badges, inline editing, and configurable project directories
  • Plugins — detect plugins in agent cache directories (Cursor, Codex), browse skills inside each plugin, and configure custom plugins via skillhub.config.json
  • Dashboard — stat cards, per-agent and per-project context breakdowns, and a real-time activity feed over WebSocket
  • Settings — default scope, install method (symlink/copy), theme, telemetry, and project directories with a native OS folder picker

Setup details

Development from source:

git clone https://github.com/mjalalimanesh/skillhub-local.git
cd skillhub-local
npm install
npm run dev

Frontend on :5173, backend on :3742; Vite proxies /api and /ws.

Security note: Installing a skill runs its code on your machine. Only install skills from sources you trust.

Authentication

SkillHub binds to 127.0.0.1 and protects every API endpoint with a token generated on first run and stored at ~/.skillhub/token (mode 0600).

  • Every /api/* request (except /api/auth/token and /api/health) requires the header x-skillhub-token: <token>
  • WebSocket connections pass the token in the query string: /ws?token=<token>
  • The token is logged to stdout on startup

This guards against malicious sites reaching the local server, since CORS does not block raw WebSocket or non-browser requests.

Configuration

| Variable | Default | Description | | --- | --- | --- | | PORT | 3742 | Backend listen port | | HOST | 127.0.0.1 | Backend bind address | | SKILLHUB_FRONTEND_DIST | ../../frontend/dist | Override the production frontend build path | | SKILLHUB_SKILLS_VERSION | — | Pin the skills CLI version used via npx | | SKILLHUB_LOG | off | Enable request logging (1 for info, or a pino level) |

Tech Stack

  • Frontend: Vite 6 + React 19 + TypeScript + Tailwind CSS v4 + Radix UI + Zustand + React Query
  • Backend: Fastify 5 + WebSocket (ws) + gray-matter + smol-toml + marked
  • MCP: @modelcontextprotocol/sdk (live tool discovery, OAuth flow)
  • CLI: npx skills (non-interactive flags for install/remove/update/copy)
  • Store: skills.sh registry via CLI search + HTTP API

Project Structure

packages/
├── frontend/              # Vite + React SPA
│   └── src/
│       ├── components/
│       │   ├── dashboard/   # DashboardPage (stats, activity feed)
│       │   ├── skills/      # SkillsPage, SkillDetailPage, MatrixPage, CopyToAgentsDialog
│       │   ├── agents/      # AgentsPage (agent cards with skill/plugin counts)
│       │   ├── projects/    # ProjectsPage, ProjectDetailPage (per-project context)
│       │   ├── store/       # StorePage (search, trending, install)
│       │   ├── mcp/         # McpPage, McpDetailPage (servers, tool discovery, OAuth)
│       │   ├── plugins/     # PluginsPage (detected + custom plugins, expandable)
│       │   ├── memories/    # MemoriesPage, AgentMemoriesPage, MemoryDetailPage
│       │   ├── instructions/# InstructionsPage, ProjectInstructionsPage, InstructionDetailPage
│       │   ├── settings/    # SettingsPage (scope, method, theme, telemetry, project dirs)
│       │   ├── layout/      # Layout, Sidebar, PageHeader
│       │   └── ui/          # Radix-based primitives (button, card, badge, dialog, etc.)
│       ├── hooks/         # useWebSocket
│       ├── stores/        # Zustand state (agents, skills, progress)
│       └── lib/           # API client, types, utils
└── backend/               # Fastify server (also the skillhub-local CLI entrypoint)
    └── src/
        ├── routes/        # REST endpoints (agents, skills, projects, config, memories, instructions, browse, mcp, auth, health)
        └── services/      # Scanner, CLI executor, store API, plugins, memory/instruction/mcp scanners, mcp client + OAuth