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

fitout

v0.1.0

Published

Context-aware plugin manager for Claude Code

Downloads

97

Readme

Fitout

CI

Context-aware plugin manager for Claude Code.

The Problem

Managing Claude Code plugins across projects is painful:

  • Config files look correct but don't reflect what's actually installed
  • This mismatch leads to broken sessions and missing capabilities
  • Manually syncing plugins across projects is tedious and error-prone

The Solution

Fitout ensures your actual runtime state matches your declared configuration.

  1. Declare desired plugins in .claude/fitout.toml
  2. Run fitout status to see the diff
  3. Run fitout apply to sync

Installation

# Install globally
npm install -g fitout

# Set up Claude integration
fitout init

This adds a SessionStart hook to Claude Code that automatically installs missing plugins when you start a session.

Non-interactive setup

fitout init --yes        # Use defaults (creates default profile)
fitout init --hook-only  # Only add hook, no profile

Requires Claude Code CLI to be installed.

Quick Start

Create .claude/fitout.toml in your project:

plugins = [
  "superpowers@superpowers-marketplace",
  "ci-cd-tools@pickled-claude-plugins",
]

Check status:

fitout status

Output:

Context: /path/to/project

✗ superpowers@superpowers-marketplace (missing)
✗ ci-cd-tools@pickled-claude-plugins (missing)

0 present, 2 missing

Install missing plugins:

fitout apply

Commands

fitout status

Shows the diff between desired and installed plugins.

  • - Plugin is installed
  • - Plugin is missing
  • ? - Plugin is installed but not in config

Exit code is 1 if any plugins are missing, 0 otherwise.

fitout apply

Installs missing plugins to sync with config.

fitout apply           # Install missing plugins
fitout apply --dry-run # Preview what would be installed

Profiles

Share plugin sets across projects using profiles.

User Profiles

Create profiles at ~/.config/fitout/profiles/:

# ~/.config/fitout/profiles/default.toml
# Auto-included in every project (silent if missing)
plugins = [
  "superpowers@superpowers-marketplace",
]
# ~/.config/fitout/profiles/backend.toml
plugins = [
  "database-tools@some-registry",
  "api-helpers@some-registry",
]

Using Profiles

Reference profiles in your project config:

# .claude/fitout.toml
profiles = ["backend"]
plugins = [
  "project-specific@registry",
]

Plugins merge additively. The default profile auto-includes if present.

Provenance

Status output shows where each plugin comes from:

Context: /path/to/project

✓ superpowers@superpowers-marketplace (from: default)
✓ database-tools@some-registry (from: backend)
✓ project-specific@registry

3 present

Configuration Reference

Project Config (.claude/fitout.toml)

# Optional: explicit profiles to include
profiles = ["backend", "testing"]

# Required: plugins for this project
plugins = [
  "plugin-name@registry",
]

Profile Config (~/.config/fitout/profiles/<name>.toml)

# Plugins provided by this profile
plugins = [
  "plugin-name@registry",
]

Development

npm install          # Install dependencies
npm test             # Run tests
npm run dev -- status # Run in dev mode
npm run build        # Build to dist/

License

MIT