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

@josenaldo/create-claude-workflow

v0.1.0

Published

Scaffolding CLI to bootstrap a Claude Code workflow (docs + skills + memory + commands) tailored to a chosen stack

Readme

create-claude-workflow

Scaffolds a Claude Code workflow (CLAUDE.md + docs/specs + skills + memory + command mapping) into any project, tailored to the chosen stack.

Status: early MVP. Only ts-node-npm ships with full skills/templates; other stacks ship with stack.json (command mapping + layout) and get the agnostic core. More stacks will be fleshed out incrementally.

Usage

# Interactive (prompts for everything)
npx @josenaldo/create-claude-workflow

# Current directory
npx @josenaldo/create-claude-workflow .

# Non-interactive (scriptable)
npx @josenaldo/create-claude-workflow my-app --stack ts-node-npm --yes

# Preview without writing
npx @josenaldo/create-claude-workflow my-app --stack go --dry-run

Options

| Flag | Short | Description | | ------------------ | ----- | -------------------------------------------- | | --yes | -y | Accept all defaults (non-interactive) | | --stack <name> | | Base stack (skip prompt) | | --overlay <name> | | Frontend overlay or none (skip prompt) | | --dry-run | | Show what would be generated without writing | | --help | -h | Show help |

Interactive mode

Without flags, the CLI asks:

  • Project name (or . for current directory)
  • Base stack (one of: ts-node-npm, js-node-npm, java-gradle, java-spring-gradle, python-uv, go)
  • Frontend overlay (optional: react-mantine, react-mui, or none)
  • Init git / initial commit
  • Seed memory/ directory

Then it:

  1. Copies the agnostic core/ (workflow docs, skill templates, CLAUDE.md template, memory scaffolding).
  2. Applies the selected stack overlay(s) — merges stack.json, copies stack-specific skills and code templates.
  3. Renders CLAUDE.md by substituting {{cmd.*}}, {{layout}}, and project metadata placeholders.

Design

See docs/ARCHITECTURE.md for the composition model (core + base stack + overlay).

Stacks

| Stack | Kind | Status | | -------------------- | ------- | -------- | | ts-node-npm | base | skills | | js-node-npm | base | manifest | | java-gradle | base | manifest | | java-spring-gradle | base | skills | | python-uv | base | skills | | go | base | skills | | react-mantine | overlay | skills | | react-mui | overlay | skills |

"Manifest" = stack.json defines commands and layout, but no code templates or stack-specific skills yet. "Skills" = manifest + stack-specific skills (create-usecase, add-endpoint, write-unit-test). The agnostic core always applies.

Adding a new stack

  1. Create stacks/<name>/stack.json with commands, layout, testFramework.
  2. (Optional) add stacks/<name>/skills/ for stack-specific skills.
  3. (Optional) add stacks/<name>/templates/ for code scaffolding rendered into the new project.
  4. (Optional) add stacks/<name>/gitignore.append for lines to append to .gitignore.

If kind: "overlay" in stack.json, the CLI will require a compatible base (declared via requires).

License

MIT