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

pi-aia-asf

v0.7.0

Published

Ai Applied Agentic Software Factory — codifies the full software development flow: intake, research, spec capture, adversarial analysis, planning with approval gates, test-first implementation, and release. Requires pi-vigilant, pi-smart-web-search, pi-sm

Readme

pi-aia-asf — Ai Applied Agentic Software Factory

Codifies the full, disciplined software development flow used on real projects (conversense, betamaxx, mbee.me, pi-vigilant): classify → intake → research → specs → adversarial analysis → plan with approval gate → test-first implementation → verification & delivery.

It turns "let's build something" into a gated pipeline where nothing is implemented on assumptions, every hard requirement is captured as a verifiable spec, and nothing ships without evidence.

What it does

| Phase | Gate | What happens | |---|---|---| | 0. Classify | must be ASF work | New project / feature / major bugfix / refactor — or not ASF (skill stays quiet) | | 1. Intake | user confirms intent | Ask until goal, success criteria, constraints are all clear | | 2. Research | approach agreed | SOTA + existing packages via web_search/web_fetch, cited | | 3. Specs | user signs off | Every hard requirement → capture_spec (shared with pi-vigilant) | | 4. Adversarial | findings confirmed | Edge cases, failure modes, security, maintainability challenged | | 5. Plan | explicit approval | PLAN.md in repo root — no implementation before approval | | 6. Implement | tests green | Test-first, strict codebase isolation, browser-tested UIs | | 7. Verify & deliver | specs met | Every spec verified with evidence; release offered, never auto-published |

Activation

The skill activates when the user's request is a new software project, significant feature, major bugfix, or architectural refactor. It does not activate for Q&A, one-liners, casual conversation, or non-software tasks. When in doubt, it asks.

You can also force/start a session explicitly:

/asf new          — start a new software project
/asf feature      — add a feature
/asf bugfix       — major bugfix
/asf refactor     — architectural refactor
/asf status       — show current phase + state
/asf approve      — mark PLAN.md as approved (Gate 5)
/asf abort        — end the session

Dependencies (required)

| Package | Provides | Install | |---|---|---| | pi-vigilant | capture_spec, get_task_specs, update_spec_status, final verification | pi install npm:pi-vigilant | | pi-smart-web-search | web_search | pi install npm:pi-smart-web-search | | pi-smart-fetch | web_fetch, batch_web_fetch | pi install npm:pi-smart-fetch | | pi-aia-browser | browser_init, browser_navigate, … (Playwright + Chromium, auto-installed) | pi install npm:pi-aia-browser |

Optional: pi-intercom (intercom — message other live pi sessions directly) is not a dependency; ASF works without it. Install it only if you want delegation between sessions: pi install npm:pi-intercom.

The extension warns at startup (and on /asf with no args) when any dependency is missing.

Install

pi install npm:pi-aia-asf

Then /reload.

How it works

  • Skill (skills/aia-asf/SKILL.md) — the workflow itself, with per-phase reference guides in references/.
  • Extension (index.ts) — /asf commands, per-project phase state (~/.pi/agent/skills/aia-asf/projects/<project>/state.json), dependency checks.
  • Specs shared with pi-vigilant — ASF drives capture_spec during intake; pi-vigilant re-verifies every spec at task end and blocks "done" while MUST specs are open. One spec file, two systems.

Hygiene rules enforced

  • Test-first; only green commits
  • Strict codebase isolation — the project never touches other repos unless the user explicitly says so
  • Mandatory browser testing of any web interface (real user experience, not just curl)
  • Descriptive commits + CHANGELOG entries (no placeholders)
  • Publishing is always the user's decision — ASF prepares the release (version + CHANGELOG + tag), optionally offers CI/CD setup, but never auto-publishes

Development

npm run check   # typecheck
npm test        # see repo for test suites
npm run release patch|minor|major   # test → version → CHANGELOG → tag → push

License

MIT © Bruno Jakic, Ai Applied