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

monolith-skill

v3.4.0

Published

End-to-end AI agent workflow that turns a one-line product brief into a market-grade React app against any design system. Drop-in skill for Claude Code, Cursor, OpenCode, Gemini CLI, Trae, Windsurf, Kiro, and Aider.

Readme

Monolith Skill

End-to-end AI agent workflow that turns a one-line product brief into a market-grade, documented, QA'd React app — against ANY design system. Drop-in skill for Claude Code, Cursor, OpenCode, Gemini CLI, Trae, Windsurf, Kiro, and Aider.


Install

In your project directory, run:

npx monolith-skill init

That's it. The installer:

  1. Detects which AI editors you have configured (.claude/, .cursor/, .gemini/, …).
  2. Drops the skill markdown into each editor's skills folder.
  3. Creates .monolith/ at your project root with the runtime scripts and runs npm install there once.

Then in your editor:

/monolith build <your product brief>

Install for a specific editor

npx monolith-skill init --editor claude,cursor

Install for every supported editor

npx monolith-skill init --all

List supported editors

npx monolith-skill list

Update or remove

npx monolith-skill update    # re-copy skill files, keep .monolith/ state
npx monolith-skill remove    # uninstall everything from this project

What gets installed

After npx monolith-skill init, your project gets:

your-project/
├── .monolith/                    ← runtime: scripts, node_modules, state
│   ├── agents/                   (24 agent prompts)
│   ├── rules/
│   ├── scripts/                  (TypeScript runtime: tsx, zod, playwright, …)
│   ├── package.json
│   ├── node_modules/             (auto-installed)
│   └── state.json                (created on first run)
│
└── .claude/skills/monolith/      ← markdown the editor reads (one per editor)
    ├── SKILL.md
    ├── agents/
    ├── rules/
    └── references/

Nothing else is added to your project root. Add .monolith/ to your .gitignore if you don't want runtime state committed.


What it does

Monolith orchestrates 24 specialized agents across:

  • Market research & competitive synthesis
  • Product research & PRD
  • UX strategy & differentiation mapping
  • Information architecture & user flows
  • Design decisions with DS-extension gatekeeping
  • Premium aesthetic auditing (anti-AI-generic)
  • Engineering specs & pattern decisions
  • React app generation (Vite + React + any DS)
  • Five self-healing QA loops (dev-qa, production-readiness, runtime, design, commercial)
  • Three approval gates (G1, G2, G3) — turn-yielding, you stay in control

Entry point: .monolith/SKILL.md (also mirrored into each editor's skills folder) Tutorial: .monolith/TUTORIAL.md Quick start: .monolith/QUICKSTART.md Troubleshooting: .monolith/TROUBLESHOOTING.md


Requirements

  • Node.js ≥ 18
  • An AI editor (Claude Code, Cursor, etc.)
  • Optionally: Playwright browsers (the installer offers to fetch these on first run if needed)

Contributing / development

Clone the repo, edit src/skill/, then test locally:

git clone https://github.com/abhiroopchaudhuri/monolith-skill.git
cd monolith-skill
node bin/monolith.js init --all     # installs into local dogfood folders

To publish a new version:

npm version patch    # bump version
npm pack --dry-run   # verify tarball contents
npm publish

License

MIT — see LICENSE.