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

@evatt/loadout

v0.1.10

Published

Composable configuration bundles for AI coding agents

Readme

Loadout

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.

loadout activate base backend     # Backend work
loadout activate base frontend    # Frontend work  
loadout 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. Loadout 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. Loadout lets you write once and renders correctly for each tool.

Installation

npm (recommended)

npm install -g @evatt/loadout

From source

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

Quick Start

# Initialize
loadout init

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

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

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

Importing Existing Configs

Already have rules and skills scattered across tool directories?

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

loadout 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 docs          # Full documentation
loadout --help        # Command reference

Or read docs/LOADOUT.md.

Supported Tools

| Tool | Rules | Skills | Instructions | |------|-------|--------|--------------| | Claude Code | ✓ | ✓ | ✓ | | Cursor | ✓ | ✓ | ✓ | | OpenCode | ✓ | ✓ | ✓ | | Codex | — | ✓ | ✓ | | Pi | ✓ | ✓ | ✓ |

License

Apache-2.0