Skip to content
Arxo Arxo

Running Analysis

The public build runs Agent Architecture and OpenClaw Architecture metrics. You can run with defaults or use a config file to customize metrics and policy.

With no config file, Arxo runs the published metrics:

Terminal window
arxo analyze

Create arxo.yaml (or .arxo.yaml) to specify which metrics to run and policy thresholds:

metrics:
- id: agent_architecture
enabled: true
- id: openclaw_architecture
enabled: true
policy:
invariants:
- metric: agent_architecture.overall_agent_health
op: ">="
value: 70
- metric: openclaw_architecture.overall_openclaw_health
op: ">="
value: 60

Run with:

Terminal window
arxo analyze --config arxo.yaml

To run only one metric:

Terminal window
arxo analyze --metric agent_architecture
# or
arxo analyze --metric openclaw_architecture
Terminal window
arxo analyze --fail-fast

Exits with a non-zero code on the first policy violation.