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

@ordo-engine/cli

v0.5.0

Published

Ordo CLI — author, test, trace, and ship decision rules (rules-as-files, with an MCP server for coding agents)

Readme

Ordo CLI

Deterministic guardrails for your AI coding agent, and a local dev loop for authoring Ordo decision rules as files. Powered by a sub-microsecond Rust rule engine.

Guard your coding agent

npx @ordo-engine/cli guard init      # scaffold a policy + wire the Claude Code hook

Every Claude Code tool call now runs through a local rule that decides allow / deny / ask. When the agent tries something destructive, Ordo stops it with a reason:

⛔ Denied by policy: Destructive shell command blocked by policy [[email protected] · DENY]

The policy lives in .ordo-guard/ as a normal Ordo project — so your guardrails have a test suite:

ordo guard test      # run the policy's own tests
ordo guard log       # every decision, timestamped and auditable

Edit .ordo-guard/rulesets/policy.json in plain expressions (tool == 'Bash' && command contains 'terraform destroy'), add a test, ship. The default policy blocks destructive shell + secret access, asks before git push / npm publish, and fast-paths read-only git. Fails open on any internal error (--fail-closed to deny instead).

Author rules as files

npx @ordo-engine/cli init my-rules
cd my-rules
npx @ordo-engine/cli validate
npx @ordo-engine/cli test
npx @ordo-engine/cli trace loan-approval --input '{"amount":5000}'

Or install globally:

npm i -g @ordo-engine/cli
ordo --help

The install step downloads a prebuilt static binary for your platform from the matching GitHub Release. If none is available, build from source:

cargo install --git https://github.com/Ordo-Engine/Ordo ordo-cli

Use it from a coding agent (MCP)

claude mcp add ordo -- ordo mcp

This exposes list_files, read_file, grep, write_file, delete_file, validate, run_tests, trace, and publish to the agent. Local edits and checks run offline; publish requires ordo mcp --allow-publish.

Commands

| | | |---|---| | ordo guard init / hook / test / log | deterministic guardrails for a coding agent | | ordo init [dir] | scaffold a project | | ordo validate / test / trace | check rules offline | | ordo fmt / lint / new | format, lint, scaffold | | ordo login / link / pull / push / publish | sync with the platform | | ordo mcp | run as an MCP server (stdio) |

Add --json to any command for machine-readable output.