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

@promptcompletion/cli

v0.6.0

Published

Deterministic policy and state engine for Agent Gauntlet packs

Downloads

200

Readme

Agent Gauntlet CLI

Deterministic policy and state engine for compiled Gauntlet Packs. Agents provide semantic judgment; the CLI controls structural validity, legal transitions, evidence attachment, repair limits, architecture records, distribution readiness, and authority gates.

Install

This package is not published to npm yet, so every npx @promptcompletion/cli command below fails with a 404 until it is. Install from a clone instead, which also keeps the binary tracking the checkout:

cd packages/gauntlet-cli && npm install && npm link
gauntlet --help

Requires Node 24 or newer (node:sqlite) and an authenticated Codex, Claude Code, or GitHub Copilot CLI.

Invoke once

From a repository containing a compiled .gauntlet/manifest.yaml:

npx @promptcompletion/cli run --host auto

To compile a vague request and execute it in the same persisted operation:

npx @promptcompletion/cli deliver \\
  --request "Build a production-grade A for B using the reference" \\
  --source https://example.com/reference \\
  --host auto

run detects an authenticated Codex, Claude Code, or GitHub Copilot CLI; launches a fresh process for every builder, critic, and verifier turn; runs declared tests itself; reacts to pass, repair, block, timeout, and invalid-output states; enforces repair and turn limits; resumes completed state; and exits only when every slice is independently verified or a machine-readable terminal error is reached. Use --host codex, --host claude, or --host copilot to pin the runtime.

No capability token is placed in an agent prompt. The orchestrator alone owns evidence capture and state transitions. On success it writes .gauntlet/product-passport.md and .gauntlet/product-passport.json. Regenerate them with npx @promptcompletion/cli explain.

The command consumes the user's existing authenticated CLI subscription/session. It does not translate a ChatGPT, Claude, or Copilot subscription into API credentials and never resumes one role's conversation for another role. Builder attempts run on isolated Git worktrees; critics and verifiers receive read-only permissions; only verified commits are integrated. Rerunning after interruption resumes the persisted building worktree.

npm install
npx gauntlet validate .gauntlet/manifest.yaml
npx gauntlet init .gauntlet/manifest.yaml
npx gauntlet next --manifest .gauntlet/manifest.yaml
npx gauntlet assign slice-id --role builder --manifest .gauntlet/manifest.yaml
npx gauntlet execute slice-id declared-test --token CAPABILITY --manifest .gauntlet/manifest.yaml
npx gauntlet transition slice-id building --token CAPABILITY --manifest .gauntlet/manifest.yaml

The engine stores state transactionally in .gauntlet/run-state.sqlite. It fingerprints and freezes the pack, executes declared commands itself, records environment and Git metadata, hashes outputs, and binds capabilities to a role, slice, fingerprint, and expiry. It rejects stale or externally manufactured evidence. A builder cannot pass its own slice, dependencies must pass before building, and repair limits cannot exceed three.

Release authority requires an HMAC produced with GAUNTLET_AUTHORITY_SECRET, which must remain outside agent context. The CLI prepares and verifies releases but does not publish automatically.

When a manifest declares a YouTube, blog, social, screenshot, live-product, paper, or mixed-evidence reconstruction mode, validation additionally requires source evidence, product reconstruction, experience, production-readiness, and claim-traceability contracts. High-confidence social claims require corroboration, speculative capabilities cannot become required scope, and material claims must terminate in verification.