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

caio-startkit

v1.1.0

Published

Guided AI initiative tool based on the CAIO framework — conversational slash commands that generate business documents for each phase.

Readme

caio-startkit

caio-startkit is a framework for the logistics of AI projects: structured steps, artifacts, and handoffs from first assessment through production and adoption, so the initiative stays coherent.

That framework is what you run in Claude Code—one slash command per phase, each conversation writing a professional Markdown document on disk.

No UI. No backend. No build step. Just conversations that write files to your local machine.

Beta: This project is still in early shape. Several domain experts are trying it out and sharing feedback so the workflows and outputs can improve. If you use it, reactions and suggestions are welcome.


Installation

Option 1 — npx (recommended)

Run once from the root of any repository:

npx caio-startkit

Installs the command files into .claude/commands/ and adds initiatives/ to your .gitignore.

Option 2 — Clone

git clone [email protected]:amohsen1984/caio-startkit.git
cd caio-startkit

Commands are ready to use immediately — no install step needed.


Usage

Run commands inside Claude Code. Each command guides you through a conversation and writes a Markdown document to initiatives/<your-initiative-name>/.

| Command | Phase | Output | |---|---|---| | /caio.assess <name> | 1 — Business Alignment Assessment | phase-1-assessment.md | | /caio.usecase <name> | 2 — Use Case Plan Implementation | phase-2-usecase.md | | /caio.production <name> | 3 — From Pilot to Production | phase-3-production.md | | /caio.adopt <name> | 4 — AI Adoption Plan | phase-4-adoption.md | | /caio.export <name> | Export full portfolio | portfolio.md |

Example

/caio.assess northwind
/caio.usecase northwind
/caio.production northwind
/caio.adopt northwind
/caio.export northwind

Produces:

initiatives/
└── northwind/
    ├── phase-1-assessment.md
    ├── phase-2-usecase.md
    ├── phase-3-production.md
    ├── phase-4-adoption.md
    ├── portfolio.md
    └── archive/           ← previous versions saved here on re-run

See docs/quickstart.md for a step-by-step walkthrough.


How it works

  • One command per phase. Each command is a Claude Code agent file that conducts a focused conversation.
  • Context carry-forward. Each phase reads all prior phase documents so you never repeat yourself.
  • Thin-answer prompting. If your answer is too brief, the AI asks targeted follow-ups until the answer is detailed enough to write a good document.
  • Archive on re-run. Re-running any phase archives the previous document before starting fresh.

Phases this framework covers

| Phase | Covers | |---|---| | Business Alignment Assessment | Strategic pillars, AI readiness across 5 dimensions, recommended priorities | | Use Case Plan Implementation | Use case selection, Buy/Build/Hybrid sourcing, roadmap, risk assessment, ROI, governance | | From Pilot to Production | EU AI Act / NIST AI RMF compliance, monitoring, change management, scaling roadmap | | AI Adoption Plan | Hub-and-Spoke organising model, AI Hub roles, infrastructure, training strategy, enterprise roadmap |


Requirements

  • Claude Code CLI
  • Node.js ≥ 16 (only needed for the npx installer)