Skip to content

Architecture

Everruns is a headless durable agentic harness engine built for reliability and scale. It provides a REST API for managing agents, sessions, and runs with real-time event streaming via SSE.

Platform Overview

PrincipleDescription
Headless / API-FirstIntegrate via REST API. No UI required for production.
Agentic LoopCore pattern: Reason → Act, repeated until task complete.
Durable ExecutionAgent state survives restarts. Never lose progress.
Horizontal ScalingAdd workers to increase throughput.
Provider AgnosticOpenAI, Anthropic, or custom LLM providers.

Central coordinator that exposes the REST API and manages all state in PostgreSQL:

  • Agents - AI assistant configurations
  • Sessions - Conversation state and history
  • Events - Real-time event streaming via SSE

Stateless executors that run agentic loops composed from atoms (Input → Reason → Act). Workers are:

  • Scalable - Add more to handle concurrent sessions
  • Fault-tolerant - Failed tasks automatically recovered
  • Stateless - All state lives in PostgreSQL

Administrative interface for platform operators. Not required for production use.

  • Agent configuration
  • Session monitoring
  • LLM provider settings

See Management UI for details.