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

ai-builder

v0.1.9

Published

CLI for installing Claude Code artifacts from aibuilder.sh

Readme

npm version Downloads


Overview

ai-builder is a package manager for Claude Code artifacts. Install community-built skills, agents, and commands directly into your .claude/ directory with a single command.

Features

  • Install artifacts - Add skills, agents, and commands from the registry
  • Search the registry - Find artifacts by name, description, or task category
  • Manage installed artifacts - List and remove artifacts from your project
  • Self-update - Keep the CLI up to date with a single command
  • Shell completions - Tab completion for bash and zsh

Installation

npm install -g ai-builder

Or use directly with npx:

npx ai-builder add agent git-town/code_reviewer

QuickStart

# Install an agent
npx ai-builder add agent git-town/code_reviewer

# Install a command
npx ai-builder add command truffle-ai/quality-checks

# Install a skill
npx ai-builder add skill anthropic/pdf

# Search for artifacts
npx ai-builder search "test"

# List installed artifacts
npx ai-builder list

Usage

Add

Install an artifact from the registry:

npx ai-builder add <type> <author/slug>

Types: skill, agent, command

Examples:

# Install an agent
npx ai-builder add agent git-town/code_reviewer

# Install a command
npx ai-builder add command truffle-ai/quality-checks

# Install a skill
npx ai-builder add skill anthropic/mcp-builder

# Force reinstall (overwrite existing)
npx ai-builder add agent git-town/code_reviewer --force

Remove

Remove an installed artifact:

npx ai-builder remove <type> <author/slug>
npx ai-builder rm <type> <author/slug>  # alias

Examples:

# Remove an agent
npx ai-builder remove agent git-town/code_reviewer

# Skip confirmation
npx ai-builder rm agent git-town/code_reviewer --yes

List

List all installed artifacts:

npx ai-builder list
npx ai-builder ls  # alias

Options:

# Filter by type
npx ai-builder list --type agent
npx ai-builder list --type skill
npx ai-builder list --type command

Search

Search the registry for artifacts:

npx ai-builder search <query>

Options:

# Filter by type
npx ai-builder search "review" --type agent

# Filter by task category
npx ai-builder search "nextjs" --task frontend

# Limit results
npx ai-builder search "database" --limit 5

Status

Show CLI status and installed artifacts:

npx ai-builder status

Output includes:

  • CLI version
  • Claude directory detection
  • Installed artifact counts by type
  • Registry connectivity check

Update

Update the CLI to the latest version:

npx ai-builder update

Options:

# Check for updates without installing
npx ai-builder update --check

Completion

Generate shell completions for bash or zsh:

# Output completion script
npx ai-builder completion bash
npx ai-builder completion zsh

# Auto-install for current shell
npx ai-builder completion --setup

Manual installation:

# Bash
ai-builder completion bash >> ~/.bashrc

# Zsh
ai-builder completion zsh >> ~/.zshrc

Artifact Types

| Type | Description | Install Location | |------|-------------|------------------| | skill | Background capabilities that enhance Claude's abilities | .claude/skills/{name}/ | | agent | Specialized agents invoked with @agent-name | .claude/agents/{name}.md | | command | Slash commands invoked with /command-name | .claude/commands/{name}.md |


Using Installed Artifacts

Agents

Invoke agents by mentioning them with @:

@reviewer review my latest changes

Commands

Run commands with /:

/deps

Skills

Skills are automatically available to Claude Code - no invocation needed.


Browse

Find artifacts at aibuilder.sh

  • Browse by task category (testing, code review, documentation, etc.)
  • View artifact details and source code
  • See install counts and community activity

Links


License

MIT