Markdown as Protocol for Agentic UI with Streaming Execution

A developer built a prototype exploring how to combine generative UI with code execution for AI agents using Markdown as a unified protocol. The system streams text, executable code, and data in a single response, with code executing incrementally as it arrives.
The Protocol: Markdown with Three Block Types
The approach uses standard Markdown syntax that LLMs already understand, avoiding the need to teach new formats. It defines three block types:
- Text blocks: Plain Markdown formatting that streams to the user
- Code fences:
```tsx agent.runexecutes TypeScript/JSX code on the server in a persistent context - Data fences:
```json agent.data => "id"streams JSON data into UI components
These blocks can be interleaved in any order within a single response. The parser handles them incrementally as tokens arrive from the LLM.
Streaming Execution
Code executes statement-by-statement as the LLM generates it, without waiting for the full code fence to close. This allows API calls to start, UI to render, and errors to surface while the LLM is still sending tokens. The developer built bun-streaming-exec to handle this, using vm.Script with custom wrapping since streaming execution isn't a standard runtime primitive.
Agentic UI with mount() Primitive
The system uses React for UI generation since LLMs have extensive exposure to React components and JSX. The core primitive is mount():
mount({
ui: () => <Card>Hello from the agent!</Card>
});When the LLM generates this code and the server executes it, mount() serializes the React component and sends it to the client for rendering within the chat interface.
Data Flow Patterns
The prototype implements four distinct patterns for data movement:
- Client → Server (forms): The agent can wait for user input through forms
- Server → Client (streamed data): Data fences stream JSON directly into mounted UIs
- Server → LLM (console.log):
console.logoutput and exceptions feed back to the LLM as a new turn - LLM → Server → Client (full roundtrip): Complete cycles where the LLM generates code that fetches data and renders UI with that data
Feedback Loop
The system uses console.log as the mechanism for the agent to talk to itself. When the LLM generates Markdown with code blocks, text streams to the user while code executes incrementally. Any console.* output or exceptions feed back to the LLM as a new turn. If there's no output or exceptions, the system waits for a new user query.
This allows the agent to react to its own execution, such as checking message counts or pausing to wait for user input before proceeding.
📖 Read the full source: HN AI Agents
👀 See Also

Built AI Forensic Accounting Software with My Dad — CaseTrail Automates Financial Fraud Detection
A father-son team built CaseTrail, an AI-powered forensic accounting tool that ingests bank statements and identifies anomalies. The blog details integration with LLMs for transaction analysis.

Snip tool enables visual communication with AI coding agents
Snip is a free tool that lets developers screenshot, annotate, and draw to show AI agents what they mean visually, while agents can generate diagrams or load images directly through CLI or MCP. Currently runs on Apple Silicon Macs with Mermaid diagram support and HTML support in progress.

Persistent Side Panel for Claude Code with Autonomous Content Management
A developer built a TUI panel that sits in an iTerm2 split pane next to the terminal, featuring three fixed panels that Claude autonomously manages to show relevant content like code, diagrams, and status updates.

Godmode Plugin Adds Autonomous Iteration Loop to Claude Code and Other AI Coding Agents
Godmode is an open-source plugin that adds an autonomous measure-modify-verify loop to Claude Code, with parallel agents, failure memory, and 126 skills including optimization, security audits, and TDD. It works with Cursor, Codex, Gemini CLI, and OpenCode.