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

@heytherevibin/skillforge

v0.11.19

Published

MCP-first SKILL.md routing for AI agents: local embeddings, SQLite sessions and telemetry, optional LLM rerank paths, regex route policies and project overlays, companion conversation preset, parity CLI.

Readme

Skillforge

Runtime SKILL routing for MCP hosts. Skillforge selects a small, task-relevant subset of SKILL.md (and optional indexed project text) per request so agents stay grounded without loading full catalogs.

| Capability | Detail | |------------|--------| | Primary integration | stdio MCP (skillforge mcp) for Cursor, Claude Desktop, Claude Code, and compatible JSON-RPC hosts. | | Default control model | host routing: shortlist → host-chosen picked_names — no Anthropic key required for embedding-first paths. Optional auto / embedding / full when keys and policies allow. | | Data plane | SQLite under the operator profile and per-project_root .skillforge/: sessions, learned weights, auditable route events, optional route memories. | | Operator surface | Node skillforge CLI delegates to a managed Python venv; skillforge tools mirrors MCP; health, events, replay, weights, route-eval for preflight and CI. | | Governance | Regex route policies and project_notes overlays; companion preset mcp config --companion fuses conversation into embeddings when hosts pass transcript payloads. |

Out of scope for the core package: hosted multi-tenant SaaS, implicit cloud sync of operator SQLite, replacing the host’s model tier. See STRATEGY.md · SECURITY.md.


Documentation

| Guide | Use when | |-------|----------| | Documentation index | Choosing a reading order | | Getting started | Install, MCP JSON, first checks | | Environment & configuration | ~/.skillforge/env, MCP entry.env, full SKILLFORGE_* matrix | | MCP integration | Router modes, tools, _meta, companion preset | | CLI reference | Every skillforge subcommand | | Architecture & data | Pipeline, SQLite, policies, project RAG | | Troubleshooting | Missing tools, npm EOTP, invalid policy JSON |

Project meta: CHANGELOG.md · STRATEGY.md · CONTRIBUTING.md · CODE_OF_CONDUCT.md · RELEASING.md


Quick start

npx --yes @heytherevibin/skillforge --help
skillforge install
skillforge mcp config                    # paste JSON into host (e.g. ~/.cursor/mcp.json), restart IDE
skillforge mcp config --companion        # optional: embeddings fuse route_skills `conversation` when host sends transcript
skillforge health --quick && skillforge tips
skillforge config init && skillforge config validate   # optional ~/.skillforge/env

Unset SKILLFORGE_ROUTER_MODEhost: route_skills once for shortlist, again with picked_names (+ same session_id; pass conversation on both calls when using --companion).


Routing context: policies vs route memories

  • project_notes (from route policies JSON — Environment & configuration): repo-scoped overlays (exclude_skills, boosts, static notes prefixed into the embedding query). Prefer committing policies with the repository so CI and teammates share routing intent.
  • Route memories (SKILLFORGE_ROUTE_MEMORY, MCP route_memory_*): operator-local bullets merged before project_notes. Use for personal or machine-specific quirks; prefer policies for canonical org rules.

Memories do not sync to Skillforge-hosted cloud; backup = SQLite / weights export. See Architecture & data.


What ships on npm

Publishing is allowlisted in package.json files: runtime python/app/*.py (not the full python/ tree — no pytest tree, no bytecode in a clean git checkout), python/requirements.txt, skills/, bin/, lib/, ci/, docs/, and project meta markdown. .npmignore documents extra exclusions (caches, editor cruft). Because npm’s files field does not apply .npmignore to every nested path, the Skillforge release workflow removes any skills/**/tests directory and python/app/__pycache__ immediately before npm pack / npm publish (see .github/workflows/release.yml). A local npm pack from a dirty tree may still include cached __pycache__ or vendored tests — use a clean clone or match the release job’s Strip step if you need a bit-identical tarball.

| Path | Role | |------|------| | bin/cli.js | skillforge entry; merges env (buildEnv), spawns Python | | lib/ | Host setup, user env profile (skillforge config validate) | | python/app/*.py | Router, MCP server, SQLite, CLIs (allowlist — no packaged pytest tree) | | python/requirements.txt | Pip install targets for skillforge install | | skills/ | Bundled SKILL.md corpus (see Strip step in release workflow for vendored tests/ dirs) | | ci/ | Node --test harness used by npm test | | docs/ | Operator guides |

Automated checks: npm test (Node). Full Python pytest runs in repository CI (.github/workflows/ci.yml), not shipped to consumers.


Install

Scoped @heytherevibin/skillforge: global npm install -g or npx -y (see badges).

Version line: 0.11.19 on main aligns package.json, git tags v*, MCP serverInfo.version, and release artefacts — RELEASING.md.


License

MIT License © contributors.