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

Corey Haines' Marketing Skills Set for AI Agents
A set of 25 marketing skills for AI agents has been added to OpenClaw, covering conversion optimization, copywriting, analytics, and growth engineering. The conversion optimization skill is noted as particularly effective in multi-agent setups.

LivingAgents.ai: A Web-Based AI Agent Simulation Using Claude API
LivingAgents.ai is a web-based simulation where every agent is powered by the Claude API, performing actions like foraging, trading, crafting, attacking, reproducing, and dying permanently, with each action requiring a real LLM call.

Git pre-commit hook prevents AI coding agents from committing with stale documentation
A developer created a Git pre-commit hook that blocks commits when documentation files are outdated, specifically addressing issues with AI coding agents like Claude Code, Cursor, Windsurf, and Copilot. The tool exits with error code 1 to force AI agents to update documentation before proceeding.

Memorine: A Local Memory System for OpenClaw Agents Using Python and SQLite
Memorine is a local memory system for OpenClaw agents that uses only Python and SQLite, with no external dependencies, API calls, or telemetry. It provides fact storage with full-text search, memory decay, contradiction detection, causal event chaining, and optional semantic search via fastembed and sqlite-vec.