'use client'; import { Workflow, Database, Server } from 'lucide-react'; import { FeatureIcon } from './ui/FeatureIcon'; const problems = [ { title: 'Universal Agent API', desc: 'Claude Code, Codex, OpenCode, and Amp each have different APIs. We provide a single interface to control them all.', icon: Workflow, color: 'text-accent', }, { title: 'Universal Transcripts', desc: 'Every agent has its own event format. Our universal schema normalizes them all — stream, store, and replay with ease.', icon: Database, color: 'text-purple-400', }, { title: 'Run Anywhere', desc: 'Lightweight Rust daemon runs locally or in any environment. One command to bridge coding agents to your system.', icon: Server, color: 'text-green-400', }, ]; export function ProblemsSolved() { return (

Why Coding Agent SDK?

Solving the three fundamental friction points of agentic software development.

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

{item.title}

{item.desc}

))}
); }