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

@n12r/jarvis-control

v0.2.5

Published

Deterministic workflow gates for AI-assisted delivery

Readme

Jarvis Control Plane

Deterministic workflow gates for AI-assisted software delivery.

Commands

  • jarvis init - scaffold workflow files into the current project.
  • jarvis status - show current stage and gate status.
  • jarvis check [stage] - run gate checks for current or specified stage.
  • jarvis promote <target-stage> - move to next stage if current stage passes.
  • jarvis repo [owner repo-name --public|--private --template owner/repo] - create and clone a new repo (prompts interactively if args are omitted).
  • npm run cp:codex-pr-check - validate workflow/artifacts/codex-review.json against gate policy.

Local usage

npm install
npm run cp:init
npm run cp:status
npm run cp:check

Stage model

discovery -> contract -> plan -> build -> harden -> release -> operate

Gate requirements are defined in workflow/gates.yaml. Workflow state is tracked in workflow/state.yaml. Transition history is tracked in workflow/history.yaml. Note: workflow/ is runtime state and is intentionally not committed in this template repo. Run jarvis init in each new repo to scaffold it.

How this controls AI-assisted work

  1. AI can generate code and docs.
  2. Promotion between stages is blocked until deterministic checks pass.
  3. Stage transitions are chain-validated from history to block stage jumps.
  4. CI runs the same checks to prevent bypass.

Codex PR Gate

harden stage includes a Codex review gate:

  1. Required artifact: workflow/artifacts/codex-review.json
  2. Required command: npm run cp:codex-pr-check

Policy:

  1. status: "fail" blocks gate pass unless override file exists.
  2. Unresolved high severity findings block gate pass unless override file exists.
  3. Optional override file: workflow/artifacts/codex-override.md

Reuse Across New Repos

  1. Mark this repo as a GitHub Template Repository.
  2. Create a new repo from template:
    • jarvis repo <owner> <new-repo-name> --private
    • From any directory: jarvis repo <owner> <new-repo-name> --private --template <owner/repo>
    • Optional env default: export JARVIS_TEMPLATE_REPO=<owner/repo>
  3. Apply branch and environment protections:
    • scripts/apply-github-protections.sh <owner> <repo> main
  4. Follow the full checklist:
    • docs/REPO_BOOTSTRAP_CHECKLIST.md

Scripts

  • scripts/create-repo-from-template.sh - create/clone repos from this template.
  • scripts/apply-github-protections.sh - enforce branch/environment protection via GitHub API.
  • scripts/guard-state-change.js - CI guard to block invalid state.yaml edits.

Next steps

  1. Publish this package to npm.
  2. Use npx jarvis-control@<version> init in any project.
  3. Customize workflow/gates.yaml per project domain.