Step-by-step guide¶
This guide takes you from a fresh clone to running the agent in CI and viewing its telemetry. Each step is self-contained— stop wherever you have what you need.
Prerequisites
Step 1— Clone the repository¶
Step 2— Install dependencies¶
Syncs the Python environment (including Zensical) via uv.
Step 3— Preview the documentation (optional)¶
Edit anything under docs/; the server live-reloads. Run make docs-build to
produce the static site in site/.
Step 4— Build the sandbox image¶
Builds the rootless, non-root agent image (app-test) from the Containerfile.
Note
The container engine defaults to Podman. Override with
make build CONTAINER_ENGINE=docker if you must.
Step 5— Run the end-to-end test locally¶
Validates configs, builds the image, smoke-tests the toolchain inside the container, and (if a key is present) does a live agent run.
make test-e2e # full run
SKIP_BUILD=1 make test-e2e # reuse the image from step 4
ANTHROPIC_API_KEY=… make test-e2e # also exercise the live agent
A green run ends with ✓ e2e passed.
Step 6— Wire it into CI¶
Step 7— View telemetry in Elastic¶
Every command, output, and git mutation is streamed (secret-scrubbed) to Elastic via the OTel Collector sidecar. Explore it in a Kibana dashboard— see the Observability page for the panels to expect.
Next: read Architecture for how the pieces fit together, or CI Versions for the GitLab vs GitHub details.