What problem does it solve? Building AI agents that stream responses to user interfaces requires implementing the AG-UI event protocol, wiring up adapters for frameworks like LangGraph or LangChain, and deploying HTTP servers with SSE streaming. This Skill provides the reference documentation and patterns to do all of that with the Cloudbase Agent TypeScript SDK. ## Core Features & Use Cases - Agent Server Deployment: Deploy AG-UI compatible agents as HTTP services with @cloudbase/agent-server, including CORS, logging, health checks, and OpenAI-compatible endpoints. - Framework Adapters: Wrap LangGraph StateGraph workflows with ClientStateAnnotation or LangChain agents with clientTools() middleware, with CloudBaseSaver for persistent multi-tenant checkpointing. - UI Client Integration: Build web clients with @ag-ui/client or WeChat Mini Program interfaces with @cloudbase/agent-ui-miniprogram, including client-side tool execution. - Use Case: You want to add a streaming AI chat assistant to a WeChat Mini Program. Use this Skill to deploy a LangGraph agent server with CloudBase persistence, then connect the Mini Program UI via the AG-UI behavior mixin with client tools like wx.showToast. ## Quick Start Ask the agent to deploy a LangGraph workflow as an AG-UI server with @cloudbase/agent-server and connect a WeChat Mini Program client to it.