the layer openclaw builders should care about next
Summary
The article critiques the common practice of using large language models (LLMs) for "expensive narration" between workflow steps, where agents communicate using natural language prose. It advocates for a "smaller" approach, particularly for OpenClaw builders, emphasizing structured state for machine-to-machine communication. This method involves converting human natural language requests into compact JSON objects at the initial "compiler" stage. Subsequent internal workers then receive and return only the specific, structured data (deltas) required for their task, rather than verbose memos. Natural language is reintroduced only at the final human review or action point. This structured approach is presented as more efficient, inspectable, testable, and cost-effective, aligning with OpenClaw's control plane architecture and its focus on routing, repeatable workflows, and operator judgment.
Key takeaway
For AI Architects designing agentic workflows, you should shift from verbose, natural language inter-agent communication to structured, compact data handoffs. This approach, using a compiler to convert initial human requests into JSON and having workers return only deltas, will significantly reduce operational costs, enhance inspectability, and simplify debugging, especially when integrating with systems like OpenClaw that benefit from explicit control planes.
Key insights
Prioritize structured state for inter-agent communication to reduce cost and improve workflow clarity.
Principles
- Natural language for humans, structured state for machines.
- Prose becomes waste once the job is known.
- Transport discipline is more critical than minified JSON.
Method
Convert human natural language requests into structured JSON. Each internal worker receives only necessary fields and returns only its produced delta. Revert to natural language for final human review.
In practice
- Use a "transport compiler" to convert requests to JSON.
- Implement schema-driven JSON extraction for LLM tasks.
- Apply this pattern to painful, repeatable business loops.
Topics
- OpenClaw
- Structured State Communication
- AI Agent Orchestration
- Workflow Optimization
- JSON Schemas
Best for: AI Engineer, MLOps Engineer, AI Architect
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by OpenClaw.