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

create-claudy

v0.4.1

Published

Scaffolder pour créer un projet préconfiguré avec le plugin Claude Code claudy

Readme

create-claudy

Scaffolder qui crée un projet Claude Code préconfiguré pour utiliser le plugin claudy.

Usage

Deux modes :

1. Créer un nouveau projet (scaffold, défaut)

# Avec pnpm (recommandé)
pnpm create claudy mon-projet

# Avec npm
npm create claudy@latest mon-projet

# Avec npx
npx create-claudy mon-projet

Si vous omettez le nom, il vous sera demandé.

2. Ajouter la couche Claude à un projet existant (init)

cd mon-projet-existant
npx create-claudy init

Installe uniquement .claude/ (settings.json, CLAUDE.md, commands/, agents/) et .mcp.json. Ne modifie pas votre package.json ni votre arborescence applicative. Si .claude/settings.json ou .mcp.json existent déjà, ils sont fusionnés intelligemment (permissions, marketplaces, plugins, serveurs MCP) sans écraser vos réglages. CLAUDE.md est préservé s'il existe.

Options

| Flag | Effet | Mode | |------|-------|------| | --no-git | Ne pas initialiser de dépôt git | scaffold | | -h, --help | Aide | tous |

Ce qu'il génère

mon-projet/
├── .claude/
│   ├── settings.json       # pré-configuré pour activer le plugin claudy
│   ├── CLAUDE.md           # mémoire projet (à personnaliser)
│   ├── commands/           # vos commandes locales
│   └── agents/             # vos agents locaux
├── .env.example
├── .gitignore
├── .mcp.json               # Playwright préconfiguré
├── ai_docs/                # doc API consultée par les agents
├── docs/                   # documentation projet
├── specs/
│   ├── todo/               # plans en attente
│   ├── done/               # plans terminés
│   └── handoffs/           # états de session
├── src/                    # code applicatif
└── README.md

Ce que fait le plugin claudy

Une fois Claude Code lancé dans le nouveau projet, le plugin est activé automatiquement et fournit :

  • Commandes : /TPK-plan, /TPK-build, /TPK-validate, /TPK-commit, /TPK-merge, /TPK-review, /TPK-prime, /TPK-handoff, /TPK-pickup, /TPK-create-command, /TPK-parallel-subagents, /TPK-visual-verify, /TPK-screenshot-compare
  • Agents : code-reviewer, test-runner, doc-generator, validated-builder
  • Skills : security-audit, skill-creator
  • Hooks de sécurité actifs par défaut (bloquent rm -rf, force push, et protègent .env, ~/.ssh/, ~/.aws/…)
  • Commandes de gestion : /claudy-eject et /claudy-sync (voir ci-dessous)

Voir le repo du plugin pour les détails.

Matérialiser les commandes dans le projet (eject / sync)

Par défaut, les commandes du plugin vivent dans le cache marketplace de Claude Code (~/.claude/plugins/cache/...). Si vous voulez les versionner avec le projet et les faire évoluer indépendamment (workflow par projet) :

/claudy-eject              # copie commands/ agents/ skills/ vers .claude/
/claudy-eject TPK-build    # éjecte une seule commande
/claudy-sync               # rapatrie les nouveautés amont (mode --new-only par défaut)
/claudy-sync --diff        # voir les divergences sans rien écraser

Une fois éjectées, les copies projet ont priorité sur la version du plugin. Le plugin reste actif et fournit les ressources non éjectées.

Mise à jour du scaffolder

# Avec pnpm
pnpm dlx create-claudy@latest ...

# Avec npm
npm create claudy@latest ...

Le scaffolder est un outil one-shot : il génère le projet puis disparaît. Les mises à jour amont du plugin claudy se gèrent via /plugin update (Claude Code) puis /claudy-sync si vous avez éjecté.

Prérequis

  • Node.js ≥ 18
  • Claude Code installé (pour utiliser les projets générés)

Licence

MIT © Gilles Bertrand