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

as-xflow

v0.1.0

Published

Unified three-layer AI workflow system: atoms + workflow definitions + xflow CLI

Readme

as-xflow

CI xflow score publish check spec delta

Executable delivery workflow for AI coding agents.

as-xflow turns agent work from "follow this prose process" into a local workflow runtime with YAML phases, deterministic atoms, TDD proof gates, handoff state, archive discipline, and packageable CLI commands.

Why It Exists

Most agent workflow systems are strong at behavior shaping. as-xflow adds a harder layer:

  • workflow data that can be validated before it runs
  • red/green TDD proof that is checked by code, not only by prompt discipline
  • quality-0.json test-quality review for code/test pairing and common fake-test patterns
  • local handoff and AHA files so context survives across sessions
  • archive and PR ordering that is executable and test-covered
  • clean-project adoption proof in CI plus a reviewable maintainer adoption record

3 Minute Start

For the published package:

npm install -g as-xflow
xflow quickstart
xflow guide
xflow evaluate
xflow assess
xflow demo clean
xflow demo launch
xflow launch dossier
xflow launch copy
xflow init --project-root .
xflow goal set "Ship the next verified change" --project-root .
xflow goal audit --project-root . --json
xflow doctor --project-root .
xflow workflow validate yolo --project-root .

For source checkout evaluation before npm publication:

git clone <repo-url> as-xflow
cd as-xflow
npm install
npm run release:pack
node bin/xflow.js quickstart
node bin/xflow.js evaluate
node bin/xflow.js assess
node bin/xflow.js demo clean
node bin/xflow.js compare codex-goal
node bin/xflow.js launch dossier
node bin/xflow.js launch copy

Release-owner gates such as xflow adoption status --json, xflow adoption validate --json, xflow package status --json, xflow package preflight --check-registry --check-auth --json, and xflow package audit --check-registry --json are intentionally separate from the first-run path because they fail until real adoption evidence, npm identity, or published registry evidence exists. Use xflow adoption brief --name <team-or-project> --source <tracker-or-pr> --track yolo to generate the outbound ask, xflow adoption trial --name <team-or-project> --source <tracker-or-pr> --track yolo to preview the copy-paste external trial, xflow adoption kit --name <team-or-project> --source <tracker-or-pr> --track yolo to create a shareable packet, then xflow adoption init --name <team-or-project> --source <tracker-or-pr> --track yolo to create the draft record after real trial evidence exists.

Run A Change

git checkout -b codex/example-change
xflow workflow run yolo --project-root . \
  --title "Example change" \
  --change-type backend \
  --tdd-red-command "npm test -- --grep new-behavior" \
  --tdd-green-command "npm test"

The lite workflow runs tdd-red -> execute -> tdd-green -> verify -> archive.

Red proof must fail before implementation. Green proof must pass after implementation. I6c.tdd.quality_review then rejects code changes without meaningful changed tests, empty assertions, snapshot-only tests, or mock-heavy tests without real assertions.

Choose A Track

| Track | Use When | Entry | | --- | --- | --- | | goal | You want a simple project direction anchor that later xflow work can read and audit | xflow:goal, xflow goal set, or xflow goal audit | | plan | You only need a reusable implementation plan | xflow:plan | | ralph | You want Codex to keep implementing, verifying, and repairing until completion evidence is clean | xflow:ralph | | yolo | Backend, docs, infra, small UI, low ceremony | xflow:yolo or xflow workflow run yolo | | corps | Product/UI-heavy or multi-agent work | xflow:corps, xflow corps --explain, or xflow corps |

xflow:plan is track-neutral. yolo and corps reuse an existing current plan instead of re-planning. xflow workflow validate corps is preflight only; heavy-track completion is only accepted after xflow proof --track corps writes corps_proof.json with ok=true. The corps proof now requires the built-in governed corps manifest, hash-linked execution-log witnesses for every phase/atom/gate, and no stub/pencil_stubbed runtime fallback.

What Makes It Different

| Surface | as-xflow Position | | --- | --- | | Goal alignment | Project-level .xflow/GOAL.md that yolo, corps, Ralph, handoff, and takein consume | | One-shot evaluation | xflow evaluate combines quality score, Codex goal / Superpowers comparison, ordinary and splash launch blockers, release-owner status, claim boundaries, next actions, and first-run path | | Quality assessment | xflow assess gives a public scorecard for goal, yolo, corps, and the skill family | | Launch demo | xflow demo launch shows goal -> yolo and goal -> corps proof paths | | Launch audit | xflow launch audit separates ready engine and adoption evidence from missing registry proof | | Launch dossier | xflow launch dossier prints the one-page public narrative backed by the same audit payload | | Launch claims | xflow launch claims separates what can be said publicly now from claims blocked by missing evidence | | Launch copy | xflow launch copy generates claim-safe announcement copy and forbidden phrases from the same evidence | | Package status | xflow package status gives a non-failing publish/install status summary | | Package audit | xflow package audit validates public npm registry evidence before splash-launch claims | | Release status | xflow release status gives the release owner one focused blocker, next action, package status, and handoff doc | | Adoption status | xflow adoption status gives a non-failing ordinary/splash adoption blocker summary | | Adoption trial | xflow adoption trial gives external teams the exact commands and evidence checklist before a trial packet is written | | Publish handoff | docs/npm-publish-handoff.md records the exact auth, preflight, publish, and post-publish gates | | TDD | Executable red/green proof plus quality review | | Workflow | YAML phases validated against atom registry | | Spec migration | OpenSpec mapping report plus deterministic spec_delta_review.json | | Local closure | Doctor, drift scan, release pack, archive ordering | | Team handoff | HANDOFF.md, AHA.md, reviewer guide | | Team adoption | Role model, CI boundary, PR acceptance, release ownership | | Cross-tool use | Plain CLI and skill docs for Codex, Claude Code, Cursor, OpenCode, Gemini | | Competitive proof | xflow compare codex-goal, xflow compare superpowers, xflow compare openspec, xflow compare gstack, xflow compare spec-kit, benchmark docs | | Adoption proof | Minimal clean project runs in CI, plus docs/adoption/as-xflow-release-hardening.md |

Docs

Verify

npm run drift:scan
npm run verify
npm run skill:diff
npm run release:pack
xflow assess
xflow launch audit
xflow score

Current release gate expectation: all active score dimensions are strong, and xflow score reports 100/100.