Unified CLI for Agent Trust Suite — demo, verify, and inspect trust artifacts.
npm install -g agent-trust-cliFor the demo command's live telemetry evaluation, also install agent-trust-telemetry:
pip install agent-trust-telemetryRun the trust lifecycle demo showing contract → observation → evidence in 60 seconds.
agent-trust demoWorks with or without att installed. When att is not available, pre-recorded results are displayed.
Verify a trust bundle's integrity via digest re-computation.
agent-trust verify bundle.json
agent-trust verify bundle.json --quiet # CI-friendly: prints "valid" or "invalid"
agent-trust verify bundle.json --json # Full verification result as JSONExit codes: 0 = valid, 1 = invalid, 2 = file error.
Display a trust artifact in human-readable form. Auto-detects file type:
agent-trust inspect contract.contract.yaml # Contract definition
agent-trust inspect bundle.json # Trust bundle with event details
agent-trust inspect message.json # Message envelope with content analysis
agent-trust inspect file.json --json # Raw content outputThis CLI is a lightweight entry point for the suite. The real work happens in:
| Tool | What it does |
|---|---|
| agentcontract | Define and validate agent behavior contracts |
| agent-trust-telemetry | Detect trust policy violations at runtime |
| trustbundle | Package execution traces as tamper-evident bundles |
| agentbond | Governance infrastructure (authorization, intent, contracts) |
v0.1.0 — Early release. CLI name and npm package name may change.