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

loadouts

v0.2.1

Published

Composable configuration bundles for AI coding agents

Readme

Loadouts

Composable configuration bundles for AI coding agents.

Organize your rules, skills, and instructions into named loadouts that you can mix and match based on the task at hand.

loadouts activate base backend     # Backend work
loadouts activate base frontend    # Frontend work  
loadouts activate base backend ml  # Combine for ML backend work

Why Loadout?

Not every task needs the same configuration. Backend work needs different rules than frontend work. ML projects need specialized skills. Code review needs different context than greenfield development.

Not every teammate wants the same setup. One person might want strict linting rules, another prefers minimal guidance. Loadouts lets teams track all available configurations while giving individuals the freedom to activate what works for them.

Not every tool uses the same format. Claude Code, Cursor, OpenCode, Codex, and Pi each have their own config locations and quirks. Loadouts lets you write once and renders correctly for each tool.

Installation

npm (recommended)

npm install -g loadouts

From source

git clone https://github.com/evatths/loadouts.git
cd loadouts
npm install
npm run build
npm link

Quick Start

# Initialize
loadouts init

# Create task-specific loadouts
loadouts create backend -e base    # Extends base
loadouts create frontend -e base
loadouts create ml -e base

# Add rules/skills to each
loadouts rule add api-standards    # Add to current loadout
loadouts skill add debugging

# Activate what you need
loadouts activate backend          # Just backend
loadouts activate backend ml       # Backend + ML combined

Importing Existing Configs

Already have rules and skills scattered across tool directories?

loadouts init                      # Detects existing configs automatically
loadouts install                   # Or import them separately
loadouts sync

loadouts install scans all tool directories (.claude/, .cursor/, .opencode/, etc.) and imports everything it finds. Use --dry-run to preview, -i for interactive selection.

Documentation

Loadout is self-documenting:

loadouts docs              # Overview and quick reference
loadouts docs quickstart   # Get started in 60 seconds
loadouts docs concepts     # Core model explained
loadouts docs commands     # Full command reference
loadouts docs --list       # List all topics

Or read the full reference: LOADOUT.md

For AI Agents

Loadout includes a bundled skill that teaches AI agents how to use it:

loadouts skill import --builtin loadouts-usage
loadouts sync

This adds a skill that triggers when agents are editing agent configuration (rules, skills, instructions), guiding them to use the CLI and loadouts docs for details.

Supported Tools

| Tool | Rules | Skills | Instructions | Extra Artifacts | |------|-------|--------|--------------|-----------------| | Claude Code | ✓ | ✓ | ✓ | — | | Cursor | ✓ | ✓ | ✓ | — | | OpenCode | ✓ | ✓ | ✓ | config, plugins | | Codex | — | ✓ | ✓ | — | | Pi | ✓ | ✓ | ✓ | extensions, themes |

License

Apache-2.0