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

claude-preset

v1.0.1

Published

11 curated Claude Code command presets for code review, testing, debugging, and more. Boost your productivity with one command.

Readme

claude-preset

Supercharge your Claude Code workflow with production-ready command presets

Install 11 curated, battle-tested command presets in seconds. No configuration needed.

npm version License: MIT

Why claude-preset?

Claude Code is powerful, but building effective prompts takes time. This package gives you:

  • 11 production-ready commands optimized for real-world workflows
  • Zero configuration - works out of the box
  • Multilingual support - English and Korean presets
  • Consistent quality - carefully crafted prompts that actually work
  • Time-saving - stop writing the same prompts over and over

Quick Start

npx claude-preset

That's it! Select your language, and all commands are installed to .claude/commands.

Available Commands

Development Workflow

/commit

Analyzes your changes and generates conventional commit messages.

# Automatically analyzes staged/unstaged changes
# Provides ready-to-use git commands
/commit

/pr

Creates comprehensive pull request descriptions with context.

# Generates title, summary, and test plan
/pr

/review

Performs thorough code review with actionable feedback.

# Reviews current changes or specific files
/review src/components/Button.tsx

Code Quality

/test

Generates unit tests based on your testing framework.

# Auto-detects Jest, Vitest, Mocha, etc.
/test src/utils/format.js

/lint

Fixes linting issues and explains what was wrong.

# Runs your linter and applies fixes
/lint

/security

Scans for security vulnerabilities and best practices.

# Checks for common vulnerabilities (XSS, SQL injection, etc.)
/security

Optimization

/refactor

Suggests refactoring opportunities and removes dead code for cleaner codebase.

/refactor src/legacy/

/optimize

Analyzes and improves performance bottlenecks.

/optimize src/components/DataTable.tsx

Documentation & Debugging

/explain

Provides clear explanations of your codebase architecture.

/explain auth flow

/debug

Helps diagnose and fix bugs with structured debugging.

/debug "login fails after password reset"

Deployment

/ship

Runs pre-deployment checklist (build, test, lint, security).

# Complete pipeline before deploying
/ship

Languages

Choose your preferred language during installation:

  • 🇺🇸 English (en) - Default
  • 🇰🇷 한국어 (ko) - Korean

All commands work identically in both languages, just with localized prompts.

How It Works

  1. Install: npx claude-preset copies preset files to .claude/commands/
  2. Use: Type any command like /commit in Claude Code
  3. Customize: Edit .claude/commands/*.md files to fit your workflow

Requirements

Examples

Generate a commit message

# After making changes
/commit

# Claude analyzes git status, diff, and project style
# Returns: git add -A && git commit -m "feat(auth): add OAuth2 support"

Create a PR description

/pr

# Generates:
# Title: Add user authentication system
# Summary: Implements JWT-based auth with refresh tokens...
# Test plan: ✓ Unit tests pass ✓ Manual testing completed...

Debug an issue

/debug "API returns 500 on user creation"

# Claude systematically investigates:
# 1. Checks error logs
# 2. Reviews related code
# 3. Suggests fixes with explanations

Contributing

We welcome contributions! To add a new preset:

  1. Create .md files in presets/en/ and presets/ko/
  2. Follow the existing prompt structure
  3. Test with Claude Code
  4. Submit a PR

See CONTRIBUTING.md for details.

License

MIT © relkimm

Links