'use client'; import { Workflow, Database, Server } from 'lucide-react'; import { FeatureIcon } from './ui/FeatureIcon'; const problems = [ { title: 'Universal Agent API', desc: 'Coding agents like Claude Code and Amp have custom scaffolds. We provide a single API to swap between them effortlessly.', icon: Workflow, color: 'text-accent', }, { title: 'Universal Transcripts', desc: 'Maintaining agent history is hard when the agent manages its own session. Our schema makes retrieval and storage simple.', icon: Database, color: 'text-purple-400', }, { title: 'Agents in Sandboxes', desc: 'Run a simple curl command inside any sandbox to spawn an HTTP server that bridges the agent to your system.', icon: Server, color: 'text-green-400', }, ]; export function ProblemsSolved() { return (

Why Sandbox Agent SDK?

Solving the three fundamental friction points of agentic software development.

{problems.map((item, idx) => (

{item.title}

{item.desc}

))}
); }