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

aibootstrap-cli

v0.1.4

Published

CLI to bootstrap AI agent projects (init copies the embedded agent template)

Readme

AiBootstrap CLI (WIP)

Spec-driven agent toolkit with personas, workflows, and scaffolding. Work in progress: commands and flows may evolve quickly.

What it does

  • Copies a ready-to-use agent/ folder (context, rules, specs, prompts, workflows).
  • Provides guided wizards to set up sessions, bootstrap an MVP, and generate prompts/files for Claude-like agents.
  • Scaffolds changes (proposal/tasks/design/spec delta) and enforces track guidance (Quick/Standard/Enterprise).

Installation

npm install -g aibootstrap-cli
# or use without installing
npx aibootstrap-cli init

Command name: aib.

Default path (recommended)

  1. aib init — copie agent/ dans le projet.
  2. Optionnel : aib bootstrap:mvp — réponds aux questions produit/stack/features/contraintes, écrit agent/config/bootstrap.config.json, prépare le prompt pour que l’agent remplisse context/rules/specs du MVP.
  3. aib start (alias aib session:init) — wizard de session (role/workflow/track), crée les fichiers manquants, écrit agent/config/*.json, affiche le prompt Claude prêt.
  4. Exécute : aib task:run <id> ou aib sprint:run <id> / aib claude <workflow> pour piloter l’agent avec le bon contexte.
  5. Hygiène : aib memory:log pour consigner les lessons learned et décisions.

Commandes principales

  • aib init [directory] [-f|--force] : copier le template agent/ dans le projet.
  • aib start / aib session:init : wizard de session (role/workflow/track), fichiers créés, configs écrites, prompt Claude prêt.
  • aib bootstrap:mvp : questionnaire MVP (produit/stack/features/contraintes), écrit config/bootstrap.config.json, copies de templates, prompt pour faire remplir context/rules/specs par l’agent.
  • aib generate (ou generate:context|spec|task|sprint|change) : génère les artefacts manquants + prompt dédié.
  • aib claude <workflow> : construit un prompt avec les bons fichiers pour un workflow (project/task/bugfix_refactor/sprint/docs/change).
  • aib task:run <id>, aib sprint:run <id> : prompts d’exécution ciblés (task/sprint) avec le contexte adéquat.
  • aib workflow:tracks / aib change:init|archive / aib agents:list : tracks, scaffolding de change, roster des personas.
  • aib memory:log : ajoute lessons learned / décisions dans context/memory.md et context/decisions.md.
  • aib guide : tour du dossier agent/.

Workflows couverts (agent side)

  • Session strict/propose/open avec rôle (product/code/testing/architect/ux/review/orchestrator) et workflow (project/task/bugfix_refactor/sprint/docs/change).
  • Change gate (proposal + tasks + deltas) avant code.
  • Track selector (Quick/Standard/Enterprise) pour calibrer les artefacts.
  • Sprint / backlog / tasks / specs / prompts prêts à l’emploi.

Development

npm install
npm run build
node dist/cli.js help

Notes

  • WIP: interfaces et prompts peuvent changer; vérifiez le changelog avant upgrade.
  • Publier sur npm : déjà livré via aibootstrap-cli; utilisez la commande aib après installation.