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

@hasankhatib/create-ai-scaffold

v0.3.1

Published

Initialize structured AI collaboration in any repo — agent-agnostic dispatch, council deliberation, session handoff.

Readme

ai-scaffold

Structured AI collaboration for any repo — agent-agnostic dispatch, council deliberation, session handoff.

AI coding tools are powerful but stateless. Sessions drift. Context resets. Decisions get made without discipline. ai-scaffold gives your repo the structure your AI needs to stay oriented, consistent, and useful across sessions.

Usage

npm create @hasankhatib/ai-scaffold@latest

Run this in any project directory. It asks 5 questions, then writes a SCAFFINIT.md file containing a ready-to-paste prompt. Paste that prompt into your AI (Claude Code, Cursor, OpenCode, Copilot — any of them) and it writes all the scaffold files.

What you get

  • AGENTS.md — rules your AI reads every session: what to always do, what to load on demand, when to invoke the council
  • CLAUDE.md — project overview, dev commands, hard rules
  • agents/council.md — 4-seat deliberation protocol for non-trivial decisions
  • agents/povs/ — the 4 seat files chosen for your project type
  • agents/templates/decision-packet.md — structured template for council sessions
  • docs/next.md — session handoff: where you left off, immediate next step, open threads
  • docs/roadmap.md — phase status dashboard
  • opencode.json — council agent config (OpenCode users)
  • memory/MEMORY.md — memory index (optional, prompted during init)

The 5 questions

  1. What is this project? (one sentence)
  2. What kind of project is it? (app / tooling / R&D / personal)
  3. What is the primary tension you want the council to hold?
  4. What are your AI output boundaries?
  5. Do you want a memory system scaffold?

The council

The council is a 4-seat deliberation protocol for decisions where the cost of being wrong is high. Two seats are fixed (The Skeptic, The Editor); two are chosen based on your project type.

| Project type | Slot A | Slot B | |---|---|---| | App / product | The Shipper | The User | | Tooling / infra | The Operator | The Engineer | | R&D / research | The Researcher | The Domain Expert | | Personal OS | The Shipper | The Guardian |

Other install paths

OpenCode skill (install once, use in any project via the agent):

npx degit HasanKhatib/ai-scaffold/skills/ai-scaffold ~/.agents/skills/ai-scaffold

degit (copies the template directly, no interactivity):

npx degit HasanKhatib/ai-scaffold/template my-project

Requirements

Node 18+

Links