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

scbe-aethermoore-cli

v4.3.4

Published

Standalone CLI for SCBE-AETHERMOORE: GeoSeal tools, flow operator loop (plan/packetize/status/run-next/continue/report), liboqs proof receipts, bus workspace formation, agent-bus passthrough, tokenizer lanes, governance packets, web lookup, mechanical ver

Downloads

1,281

Readme

scbe-aethermoore-cli

scbe-aethermoore-cli is the terminal interface for SCBE-AETHERMOORE. It exposes the GeoSeal shell from the main scbe-aethermoore package under small-agent friendly commands.

Install

npm i -g scbe-aethermoore-cli

Commands

scbe --help
scbe version
scbe demo
scbe demo --json
scbe selftest
scbe doctor --json
scbe credits
scbe shell
scbe run "npm test"
scbe status
scbe history --limit 20
scbe ca-plan --ops "abs abs add" --json
scbe compile ca --opcodes "0x09 0x09 0x00" --target python
scbe render-op --op add --target KO --a left --b right
scbe route --program "encode \"run tests\" in tongue KO"

The same binary is also exposed as geoseal and scbe-geoseal.

Tool Surface

  • version: prints the installed scbe-aethermoore package version.
  • demo: runs the 5-minute agent safety demo. It sends a risky AI-agent tool request through the GeoSeal execution gate and prints the governed output packet: output, decision, reasons, suggested correction, and audit id.
  • doctor --json: verifies the installed GeoSeal shell and reports available API-routed commands.
  • selftest: runs the npm-installable smoke test (version + doctor).
  • credits: prints the hosted-run intake, service-credit policy, and top-up links for paid hosted work.
  • shell: opens the SCBE terminal wrapper.
  • run: executes a normal shell command with Compass metadata, Clock metadata, GeoSeal governance, exit-code preservation, and JSONL history.
  • status: prints local terminal/compiler/router capability status.
  • history: prints recent SCBE terminal runs.
  • ca-plan: resolves Cassisivadan operation names into canonical opcode bytes.
  • compile ca: compiles CA opcode bytes into target source (python, typescript, or go) with a round-trip trace.
  • render-op: renders one cross-language conlang/code operation template.
  • route: parses Aether++ speech-to-code source into a governed route packet.

The full repo-local GeoSeal command set still lives in scbe-aethermoore. Commands that require Python repo modules need a source checkout or a backend API configured with SCBE_API_BASE.

Five-Minute Magic Moment

The first product proof is intentionally small:

npm i -g scbe-aethermoore-cli
scbe demo --json

The demo does not execute the risky command. It shows what happens when SCBE is placed between an AI agent and its tools:

  • the proposed tool call,
  • the governance decision,
  • reason codes,
  • a suggested correction,
  • a deterministic GeoSeal audit id.

This is the buyer-facing promise: put SCBE in front of an AI agent and see what it catches, why it caught it, and what audit trail it leaves behind.

Local Compiler Lane

From a source checkout, the CLI exposes the local speech/code compiler directly:

scbe compile plan --ops "abs abs add" --json
scbe compile ca --opcodes "0x09 0x09 0x00" --target typescript --fn score --args a,b
scbe route --program "encode \"run tests\" in tongue KO"

This is the start of the SCBE terminal shape: conlang routing, code-language emission, command execution, and governance should be reached from one command surface instead of hidden Python scripts.

SCBE Terminal Lane

Use scbe run when you want a normal command to behave like a governed SCBE operation:

scbe run "npm test"
scbe run "python -m pytest tests/system -q" --json
scbe history --limit 10

Each run records:

  • Compass: inferred lane, language, and intent.
  • Clock: timestamp, timezone, and duration.
  • Governance: local GeoSeal execution-gate result.
  • Outcome: exit code, pass/fail, and first failure classification.

Use scbe shell to stay inside that wrapper while typing normal terminal commands.

Free Local Use + Paid Hosted Runs

The CLI is free for local use. Use scbe-agent-bus, GeoSeal, local Node/Python, and Ollama-first routing before spending credits.

When you want AetherMoore to run hosted routing, a governed report, a benchmark, or provider/model-backed work, use:

scbe credits

That command prints:

  • hosted run intake: https://aethermoore.com/SCBE-AETHERMOORE/hosted-run.html
  • service credits: https://aethermoore.com/SCBE-AETHERMOORE/service-credits.html
  • top-up: https://ko-fi.com/izdandavis

Credits are pay-as-you-go. Billable provider/model usage is passed through with a 2-5% SCBE coordination fee.

Self Test

scbe selftest