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

loadout-mcp

v0.1.0

Published

MCP server that bridges the Agent Skills spec to any MCP-compatible agent. Discover, search, and manage skills through standardized MCP primitives.

Readme

Loadout

Load out your AI agent with skills. An MCP server that bridges the Agent Skills spec to any MCP-compatible agent.

Features

  • Auto-discovery - Monitors common skill directories and hot-reloads changes
  • MCP Tools - List, search, get manifests, run scripts, install skills
  • MCP Resources - Access skill content via loadout:// URIs
  • MCP Prompts - Guidance templates for auditing, using, comparing, and creating skills
  • Bundling - Create publishable skill packs with pre-bundled skills

Installation

npm install loadout

Or use a pre-bundled skill pack:

npm install web3-loadout  # Example bundle with crypto/DeFi skills

Quick Start

Add to Claude Code

claude mcp add loadout -- npx loadout --mcp --watch --allow-scripts

Run Standalone

npx loadout --mcp --watch --allow-scripts

CLI Options

| Option | Description | |--------|-------------| | --mcp | Run as MCP server with stdio transport | | --watch | Enable hot-reload when skills change | | --skills-dir <path> | Add custom skill directory (can be repeated) | | --allow-scripts | Enable script execution tool |

Skill Discovery

Loadout automatically monitors these directories for skills:

Bundled Skills (for published packages)

./bundled-skills/

Project Local

./skills/
./.claude/skills/
./.cursor/skills/
./.codex/skills/
./.agents/skills/

User Home (globally installed)

~/.claude/skills/
~/.cursor/skills/
~/.codex/skills/
~/.agents/skills/

Skills are directories containing a SKILL.md file with YAML frontmatter:

---
name: my-skill
description: What this skill does
version: 1.0.0
---

# My Skill

Instructions and documentation...

MCP Tools

list_skills

List all discovered skills.

// Returns
[
  { "name": "skill-name", "description": "...", "path": "/path/to/skill" }
]

search_skills

Search skills by name or description.

{ "query": "blockchain" }

get_skill_manifest

Get the full parsed structure of a skill.

{ "name": "skill-name" }

// Returns
{
  "name": "skill-name",
  "description": "...",
  "toc": [...],        // Table of contents
  "codeBlocks": [...], // Extracted code examples
  "links": [...],      // Internal and external links
  "files": { "scripts": [], "references": [], "assets": [] }
}

run_skill_script

Execute a script from a skill's scripts/ directory.

{
  "skill": "skill-name",
  "script": "setup.sh",
  "args": ["--verbose"]
}

Only .sh, .js, .ts, .py files are allowed. Requires --allow-scripts flag.

install_skill

Install a bundled skill to an agent's skills directory.

{
  "skill": "evm-swiss-knife",
  "agent": "claude",    // claude, cursor, codex, or agents
  "global": false       // true = ~/.claude/skills/, false = ./.claude/skills/
}

help

Get documentation for Loadout.

{ "topic": "tools" }  // tools, resources, prompts, discovery, bundling, or all

MCP Resources

Access skill content via loadout:// URIs:

| URI Pattern | Description | |-------------|-------------| | loadout://help | Loadout documentation | | loadout://{name} | Full SKILL.md content | | loadout://{name}/manifest | JSON manifest | | loadout://{name}/section/{slug} | Specific section by header slug | | loadout://{name}/code/{index} | Code block by index | | loadout://{name}/references/{file} | Reference file content | | loadout://{name}/scripts/{file} | Script file content | | loadout://{name}/assets/{file} | Asset file content |

MCP Prompts

Guidance templates for working with skills:

| Prompt | Description | |--------|-------------| | audit-skill | Security audit checklist | | use-skill | How to activate and apply a skill | | compare-skills | Compare two skills | | create-skill | Guide for creating new skills | | skill-summary | Generate documentation summary |

Creating Skill Bundles

Bundle skills into publishable packages:

1. Create bundle.config.json

{
  "bundles": {
    "web3-loadout": {
      "name": "web3-loadout",
      "description": "Loadout with Web3/crypto skills",
      "version": "1.0.0",
      "skills": [
        "references/crypto-skills/skills/evm-swiss-knife",
        "references/crypto-skills/skills/token-minter"
      ]
    }
  }
}

2. Build the bundle

npm run bundle                   # Build all bundles
npm run bundle -- web3-loadout   # Build specific bundle

3. Publish

cd bundles/web3-loadout
npm publish

Bundle Output Structure

bundles/web3-loadout/
├── dist/              # Compiled MCP server
├── bundled-skills/    # Embedded skills
│   ├── evm-swiss-knife/
│   └── token-minter/
├── package.json       # Named "web3-loadout"
└── README.md

Development

Local Skills Directory

Place skills in ./skills/ for development (gitignored by default):

skills/
├── my-skill/
│   ├── SKILL.md
│   ├── scripts/
│   ├── references/
│   └── assets/

Run Tests

npm test

Build

npm run build

Skill Directory Structure

my-skill/
├── SKILL.md           # Required: Main skill file with frontmatter
├── scripts/           # Optional: Executable scripts
│   ├── setup.sh
│   └── run.py
├── references/        # Optional: Reference documentation
│   └── api-guide.md
└── assets/            # Optional: Images, data files, etc.
    └── diagram.png

SKILL.md Format

---
name: my-skill
description: Brief description of what this skill does
version: 1.0.0
license: MIT
author: Your Name
---

# My Skill

Main instructions and documentation.

## Section One

Content organized by headers becomes navigable via table of contents.

## Code Examples

```python
# Code blocks are extracted and indexed
print("Hello from skill!")

See Also


## License

MIT