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

aitk-cli

v0.2.8

Published

Package manager for AI coding tools — install and share skills, MCPs, templates, configs and hooks for Claude Code, OpenCode, Gemini CLI and more.

Downloads

727

Readme


Quick Start

# Install a skill with npx (no install needed)
npx aitk-cli search "code review"
npx aitk-cli install official/code-review

# Or install globally
npm install -g aitk-cli
aitk search "memory"
aitk install official/memory-bank

What is AI Toolkit?

AI Toolkit is a package manager for AI coding tool artifacts. Think of it as npm, but for the prompts, skills, MCP servers, templates, and configurations that power your AI coding assistants.

Supported artifact types

| Type | Description | |------|-------------| | skill | Reusable prompts and workflows (slash commands) | | mcp | Model Context Protocol server configurations | | template | Project starter templates and boilerplates | | config | Tool configuration files and settings | | hook | Git hooks, pre/post-commit scripts |

Supported tools

Commands

Registry

aitk search <query>              # Search the registry
aitk install <scope>/<name>      # Install an artifact
aitk update [scope/name]         # Update installed artifacts
aitk remove <scope>/<name>       # Remove an artifact
aitk publish                     # Publish your artifact

Project

aitk init                        # Initialize a new project
aitk init <scope>/<template>     # Initialize from a template
aitk list                        # List installed artifacts
aitk status                      # Check for available updates
aitk sync                        # Sync artifacts with the registry
aitk config                      # Manage CLI configuration

Teams

aitk team create <slug>          # Create a team
aitk team list                   # List your teams
aitk team add-member <slug> <user>  # Add a team member

Authentication

aitk login                       # Authenticate with the registry
aitk logout                      # Remove local credentials

Configuration

The CLI stores its configuration in ~/.aitk/:

~/.aitk/
  auth.json      # Authentication credentials
  config.json    # CLI settings (registry URL, default tool)

CI/CD Integration

Publish artifacts automatically with GitHub Actions:

# .github/workflows/publish.yml
name: Publish to AI Toolkit
on:
  release:
    types: [published]
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: tarcisiojr/ai-toolkit/.github/actions/aitk-publish@main
        with:
          api-token: ${{ secrets.AITK_API_TOKEN }}

Shell Completions

# Bash
eval "$(aitk completions bash)"

# Zsh
eval "$(aitk completions zsh)"

# Fish
aitk completions fish | source

Links

License

MIT © tarcisiojr