# AgentMemo - The Control Plane for AI Agents > AgentMemo is infrastructure that makes AI agents reliable. Persistent state, workflow memory, seamless handoffs. ## What AgentMemo Does AgentMemo provides: - **Persistent State**: Key-value storage with JSON support. Agents pick up exactly where they left off. - **Workflow Memory**: Versioned markdown workflows. Any agent can execute documented workflows. - **Handoff Protocol**: Seamless agent-to-agent work transfer without context loss. - **Escalation System**: Agents know when to ask humans for help. - **Audit Trail**: Every action logged for debugging and compliance. - **Framework Agnostic**: Works with CrewAI, LangGraph, AutoGen, custom agents, or any framework. ## The Economic Model Design workflows with expensive models (Opus/GPT-4), execute forever with cheap models (Haiku/GPT-4o-mini). - Pay for intelligence ONCE to design - Platform preserves perfect context - Execute at 1/60th the cost forever ## API Overview ``` POST /api/agents # Register an agent GET /api/agents/:id # Get agent info POST /api/state # Write persistent state GET /api/state # Read state POST /api/workflows # Create versioned workflow GET /api/workflows # Get workflow by name POST /api/handoffs # Create handoff to another agent PATCH /api/handoffs/:id # Accept/reject handoff POST /api/escalations # Escalate to human ``` ## Quick Start ```javascript // Register your agent const agent = await fetch('https://app.agentmemo.ai/api/agents', { method: 'POST', body: JSON.stringify({ name: 'my-agent', framework: 'custom' }) }).then(r => r.json()); // Write state (persists across sessions) await fetch('https://app.agentmemo.ai/api/state', { method: 'POST', body: JSON.stringify({ agent_id: agent.id, component: 'conversation', key: 'context', value: { messages: [...], lastAction: 'task_123' } }) }); // Read state (in any future session) const state = await fetch(`https://app.agentmemo.ai/api/state?agent_id=${agent.id}&component=conversation&key=context`) .then(r => r.json()); ``` ## Pricing - Free 7-day trial - $4/month Hobby (20x ROI) - $9/month Builder (28x ROI) - $19/month Starter (42x ROI) - $39/month Creator (46x ROI) - $79/month Pro (51x ROI) - $149/month Scale - $299/month Enterprise ## Links - Website: https://agentmemo.ai - Documentation: https://agentmemo.ai/docs/ - GitHub: https://github.com/cmitt23/agent-memo - Pricing: https://agentmemo.ai/pricing.html ## Contact For integration support or enterprise inquiries: hello@agentmemo.ai