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

rcf-lite

v0.28.2

Published

One-install tooling for the Requirements Confidence Framework (RCF): the unified `rcf` CLI grouped into the five RCF tool groups (discover, define, build, verify, audit) plus a small core set (init, doctor, guidance, mcp), an MCP server, the live tree vie

Readme

rcf-lite

ci npm version license node

Build software with an AI coding agent without losing the plot.

Package name note (0.7.1+). This tool ships as rcf-lite on npm. The retired scoped name @stravica-ai/rcf-build-lite was frozen at 0.7.0 in August 2026 and every release from 0.7.1 onwards lives here. If npm install -g @stravica-ai/rcf-build-lite@<version> returns "no matching version" for any version above 0.7.0, uninstall the scoped name and install rcf-lite at the same version instead:

npm uninstall -g @stravica-ai/rcf-build-lite
npm install -g rcf-lite

The rcf and rcf-verify bin names are unchanged.

Anyone who has shipped with a coding agent knows the failure mode: the code arrives fast, but what the product is supposed to do lives in prompt history, and prompt history is not a spec. Three weeks later nobody can say what is covered, what is tested, or what breaks when something changes.

RCF Lite keeps those answers machine-checkable. It maintains a live chain from what you asked for, through requirements, user stories, acceptance criteria and tests, into the code itself, as plain JSON files in your own repository. Your agent works the chain instead of improvising; rcf define validate catches drift the moment it happens; and when your app is deployed, rcf verify sends an independent verifier at it before anything gets called done.

It is the tooling for the Requirements Confidence Framework (RCF): a method for keeping AI-built software honest.

Start here

Node 24 or newer is required. The preinstall gate rejects older majors so the CLI never lands half-wired; check with node --version first.

Three steps before you start your coding agent, then one prompt inside the session.

  1. Install the CLI:

    npm install -g rcf-lite

    That single install brings both the build-stage CLI (rcf) and the ship-gate verifier (rcf verify, plus the transition-grace rcf-verify alias) in one package.

  2. In your project directory, run rcf init (or npx rcf-lite init without the install). One command sets everything up: the requirements files, the MCP server entry and your agent's instructions.

  3. Start your coding agent session in that directory (or restart the one you have open, so it picks up the new configuration).

Then hand your agent this prompt, filled in. The setup you just ran has already taught it how to work; all it needs from you is the idea:

I want to build [describe your product idea in a sentence or two].
Let's get started.

If you'd rather drive it by hand, docs/getting-started.md covers the same ground at human pace. Prerequisites, install checks and agent-harness wiring live in docs/install.md.

Agent support

Claude Code is the supported path today. Codex CLI works end to end for a small app, with three sharp edges to know about before you start:

  • The .mcp.json that rcf init writes uses the Claude Code convention, which Codex does not read. To make the RCF MCP entry reachable from Codex, copy it by hand into ~/.codex/config.toml under [mcp_servers].
  • The chain discipline in AGENTS.md holds when nothing pushes on the session. Under user pressure for pace, Codex has been observed to drop the chain and ship code without the intervening rcf define calls; keep an eye on rcf define validate between turns.
  • rcf init does not git init the directory, so every codex exec and codex exec resume needs --skip-git-repo-check until you initialise git yourself.

Fuller Codex support is on the roadmap; for now the recommended path is Claude Code.

Migrating from the pre-0.7.1 packages

If your project pinned one of the pre-consolidation packages, replace it with rcf-lite:

| Old pin | New pin | |--------------------------------------|----------------------------------------| | @stravica-ai/rcf-build-lite | rcf-lite | | @stravica-ai/rcf-verify-lite | rcf-lite (verify is a subcommand now) | | @stravica-ai/rcf-lite-core | rcf-lite (core is an internal module) |

Invocation:

  • rcf init / rcf define validate / rcf build / rcf build finalise are unchanged.
  • Prefer rcf verify <run|report|provision|cleanup|mcp> over the legacy rcf-verify bin. The alias still works (identical dispatch, one-line stderr deprecation notice on direct invocation; suppress with RCF_QUIET=1).

The full migration story, the ratified ruling sheet and the registry runbook live at the repo root under docs/.

This repo runs on it

The umbrella's own PRD, requirements, user stories, acceptance criteria, architecture and build queue live as JSON under rcf/, validated against the open @stravica-ai/rcf-schemas. The build queue in there is the one that drove the tool's own development. The artefacts are the demo.

See them the way you'd see your own project's:

git clone https://github.com/Stravica/rcf-lite.git
cd rcf-lite && pnpm install
cd packages/rcf-lite
pnpm rcf audit view     # the tree this tool was built from, rendered live in your browser

Then scaffold your own: docs/getting-started.md.

Docs

| Doc | One line | |---|---| | docs/install.md | Prerequisites, install, verify, wire into an agent harness | | docs/getting-started.md | Empty directory to a validated, queried, building RCF project | | docs/how-it-works.md | The document chain, the files, the verbs, the agent contract | | docs/why-it-exists.md | The confidence gap, and why files plus a CLI is the answer | | docs/code-nodes.md | The spec-to-code bridge: Code Nodes, staleness detection, the mark-complete gate, honest limits | | docs/verify-reference.md | The verify subcommand tree (run, report, provision, cleanup, mcp) in detail |

docs/README.md is the index; rcf help <verb> is the flag reference; guidance/ is the agent-facing method pack.

Under the hood

The chain does not stop at the tests. Code Nodes make source files first-class nodes in the same graph, so a dangling spec-to-code link fails rcf define validate exactly the way a dangling spec-to-spec one does. rcf audit trace walks backward from a source file to the requirements it serves; rcf audit impact extends a change's blast radius into the code that implements it. Spec-only trees work unchanged; the code layer is additive. Full detail, deliberate limits and the roadmap beyond them: docs/code-nodes.md.

Known issues

  • npm 11.6.x may install rcf-lite empty. Running npm install rcf-lite on its own with npm 11.6.x reports up to date, audited 1 package and performs no file operations, leaving the package unusable. This is an upstream npm reify bug, not an rcf-lite defect. Workarounds: install rcf-lite alongside any other package in the same command, use npm 10, or use pnpm. The note will clear once npm ships the fix.

Contributing

Not accepting external code contributions at this stage of the project. Bug reports and feature discussion via Issues are welcome. CONTRIBUTING.md covers the development setup and house rules that will apply when that changes.

License

Apache 2.0. See LICENSE.