Start Here
Run the full adoption path in three steps before diving deeper into policy and enterprise controls.
1. Debug in browser
Start with a real failing trace in the debugger and confirm the failing step plus next fix.
2. Install the recorder
Use pip, npm, or go get once, then capture traces automatically from real code paths.
3. Gate in CI
Promote stable traces into CI checks so reliability failures block risky releases.
# Install the recorder for your stack
pip install sepurux
npm install @sepurux/recorder
go get github.com/sepurux/go-recorder@latest
SEPURUX_API_BASE_URL=https://app.sepurux.dev/api/backend
SEPURUX_UI_BASE_URL=https://app.sepurux.dev
SEPURUX_API_KEY=<project_api_key>
SEPURUX_PROJECT_ID=<project_uuid>curl -X POST https://app.sepurux.dev/api/backend/v1/traces \
-H "Content-Type: application/json" \
-H "X-API-Key: $SEPURUX_API_KEY" \
-H "X-Project-Id: $SEPURUX_PROJECT_ID" \
-d '{
"trace_version": "0.1",
"source": "docs.quickstart",
"task": {"name": "refund_flow"},
"events": [
{"type": "model", "name": "triage_refund", "input": {"order_id": "ord_123"}}
]
}'Documentation Tracks
Choose the guide that matches your role and the part of the rollout you are working on.
Getting Started
Debug a trace first, install the recorder for your stack, capture traces automatically, and run checks in minutes.
CI/CD Gate
Turn reliability findings into release gates in GitHub workflows.
Policy & Security
Configure policy packs, approval rules, and tool zoning for sensitive actions.
API Reference Guide
See base URL, required headers, core endpoints, and practical request examples.
Integrations
Drop-in OpenAI and LangChain integrations that record traces without manual instrumentation.
Webhooks
Receive signed HTTP notifications for run.completed, trace.created, ci.decision, and more.
FAQ & Support
Find quick answers and the right channel for product, integration, and onboarding questions.
Product Overview
Understand how the debugger, replay, mutation packs, policy packs, and CI decisions fit together.
Reference Resources
Direct links for implementation detail, rollout support, and the public integration surface.
API Reference Guide
Public request examples, headers, and the core endpoints most teams need to wire traces, runs, and CI.
Full Explorer Access
The full interactive explorer and raw OpenAPI schema live inside the authenticated product workspace so project-scoped and administrative routes stay protected.
