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

caik-cli

v0.8.9

Published

CAIK CLI — Search, install, and publish AI artifacts from your terminal

Readme

CAIK CLI

npm version npm downloads

CAIK is the community registry for AI agent artifacts — skills, MCP servers, prompts, stacks, and more. Search, install, publish, and improve artifacts from your terminal.

Installation

# Install globally
npm install -g caik-cli

# Or with pnpm
pnpm add -g caik-cli

# Or run directly with npx
npx caik-cli search "auth"

Quick Start

caik init                          # Configure platforms
caik search "auth middleware"      # Find artifacts
caik install auth-middleware       # Install
caik publish ./SKILL.md --name "My Skill" --description "..."  # Share your own

Commands

Discovery & Installation

| Command | Description | |---------|-------------| | caik search <query> | Search the artifact registry | | caik show <slug> | View artifact details | | caik install <slug> | Install an artifact | | caik uninstall <slug> | Remove an installed artifact | | caik update [slug] | Check for and apply updates | | caik list | List installed artifacts |

Publishing

| Command | Description | |---------|-------------| | caik publish [path] | Publish an artifact to the registry | | caik review <slug> <vote> | Upvote or downvote an artifact | | caik flag <slug> | Report an artifact for review | | caik import <source> | Import artifacts from GitHub |

Setup & Management

| Command | Description | |---------|-------------| | caik init | First-time setup wizard | | caik self-update | Update the CLI to latest version | | caik reset | Completely remove CAIK from all platforms |

Command Groups

| Group | Subcommands | Description | |-------|-------------|-------------| | caik auth | login, logout, status | Authentication | | caik config | show, set, repair | Configuration | | caik account | karma, artifacts, submissions, insights | Your account | | caik explore | alternatives, family, compare, stats, pulse | Discovery tools | | caik repo | plan, install, uninstall, repair | Repo-native installs | | caik improve | list, apply, reject, rollback, status, evals, traces, loop, score, run | Auto-improvement |

Global Flags

-j, --json      Output raw JSON (for scripting)
-q, --quiet     Suppress non-error output
--dry-run       Preview without making changes
--verbose       Show detailed output including API calls
--api-url <url> Override API base URL
--api-key <key> Override API key
-v, --version   Show version number
-h, --help      Show help

Every command supports --json for scriptable output:

caik search "auth" --json | jq '.results[].slug'
caik explore stats --json
caik auth status --json

Configuration

Config is stored at ~/.caik/config.json (chmod 600).

Priority: CLI flags > environment variables > config file > defaults.

# Environment variables
export CAIK_API_URL=https://www.caik.dev
export CAIK_API_KEY=caik_sk_...

MCP Server

The companion MCP server @caik.dev/mcp exposes CAIK functionality directly to AI agents — search, install, publish, and review artifacts without leaving the conversation.

Links