Atrium Context Gateway

Pre-loaded company + sprint + meeting context for any AI agent session.
The .bashrc of AI agents โ€” loaded every session, useful from message one.

โ— operational
Sign in to Dashboard โ†’ Health Check

๐Ÿค– Agent Context

Context bundles for Hermes, Claude Code, Codex โ€” any agent starts a session knowing the company, sprint, blockers, and team roster.

๐Ÿ“‹ Sprint Generator

LLM-powered sprint planning from backlog tasks. Weekly sprints with task assignments, capacity estimates, and agent delegation.

๐ŸŽฏ Meeting Intelligence

Upload a transcript โ†’ LLM extracts action items + decisions โ†’ persisted for every future agent session.

๐Ÿค Agent Delegation

Assign any sprint to Hermes, Claude Code, or Codex. Track execution status from assignment to completion.

API Endpoints

GET /health Liveness check
POST /api/v1/session/start Pre-load context for any agent
POST /api/v1/meeting/:id/transcript LLM โ†’ action items + decisions
POST /api/v1/projects/:id/sprints/generate LLM-powered sprint generation
POST /api/v1/projects/:id/sprints/:sid/assign Assign agent to a sprint
GET /api/v1/projects/:id/sprints/current Active sprint with burndown
GET /api/v1/action-items Kanban-ready, grouped by status
GET /api/v1/projects/:id/detail Full project: tasks, sprints, metrics, teams

Quick start

# Start a session with context
curl -X POST https://atrium.cool/api/v1/session/start \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<uuid>","agent_type":"hermes"}'