惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why JSON is Becoming a Bottleneck for AI Agents
Makroumi · 2026-06-01 · via DEV Community

The AI industry is racing toward larger context windows.

Models now accept hundreds of thousands or even millions of tokens. Agent frameworks coordinate dozens of specialized workers. Memory systems store increasingly large traces. Tool execution histories continue to grow.

Yet almost all of this infrastructure still relies on JSON.

JSON was designed for web applications.

It was not designed for autonomous AI systems.

The Problem

Consider a typical agent workflow.

A planner creates tasks.

An executor calls tools.

A memory layer stores observations.

A retrieval system injects context.

Every step serializes and deserializes structured data.

In many systems, JSON is processed thousands of times during a single workflow.

The format works.

The cost accumulates.

Repeated keys increase payload size.

Token counts grow unnecessarily.

Semantic mistakes pass validation because JSON only validates syntax.

The result is more bandwidth, more storage, more context consumption, and more opportunity for agent failures.

Existing Formats Solve Different Problems

Protocol Buffers solve schema contracts.

MessagePack reduces binary size.

Apache Arrow optimizes analytics.

Parquet optimizes storage.

None were designed around the constraints of modern agent systems:

Context budgets.

Token efficiency.

Agent communication.

Semantic validation.

Model generated structured output.

These are increasingly important workloads.

Introducing ULMEN

ULMEN, Ultra Lightweight Minimal Encoding Notation, was built specifically for AI and agent infrastructure.

Instead of treating LLMs as an afterthought, ULMEN treats them as a primary consumer of data.

The format provides four complementary surfaces:

LUMB for highly compact binary transport.

ULMEN Text for human readable workflows.

ULMEN LLM for token efficient model interaction.

ULMEN AGENT for semantically validated agent communication.

The goal is not simply to compress data.

The goal is to reduce the cost and complexity of moving structured information through AI systems.

What Makes It Different

ULMEN applies several techniques that traditional formats typically do not combine:

Shared string pools.

Column aware encoding.

Typed self describing headers.

Exact token counting.

Context compression primitives.

Semantic validation for agent traces.

For example, ULMEN AGENT can reject invalid workflows such as:

Tool calls without matching results.

Invalid record types.

Broken step ordering.

Malformed agent traces.

JSON will happily serialize all of these.

ULMEN can detect them before they reach the model.

Benchmark Results

In benchmark workloads consisting of 1,000 mixed records:

ULMEN LLM reduced token usage by approximately 44 percent compared to compact JSON.

ULMEN Binary reduced payload size to roughly 22 percent of JSON.

The Rust implementation delivered performance competitive with optimized JSON libraries while producing significantly smaller outputs.

More importantly, the savings compound.

In large scale agent deployments, serialization efficiency directly affects model costs, storage requirements, network traffic, and latency.

Example

from ulmen import encode_ulmen_llm

payload = encode_ulmen_llm(records)

Enter fullscreen mode Exit fullscreen mode

The resulting payload contains a typed schema header and compact record representation designed for efficient model consumption.

Why This Matters

The industry has spent years optimizing models.

The next wave of gains may come from optimizing the infrastructure around them.

As agent systems become more complex, serialization is no longer just a storage concern.

It becomes part of the intelligence stack itself.

That is the problem ULMEN was built to solve.