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

claudecode-starterkit

v1.0.0

Published

Claude Code starter kit installer — skills, commands, agents, MCP tools, and memory templates.

Readme

claudecode-starterkit


What this installs

claudecode-starterkit is a bootstrap package for Claude Code.

It installs in two layers:

  1. Global baseline — installed once into ~/.claude/
  2. Project overlay — installed into each repo you work on

Global install

Run once per machine:

npx claudecode-starterkit

This syncs into ~/.claude/:

| Directory | What goes there | |-----------|----------------| | ~/.claude/commands/ | Shared slash commands (/init, /plan, /ship, /handoff, /resume, /pr, /review, /status, /research, /health) | | ~/.claude/skills/ | Shared skills (memory-system, context-management, verification-before-completion, systematic-debugging, incremental-implementation, test-driven-development) | | ~/.claude/hooks/ | Lifecycle hooks (post-edit, on-stop) | | ~/.claude/settings.json | Merged permissions and hooks config | | ~/.claude/CLAUDE.md | Global rules (only if not already present) |


Project install

Run in each repo:

npx claudecode-starterkit install

This creates in .claude/:

.claude/
├── settings.json              — project-local config with memory file instructions
├── plans/                     — plan files from /plan command
└── memory/
    ├── project/
    │   ├── project.md         — project identity and goals
    │   ├── state.md           — current position and active work
    │   ├── tech-stack.md      — detected stack and constraints
    │   ├── roadmap.md         — phases and milestones
    │   ├── user.md            — workflow preferences
    │   └── gotchas.md         — footguns and conventions
    ├── handoffs/              — session handoff files
    ├── research/              — research notes
    └── _templates/            — templates for new memory files

Also creates CLAUDE.md at project root (if not already present).


Slash Commands

After global install, these commands are available in every Claude Code session:

| Command | Description | |---------|-------------| | /init | Create CLAUDE.md and detect tech stack | | /plan <task> | Create implementation plan | | /start <task> | Begin implementation | | /ship | Verify, review, and finalize work | | /handoff | Save session state for next session | | /resume | Pick up from previous session | | /status | Show current project status | | /review | Code review | | /pr | Create pull request | | /research <topic> | Research and save findings | | /health | Audit project health |


Skills

Skills are loaded by slash commands automatically. Available skills:

| Skill | Description | |-------|-------------| | memory-system | Memory file structure and session workflow | | context-management | Context health across long sessions | | verification-before-completion | Verification protocol before claiming done | | systematic-debugging | Root cause debugging protocol | | incremental-implementation | Vertical slice implementation approach | | test-driven-development | TDD workflow |


Options

# Global install (default — no args)
npx claudecode-starterkit

# Project install
npx claudecode-starterkit install

# Force re-generate memory files
npx claudecode-starterkit install --force

# Skip creating CLAUDE.md
npx claudecode-starterkit install --skip-claude-md

# Explicit global install
npx claudecode-starterkit install-global

Architecture

claudecode-starterkit/
├── baseline/              — source of truth for all installed content
│   ├── CLAUDE.md          — global rules
│   ├── settings.json      — baseline permissions and hooks
│   ├── command/           — slash command definitions
│   ├── skill/             — skill definitions
│   ├── hooks/             — lifecycle hook scripts
│   └── memory/
│       ├── _templates/    — memory file templates
│       └── project/       — placeholder project memory files
├── src/
│   ├── constants.mjs      — path constants
│   ├── fs-utils.mjs       — file system utilities
│   ├── templates.mjs      — memory file renderers
│   ├── install-global.mjs — global install logic
│   └── install-project.mjs — project overlay logic
└── bin/
    └── claudecode-starterkit.mjs  — CLI entry point

Difference from opencode-starterkit

| opencode-starterkit | claudecode-starterkit | |---------------------|---------------| | ~/.config/opencode/ | ~/.claude/ | | agents/*.md | Built-in subagent types | | command/*.md | ~/.claude/commands/*.md | | skill/*.md | ~/.claude/skills/*.md | | opencode.json | settings.json | | plugin/*.ts | MCP server (mcp/memory/) + hooks in settings.json | | AGENTS.md | CLAUDE.md | | .opencode/memory/ | .claude/memory/ (markdown templates + memory.db SQLite) |

Memory system

The cc-memory MCP server ports the 4-tier temporal memory from opencode-starterkit to Claude Code:

  • Tier 1 — Capture: UserPromptSubmit + PostToolUse hooks write to temporal_messages.
  • Tier 2 — Distillation: Stop hook runs TF-IDF distillation when ≥10 undistilled messages exist.
  • Tier 3 — Curation: Pattern-matching extracts observations (decision/bugfix/pattern/discovery/warning) from distillations.
  • Tier 4 — Injection: SessionStart hook injects BM25-scored knowledge as additionalContext.

11 MCP tools become available: observation, memory-search, memory-get, memory-read, memory-update, memory-timeline, memory-graph-add, memory-graph-query, memory-graph-invalidate, memory-compact, memory-admin. Plus /checkpoint <text> for manual capture.

Data lives per-project at .claude/memory/memory.db (SQLite + FTS5).