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

@jarrodmedrano/claude-skills

v1.0.16

Published

Reusable Claude Code skills for web development projects

Readme

Claude Code Skills

Reusable Claude Code skills for web development projects. This package provides a collection of powerful skills for scaffolding and managing projects with Claude Code.

Installation

Install as npm package (recommended)

In any project where you want to use these skills:

npm install @jarrodmedrano/claude-skills

The skills will automatically be copied to your project's .claude/skills/ and .claude/commands/ directories during installation.

If the automatic installation doesn't work (e.g., if you used npm install --ignore-scripts), you can manually install the skills:

npx claude-skills install

This will copy all skills and commands to the appropriate directories in your project.

Use as local directory

Alternatively, you can use this directory directly as your Claude Code projects hub.

Quick Start

Once installed, you can use custom skills to quickly scaffold new projects:

Available Skills

/new-website [project-name]

Create a new frontend web project with your choice of:

  • Next.js (App Router + TypeScript + Tailwind)
  • React + Vite
  • Vue 3 + Vite
  • Vanilla JS/TS

Example:

/new-website my-portfolio

/new-backend [project-name]

Create a new backend/API project with:

  • Express.js + TypeScript
  • Fastify + TypeScript
  • NestJS
  • Hono

Example:

/new-backend my-api

/new-fullstack [project-name]

Create a full-stack application with:

  • Next.js (with API routes)
  • T3 Stack (Next.js + tRPC + Prisma)
  • MERN Stack
  • Monorepo (separate frontend/backend)
  • Solito (Expo + Next.js - Universal app for web + mobile)

Example:

/new-fullstack my-saas-app

/project-setup [project-name]

Initialize any type of project with tooling:

  • Libraries
  • CLI tools
  • Static sites
  • Browser extensions
  • Electron apps
  • Component libraries

Example:

/project-setup my-tool

Directory Structure

jarrod-claude/
├── .claude/
│   └── skills/          # Custom Claude Code skills
├── project-1/           # Your projects will be created here
├── project-2/
└── README.md           # This file

Usage Tips

  1. Starting a new project: Use one of the skills above
  2. Working on existing project: Navigate to the project directory or specify the path
  3. Custom skills: Add new skills in .claude/skills/ as markdown files

What Gets Created

When you use these skills, Claude will:

  • Create the project directory
  • Initialize with the chosen framework/stack
  • Install dependencies
  • Set up TypeScript configuration
  • Create basic project structure
  • Initialize git repository
  • Generate README with getting started instructions

Next Steps

  1. Navigate to this directory in your terminal
  2. Run claude to start Claude Code
  3. Use /new-website my-first-site (or any skill) to create your first project
  4. Claude will guide you through setup options

Updating Skills

To get the latest skills after updating the package:

npm update @jarrodmedrano/claude-skills
npm run update-skills

Or use the CLI:

npx claude-skills update

CLI Commands

The package includes a CLI for managing skills:

npx claude-skills install   # Install/reinstall skills
npx claude-skills update    # Update skills to latest
npx claude-skills list      # List all available skills
npx claude-skills help      # Show help

Publishing Your Own Version

If you want to publish your own version of these skills:

  1. Update the package name in package.json:

    {
      "name": "@yourusername/claude-skills"
    }
  2. Publish to npm:

    npm login
    npm publish --access public
  3. Others can install with:

    npm install @yourusername/claude-skills

Development

To add new skills:

  1. Create a .md file in .claude/skills/ or a directory for complex skills
  2. Follow the existing skill format
  3. Update the version in package.json
  4. Publish the new version

Customization

You can modify the skills in .claude/skills/ to match your preferred setup, add new frameworks, or change default configurations.

Requirements

  • Node.js (v18+ recommended)
  • npm or pnpm
  • Git
  • Claude Code CLI

License

MIT


Happy coding!