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

@spardutti/claude-skills

v1.8.1

Published

CLI to install Claude Code skills from the claude-skills collection

Readme

@spardutti/claude-skills

Interactive CLI to install reusable Claude Code skills into any project.

Usage

npx @spardutti/claude-skills

Run this from your project's root directory. The CLI will:

  1. Fetch the latest skills from GitHub
  2. Let you interactively select which skills to install
  3. Copy them into your project's .claude/skills/ directory
  4. Ask to set up automatic skill evaluation (hook + CLAUDE.md rule)

Automatic Skill Evaluation

Skills alone don't guarantee Claude will use them. The CLI can optionally set up enforcement:

  • Hook (.claude/hooks/skill-forced-eval-hook.sh) — Runs on every prompt, injects a mandatory skill evaluation sequence into Claude's context
  • CLAUDE.md rule (skill_evaluation block) — Instructs Claude to list every skill as ACTIVATE/SKIP before writing any code

Together, these force Claude to explicitly evaluate and activate relevant skills instead of silently ignoring them.

Available Skills

| Skill | Description | |-------|-------------| | react-best-practices | React 19 — component design, state management, performance, React 19 features, TypeScript integration | | react-use-effect | React 19 useEffect best practices and anti-patterns | | react-query | TanStack React Query with query-key-factory patterns | | tanstack-router-best-practices | TanStack Router — file-based routing, type-safe navigation, loaders, search params, auth guards | | typescript-best-practices | TypeScript 5.x — type design, type safety, generics, error handling, tsconfig | | react-single-responsibility | React single responsibility — component splitting, hook isolation, file size limits, complexity rules | | tailwind-tokens | Enforce Tailwind CSS design tokens — no arbitrary values when a token exists | | drf-best-practices | Django REST Framework — thin serializers, service layer, queryset optimization, object-level permissions | | fastapi-best-practices | FastAPI — async correctness, Pydantic validation, dependency injection, service layer, structured error handling | | security-practices | Web security — OWASP Top 10 prevention, input validation, auth, SQL injection, XSS, CSRF, secure defaults | | alembic-migrations | Alembic — naming conventions, autogenerate review, data migration safety, downgrades, production deployment | | testing-best-practices | Testing — Arrange-Act-Assert, factory-based test data, test isolation, mocking boundaries, pyramid-balanced coverage | | docker-best-practices | Docker — multi-stage builds, layer caching, security hardening, Compose Watch for local dev, health checks | | trpc-react-query | tRPC v11 — queryOptions/mutationOptions patterns, router organization, middleware, cache invalidation, optimistic updates | | express-best-practices | Express.js — feature-based structure, 3-layer architecture, Zod validation, centralized error handling, security middleware |

GitHub Authentication

The CLI fetches skills via the GitHub API. Unauthenticated requests are limited to 60/hour. To avoid rate limits:

  • Install the GitHub CLI and run gh auth login — the token is detected automatically
  • Or set GITHUB_TOKEN / GH_TOKEN as an environment variable

What are Claude Code Skills?

Skills are markdown files placed in .claude/skills/ that give Claude Code domain-specific knowledge and guidelines. They help Claude follow your team's patterns and best practices automatically.

License

MIT