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

@smicolon/ai-kit

v0.4.2

Published

AI coding tool pack manager for Smicolon standards

Readme

@smicolon/ai-kit

AI coding tool pack manager. Install convention packs (agents, skills, commands, rules, hooks) for any AI coding tool.

Install

Homebrew (macOS/Linux)

brew install smicolon/tap/ai-kit

Standalone Binary

curl -fsSL https://raw.githubusercontent.com/smicolon/ai-kit/main/scripts/install.sh | sh

Downloads a self-contained binary. Override install location with AI_KIT_INSTALL_DIR=~/.local/bin.

npm

npx @smicolon/ai-kit@latest init

Requires Node.js 22+.

Commands

init

Interactive first-time setup. Prompts for your AI tools, stack, and component preferences.

ai-kit init
ai-kit init --cwd apps/web  # monorepo sub-package

add <pack>

Add a pack to your project.

ai-kit add django
ai-kit add django --skills-only
ai-kit add django --agents-only
ai-kit add django --rules-only
ai-kit add django --tools claude-code,cursor

list

Show available or installed packs.

ai-kit list              # available packs
ai-kit list --installed  # installed packs

remove <pack>

Remove a pack and all its installed files.

ai-kit remove django

search <query>

Search packs by name or keyword.

ai-kit search auth
ai-kit search frontend
ai-kit search tdd

update [pack]

Update installed packs to latest versions.

ai-kit update          # update all
ai-kit update django   # update one

cache

Manage the local pack cache.

ai-kit cache clear     # force re-download on next run

Global Options

ai-kit --no-cache <command>      # skip cache, always fetch latest from GitHub
ai-kit --branch dev <command>    # use a specific branch (default: main)

How It Works

Packs are fetched from GitHub at runtime and cached locally at ~/.config/ai-kit/cache/. Every command checks for updates by comparing marketplace.json — if packs have changed upstream, they're re-downloaded automatically. No stale data when you're online.

Skills use a canonical + symlink strategy:

your-project/
├── .agents/skills/          # canonical copies
│   ├── import-convention-enforcer/
│   └── model-entity-validator/
├── .claude/skills/          # symlinks → .agents/skills/*
├── .cursor/skills/          # symlinks → .agents/skills/*
├── .claude/agents/          # copied .md files
├── .claude/commands/        # copied .md files
├── .claude/rules/           # copied .md files
├── .cursor/rules/           # converted .mdc files
├── .ai-kit.json             # tracks installed packs + files
└── .gitignore               # auto-updated

Tool preferences are stored globally at ~/.config/ai-kit/config.json (pick once, works in all projects). Local .ai-kit.json tracks installed packs and files for clean removal — it's auto-added to .gitignore.

Supported AI Tools

| Tool | Skills | Agents | Commands | Rules | Hooks | |------|:------:|:------:|:--------:|:-----:|:-----:| | Claude Code | yes | yes | yes | yes | yes | | Cursor | yes | - | - | yes (.mdc) | - | | Windsurf | yes | - | - | yes | - | | GitHub Copilot | yes | yes | - | - | - | | Codex | yes | yes | - | - | - | | Cline | yes | - | - | yes | - | | Continue | yes | - | - | yes | - | | Gemini | yes | yes | - | - | - | | Junie | yes | - | - | yes | - | | Kiro | yes | - | - | yes | - | | Amp | yes | yes | - | - | - | | Antigravity | yes | - | - | yes | - | | Augment | yes | - | - | yes | - | | Roo Code | yes | - | - | yes | - | | Amazon Q | yes | - | - | yes | - |

Available Packs

| Pack | Agents | Skills | Commands | Rules | |------|:------:|:------:|:--------:|:-----:| | django | 5 | 8 | 3 | 6 | | nestjs | 3 | 2 | 1 | 4 | | nextjs | 4 | 3 | 1 | 3 | | nuxtjs | 3 | 3 | 1 | 3 | | hono | 4 | 4 | 4 | - | | tanstack-router | 3 | 11 | 4 | - | | better-auth | 1 | 2 | 2 | - | | flutter | 3 | 3 | 5 | - | | architect | 1 | - | 1 | - | | dev-loop | - | 1 | 3 | - | | failure-log | - | 1 | 2 | - | | worktree | - | 1 | 1 | - | | onboard | 1 | 1 | 1 | - |

Monorepo Support

Use --cwd to target a sub-package. Both the sub-package and root .gitignore are updated.

ai-kit init --cwd apps/web
ai-kit add django --cwd apps/web

License

MIT