Running Analysis
Running Analysis
Section titled “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.
Default run
Section titled “Default run”With no config file, Arxo runs the published metrics:
arxo analyzeWith a config file
Section titled “With a config file”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: 60Run with:
arxo analyze --config arxo.yamlSingle metric
Section titled “Single metric”To run only one metric:
arxo analyze --metric agent_architecture# orarxo analyze --metric openclaw_architectureCI and fail-fast
Section titled “CI and fail-fast”arxo analyze --fail-fastExits with a non-zero code on the first policy violation.
Next Steps
Section titled “Next Steps”- Configuration — Full config reference
- Policy Examples — Policy patterns
- Agent Architecture — Metric reference
- OpenClaw Architecture — OpenClaw metric reference
- OpenClaw Scoring and Keys — Composite scoring and config semantics
- OpenClaw Policy and CI Gates — Enforce OpenClaw baselines in CI