Documentation

Implementation documentation for platform teams

Integration guides for API connectivity, authentication, workflow orchestration, governance controls, and production operations.

API Overview

REST endpoints for automation control, observability telemetry, and content cache access.

GET  /api/content
POST /api/forms/submit
POST /api/analytics/pageview
GET  /api/health

Authentication

Admin and customer routes are protected via HTTP-only JWT session cookies and role checks.

POST /api/auth/login
GET  /api/auth/me
POST /api/auth/update-password
POST /api/auth/logout

Workflow Setup

Define deterministic workflow stages, schema contracts, and fallback actions.

  • Create workflow intake schema.
  • Define execution graph and retry strategy.
  • Attach verifier and escalation policy.

Token Budget Controls

Set global and per-request limits with automatic blocking and cache fallback behavior.

MAX_TOKENS_PER_REQUEST=300
MAX_DAILY_TOKENS=12000
MAX_DAILY_COST=6.0

Webhook Integration

Use signed request gateways for inbound workflow triggers and outbound status callbacks.

  • Validate source signatures.
  • Normalize payloads before execution.
  • Log webhook lifecycle events.

Security Overview

Static frontend + Node API control plane with secure credential boundaries and policy controls.

Client (Static) -> API (Express)
                    -> Policy + Auth
                    -> Telemetry + Audit
                    -> Controlled Model Gateways