aa-cli 0.0.1-rc.2

aasm — command-line tool for Agent Assembly
docs.rs failed to build aa-cli-0.0.1-rc.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

aa-cli

aasm — the command-line tool for Agent Assembly.

crates.io docs.rs License Rust

What is this

aa-cli is the operator front-end for Agent Assembly, the governance-native runtime for AI agents. It ships the aasm binary — the terminal entry point for inspecting agent topology, managing policies, watching the audit trail, and driving the governance gateway.

Agent Assembly enforces governance across three independently-deployable interception layers (in-process SDK shim, sidecar proxy, and eBPF). aasm is how an operator observes and controls that system from the command line, talking to the gateway over its HTTP/OpenAPI surface.

Install

The recommended way to get the aasm binary is the one-line installer, which downloads the matching pre-built release tarball, verifies its checksum, and installs to ~/.local/bin:

curl -fsSL https://agent-assembly.com/install.sh | sh

Pin a specific version with AASM_VERSION:

AASM_VERSION=v0.0.1-beta.4 curl -sSf https://agent-assembly.com/install.sh | sh

Or build/install from source via cargo:

cargo install aa-cli

Then confirm the install:

aasm --help

Usage

# Show the agent topology
aasm topology

# Manage governance policies
aasm policy --help

# Launch the operator dashboard (TUI)
aasm dashboard

# Tail the audit log
aasm audit

Run aasm <command> --help for the full set of subcommands (agent, policy, audit, budget, cost, gateway, proxy, sandbox, topology, and more).

Links