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

@rqml/cli

v0.7.1

Published

The RQML command-line interface (the `rqml` command): validate, status, and the deterministic check gate for .rqml requirements documents. The universal substrate every RQML integration can invoke.

Downloads

1,471

Readme

@rqml/cli

The RQML command-line interface — the universal substrate every RQML integration can invoke. Backed entirely by @rqml/core, so its verdicts match the engine and the @rqml/mcp server.

Published as @rqml/cli; the installed command is rqml:

npm i -g @rqml/cli   # then: rqml <command>
# or, no install:    npx @rqml/cli <command>
rqml <command> [spec.rqml] [options]

  init [path]      Scaffold a starter spec and AGENTS.md project marker
  validate [path]  XML well-formedness, XSD, and referential integrity
  status [path]    Spec, coverage, and lint summary
  lint [path]      Semantic lint findings; severity scales with --strictness (exit 1 on error)
  check [path]     Deterministic enforcement gate (validation + coverage + drift)
  show <id>        One artifact: statement, acceptance criteria, trace neighborhood
  impact <id>      What is affected, transitively, if this artifact changes
  overview [path]  Readable spec projection (whole, or --section/--id scoped)
  matrix [path]    Traceability matrix: status, goals, code, tests, coverage gaps
  link <id> <uri>  Record an implements/verifiedBy edge and its drift baseline
  approve <id>     Transition a requirement's status (--status, default approved)
  gate [paths...]  Block implementation of non-approved requirements (exit 2)
  skeleton <kind>  Print a schema-valid snippet (req|edge|testCase|stateMachine)

  --json                     Machine-readable output (REQ-CLI-JSON)
  --strictness <level>       relaxed | standard | strict | certified
  --workspace, --all         Run validate/status/check across every spec in the repo (one exit code)
  --ignore <names>           Comma-separated directory names to skip during --workspace discovery
  --base-dir <dir>           Where spec discovery starts / the --workspace root
  --status/--type/--warning  Filter matrix rows; --status also sets approve's target
  --section/--id             Scope overview to sections or element ids (comma-separated)
  --changed <paths>          Scope gate to changed paths (or pass them as positionals)

When no spec path is given, rqml resolves the governing spec by walking up from the working directory to the nearest *.rqml (preferring requirements.rqml), stopping at the repository root — so commands work from anywhere inside a project unit. In a repo with multiple specs, rqml check --workspace gates them all.

Exit codes (stable — REQ-CLI-EXIT-CODES)

| Code | Meaning | |------|---------| | 0 | success | | 1 | validation failure (not well-formed, schema-invalid, or integrity error) | | 2 | check gate failure (blocking drift or coverage) | | 64 | usage error |

rqml check exits non-zero only when the document is invalid or has blocking drift/coverage, so it works as a CI and editor-save gate. It invokes no language model: identical inputs yield identical verdicts (REQ-ENFORCE-DETERMINISM).