DocsQuickstart

Quickstart

Get AKIOS Pro evaluating in under 5 minutes. Deploy the container, connect evidence collection, and verify your first evidence record.

1

PULL AND RUN

Pull the AKIOS Pro Docker image and start evaluating immediately. No license key required for evaluation — the free self-hosted version includes full evidence collection.

bash
# Pull and start AKIOS Pro
docker run -d --name akios-pro -p 8080:8080 \
  akioudai/akios-pro:latest

# Verify it is running
curl http://localhost:8080/health

Evaluation limits

Free evaluation: full evidence collection, 7-day retention, up to 10K traces per day. Upgrade to Pro for extended retention and higher capacity.
2

CONNECT EVIDENCE

Point AKIOS Pro at your LLM gateway or agent telemetry. Use the CLI to configure a source.

bash
# Configure your LLM gateway as an evidence source
docker exec akios-pro akios sources add --type gateway \
  --name my-agents \
  --endpoint http://your-gateway:4000

# Verify connection
docker exec akios-pro akios status
# Expected: Sources: 1 connected | Traces: 0 | Status: active

AKIOS Pro supports gateway log ingestion, webhook receivers, REST API push, OpenTelemetry, and log file parsing. See integration guides for your stack.

3

VIEW EVIDENCE

Once AKIOS Pro detects agent activity, open the dashboard or use the CLI to inspect traces and findings.

bash
# Open the dashboard
open http://localhost:8080

# Or check via CLI
docker exec akios-pro akios traces list --limit 5
docker exec akios-pro akios findings list --severity high
4

EXPORT A PACK

Generate a regulator-ready evidence pack from collected traces.

bash
# Export evidence as a compliance pack
docker exec akios-pro akios pack --last 24h \
  --format html --output /tmp/evidence-pack.html

# Open the report
open /tmp/evidence-pack.html

Next Steps#