Context gateway · operational

Your team's context, loaded into every agent session.

Atrium is the context gateway for AI agents. One call gives Hermes, Claude Code, Codex, or your own agent the company, the active sprint, blockers, and the decisions your team already made — so the first message is useful instead of a re-explanation.

1 callto bootstrap context
7-daytrial, no card
Any agentHTTP or MCP
Capabilities

Everything an agent needs before it starts work

These are the capabilities shipping today in the Atrium gateway and admin dashboard.

Agent context bundles

Pre-load company, sprint, blockers, and team roster for Hermes, Claude Code, Codex, or any HTTP client — one request instead of five.

Sprint generation & scheduling

LLM-powered sprint plans from your backlog, then auto-scheduled across phases with capacity estimates per assignee.

Meeting intelligence

Drop in a transcript and Atrium extracts action items and decisions, then persists them as long-term agent memory.

Agent delegation

Assign a sprint to an agent and track it from assignment to completion, scoped per company so credentials never over-reach.

Project intelligence

Kanban board, Gantt timeline, sprint burndown, and an EVM panel (CPI/SPI) computed from live task data.

Scoped keys & device auth

Multi-company API keys with route scopes, plus browser-approved device authorization for the CLI so secrets stay in the OS keychain.

How it works

From empty repo to context-aware agent in three steps

1

Create a workspace

Describe the company and project. Atrium starts a 7-day trial and seeds a starter project with tasks.

2

Connect your agent

Generate a scoped key or run the CLI device-approval flow. No secret is ever pasted into a prompt.

3

Start a session

One POST to /api/v1/session/start returns the full context bundle your agent plans from.

API

Core endpoints

All write endpoints require a scoped API key. Health and the API index are public.

GET /health Liveness check
POST /api/v1/session/start Pre-load context for any agent
POST /api/v1/meeting/:id/transcript Transcript → action items + decisions
POST /api/v1/projects/:id/sprints/generate LLM-powered sprint generation
POST /api/v1/projects/:id/sprints/:sid/assign Assign an 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
Quickstart

Start a session with context

Replace the company id with the workspace you created in the dashboard.

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