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

subcode-skills

v0.1.1

Published

Portable Claude skills for enhanced developer experience

Readme

Subcode Skills

Portable Claude skills for enhanced developer experience

# Install subcode skills in your repository
npx subcode-skills install

What is this?

Subcode Skills is a collection of portable tools designed to supercharge your development workflow with Claude. Each skill provides Claude with specialized knowledge, scripts, and best practices for specific tasks.

Read the full vision: VISION.md

Quick Start

Interactive Installation

npx subcode-skills install

Headless/CI Installation

npx subcode-skills install --yes

The installer will:

  1. Check for required dependencies (Bun)
  2. Let you select which skills to install
  3. Set up the .subcode/ directory in your repo
  4. Install selected Claude skills to .claude/skills/

Available Skills

subcode-worktrees

Git worktree management with best practices.

Features:

  • Create worktrees in a standardized location (.subcode/worktrees/)
  • Auto-install dependencies in new worktrees
  • Copy environment files automatically
  • List, remove, and prune worktrees
  • Structured JSON output for Claude integration

Commands:

# Create a new worktree
bun run .claude/skills/subcode-worktrees/src/create.ts --name feature-auth

# List all worktrees
bun run .claude/skills/subcode-worktrees/src/list.ts

# Remove a worktree
bun run .claude/skills/subcode-worktrees/src/remove.ts --name feature-auth

# Clean up stale worktrees
bun run .claude/skills/subcode-worktrees/src/prune.ts

Requirements

  • Bun (will be installed automatically if missing)
  • Git (for worktree operations)
  • gum (optional, for fancy UI - falls back to simple prompts)

How It Works

Directory Structure

After installation, your repo will have:

your-repo/
├── .subcode/                    # Subcode tooling directory
│   ├── .gitignore               # Ignores worktrees, logs, etc.
│   ├── config.json              # Subcode configuration
│   └── worktrees/               # Git worktrees live here
│       └── feature-branch/
├── .claude/
│   └── skills/
│       └── subcode-worktrees/   # Installed skill
└── ...your code

Configuration

.subcode/config.json:

{
  "$schema": "https://raw.githubusercontent.com/subcode-labs/subcode-skills/main/schemas/config.schema.json",
  "version": "1.0.0",
  "worktrees": {
    "defaultBaseBranch": "main",
    "autoInstallDeps": true,
    "copyEnvFiles": true,
    "packageManager": "auto"
  }
}

Using with Claude

Once installed, Claude will automatically use these skills when relevant. Just ask:

  • "Create a new worktree for the auth feature"
  • "List my current worktrees"
  • "Clean up old worktrees"
  • "Remove the feature-auth worktree"

Claude will use the skill scripts and follow best practices automatically.

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

License

MIT - see LICENSE


Read the full vision | Report an issue