Background agents
Some steps in shipping software need judgment, not a script: triaging the failure, choosing the owner, deciding whether a change is safe. Spawn a background agent at that point with one API call. It reads the code, makes the call, and returns an answer your pipeline can act on, inside limits the platform enforces.
curl https://api.ellipsis.dev/sessions \
-H "Authorization: Bearer $ELLIPSIS_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"config_id": "agent_x9Kd3Fq2",
"prompt": "Candidate 1d40c7f is cut. Decide if it ships.",
"metadata": {"trigger": "release-gate"}
}'One API call
ellipsis: version: v1 name: Release gate description: Decide whether a release candidate is safe to shipclaude: model: claude-opus-4-8 system: | Review every commit since the last release tag, run the migration checks, and decide whether this candidate ships.environment: repositories: - name: splitshift-api image: dockerfile_append: | RUN apt-get update && apt-get install -y postgresql-client setup: | cd splitshift-api && pip install -r requirements.txtDefined as code
permissions: github: permissions: read_only repositories: [splitshift-api]budget: session: 2.00 day: 20.00Platform guardrails
Cloud coding agents unlock parallelization
Code review is an agent you define
Automate everything with cloud agents
Every use case runs on the same platform. See how it works