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

@macpaw/cctk

v1.0.1

Published

A comprehensive CLI toolkit for boosting Claude Code to the insane level.

Readme

@macpaw/cctk

A CLI toolkit that supercharges Claude Code with 27 skills, 16 agents, 30+ slash commands, and production-grade workflows — installed in one command.

Install

npx @macpaw/cctk install

The interactive installer will:

  • Deploy skills, agents, and commands to .claude/
  • Resolve dependencies (system tools, npm/pip packages)
  • Generate .claude/.mcp.json and environment configs
  • Set up Python venv for skills that need it
  • Run post-install hooks (e.g., npm install for skill scripts)

Re-running on an existing installation — the installer detects .claude/ or CLAUDE.md and shows the installed vs current version. You choose how to proceed:

| Action | Effect | |--------|--------| | Update templates | Refreshes template files; preserves .env, .cctk.json, .claude/.mcp.json | | Fresh install | Overwrites everything including configs | | Fresh install with backup | Backs up .claude/ to tmp/.claude/ then does fresh install | | Cancel | Exits without changes |

Commands

| Command | Description | Status | |---------|-------------|--------| | init | Copy all Claude Code infrastructure without prompts | available | | install | Full toolkit installation with guided setup | available | | add-skill | Add individual skills to an existing installation | available | | add-agent | Add individual agent to existing setup | available | | add-command | Add individual slash command to existing setup | available |

init

npx @macpaw/cctk init

Non-interactive setup (5 steps):

  1. Load all component registries
  2. Copy infrastructure files (hooks, scripts, settings, output-styles) to .claude/
  3. Copy config templates (AGENTS.md, CLAUDE.md) — skipped if CLAUDE.md already exists to preserve customizations
  4. Run postInstall hooks for all components
  5. Write toolkit metadata

Use init when you want a zero-prompt baseline installation. Run install afterwards for full guided setup including env config, API keys, and .gitignore updates.

add-skill

npx @macpaw/cctk add-skill

Interactive flow (6 steps):

  1. Load skill registries
  2. Scan .claude/ to detect already-installed components
  3. Multiselect prompt — installed skills are shown as disabled
  4. Resolve transitive dependencies (agents, commands, hooks pulled in automatically)
  5. Check and optionally install missing external dependencies
  6. Copy files; run postInstall hooks

Infrastructure guard: if .claude/settings.json or hooks/ are absent and a selected skill needs them, the command offers an additive install (never overwrites existing files).

add-agent

npx @macpaw/cctk add-agent

Interactive flow (6 steps):

  1. Load agent registry
  2. Scan .claude/agents/ to detect already-installed agents
  3. Multiselect prompt — installed agents shown as disabled
  4. Resolve transitive dependencies (skills, commands pulled in automatically)
  5. Check and optionally install missing external dependencies
  6. Copy files; run postInstall hooks

add-command

npx @macpaw/cctk add-command

Interactive flow (6 steps):

  1. Load command registry
  2. Scan .claude/commands/ to detect already-installed commands
  3. Multiselect prompt — installed commands shown as disabled
  4. Resolve transitive dependencies (skills, agents pulled in automatically)
  5. Check and optionally install missing external dependencies
  6. Copy files; run postInstall hooks

What's Inside

Skills (27)

Domain expertise Claude loads on demand:

| Category | Skills | |----------|--------| | Development | frontend-development, backend-development, web-frameworks, databases, better-auth | | Design | frontend-design, ai-artist, mermaidjs-v11 | | DevOps | devops, mcp-builder, mcp-management, repomix | | AI/ML | claude-code, context-engineering, sequential-thinking | | Quality | code-review, debugging, problem-solving | | Media | media-processing, chrome-devtools | | Planning | planning, research, plans-kanban | | Docs | docs-seeker, skill-creator, markdown-novel-viewer | | Meta | template-skill |

Agents (16)

Specialized subagents for task delegation:

brainstormer · code-reviewer · copywriter · database-admin · debugger · docs-manager · fullstack-developer · git-manager · journal-writer · mcp-manager · planner · project-manager · researcher · scout · scout-external · tester · ui-ux-designer

Slash Commands (30+)

Workflow shortcuts: /cook, /plan, /fix, /test, /code, /design, /bootstrap, /brainstorm, /scout, /preview, /docs, /git, /review, /content, and more — with variants like /plan:hard, /fix:parallel, /cook:auto.

Architecture

templates/
├── claude/
│   ├── skills/          # 27 skill bundles with SKILL.md + references + scripts
│   ├── agents/          # 16 agent prompts
│   ├── commands/        # 30+ slash command definitions
│   └── scripts/         # Shared utility scripts
├── config/              # CLAUDE.md, .env.example, .mcp.json templates
└── plans/               # Plan templates

Built with @mwkt/cli-framework - internal cli framework. Registry-driven — each component type (skills, agents, commands) has a registry.json that defines files, dependencies, and metadata.

Requirements

  • Node.js 18+
  • Claude Code CLI