cli-engine
cli-engine is a Rust library for building consistent, domain-oriented CLI applications. It provides shared framework pieces for command registration, authentication, authorization hooks, middleware, structured output, schemas, guides, search, command tree rendering, and HTTP transport.
Consumer CLIs bring their own binary entrypoint and domain modules. cli-engine owns the common
execution pipeline so teams can add commands by copying a nearby command and filling in the
domain-specific details.
Quick Start
use ExitCode;
use Arg;
use ;
use json;
async
Command paths are colon-separated, such as project:list, for policy, schema, audit, activity, and
authorization metadata.
Guide Embedding
Guide markdown can be read from disk during development with parse_guides("guides"), or embedded
in the consumer CLI binary with standard Rust compile-time embedding:
use Module;
let module = new.with_guides_from_markdown;
For large guide directories, applications can use an embedding crate or a build.rs generated
manifest that produces the same (path, bytes) pairs.
Documentation
Cargo Features
| Feature | Description |
|---|---|
pkce-auth |
Enables auth::pkce::PkceAuthProvider, a built-in browser-based OAuth 2.0 PKCE flow with system keychain storage via the keyring crate. Adds optional dependencies: keyring, open, rand, sha2, url. |
Verification
RUSTDOCFLAGS='-D warnings'