convex-eve

Introduction

Persist reactive, application-facing chats for agents powered by Eve.

convex-eve is an open-source Convex component for database-backed Eve chats. Eve owns the durable agent session and execution stream; Convex owns the authenticated thread catalogue, pending delivery state, pagination, and reactive EveMessage projection.

Early development

The repository is establishing its public contracts. Eve-native dispatch and projection are runnable; idempotency, reconciliation, and retention controls still need production hardening.

Why it exists

Eve is a filesystem-first agent framework with instructions, tools, skills, subagents, sandboxes, schedules, durable sessions, and rich event streams. Convex provides transactions, application data, scheduled work, reactive queries, and typed backend APIs.

Eve already supplies ClientSessionState, MessageStreamEvent, EveMessage, and its default event reducer. convex-eve persists those semantics rather than defining a competing chat protocol.

Core responsibilities

SurfaceOwns
Host applicationAuthentication, authorization, tenancy, product data, and tool policy
convex-eveThreads, pending delivery, stream coordinates, sanitized Eve message projections, and reactive pagination
EveAgent definitions, model loops, skills, tools, subagents, sandbox, and durable execution

The component is independent from @convex-dev/agent. It borrows familiar storage and React ergonomics where useful, but Eve—not Convex or the AI SDK—owns execution.

On this page