Compute Sovereignty and the Expansion of Z.AI
The Economics of Operational Data in Neural Network Tooling

The AI tool development industry is currently undergoing a pivotal transition: moving away from simple chatbots toward fully autonomous agents with direct access to file systems and terminals. In this new paradigm, efficiency is dictated not only by the quality of the underlying large language model (LLM) but by how effectively an agent packages requests before they hit the API. Researchers at Systima recently conducted a granular analysis of two prominent solutions—Claude Code and OpenCode—using Claude Sonnet 4.5 as the shared computational core. To ensure total transparency, a proxy server was implemented between the tools and the API to log every byte of transmitted data, from input tokens to caching operations.
The most telling result came from a "minimal load" test, where agents were asked simply to send the message "OK." Despite a negligible user request of just 22 characters, Claude Code transformed this task into a massive data packet. Alongside the brief response, the model received system instructions totaling 27.3 thousand characters and detailed descriptions of 27 available tools, adding another 100 thousand characters. Collectively, this service context created a staggering "digital footprint" that the user effectively pays for with every single interaction.
OpenCode demonstrated a fundamentally different approach to optimization. Its system instructions spanned only 9.3 thousand characters, while the schemas for ten tools occupied roughly 20.9 thousand. The most significant disparity appeared in function descriptions: where Claude Code consumed 24 thousand tokens, OpenCode managed with just four thousand. Even when toolsets were completely disabled to compare "pure" system prompts, the gap remained stark—6.5 thousand tokens for Anthropic's product versus 2 thousand for the alternative solution.
This efficiency gap becomes critical when applied to real-world tasks. In a scenario involving file analysis and summarization, both agents completed the task correctly, but the cost of achieving that result was incomparable. Claude Code required six requests and nearly 200 thousand input tokens. OpenCode solved the same problem in four iterations, consuming only 41 thousand tokens. Consequently, for an identical outcome, one tool proved to be nearly five times more economical than the other.
Beyond baseline instructions, external factors such as project configuration files and the use of MCP (Model Context Protocol) servers also impact context costs. For instance, the presence of an AGENTS.md file (72 KB) adds a static overhead of 20 thousand tokens to every request, regardless of the tool used. Similarly, five small MCP servers increase the context volume by several thousand additional tokens.
However, true "resource inflation" occurs during the delegation of tasks to sub-agents. In complex scenarios where a primary agent spawns auxiliary helpers for specialized tasks, token consumption grows exponentially. In one test, the deployment of two sub-agents drove Claude Code's costs from 121 thousand up to 513 thousand tokens. This highlights a fundamental challenge in modern agentic systems: the more complex the management hierarchy, the higher the "tax" on context transfer. Optimizing service data has thus become a priority for anyone looking to scale AI development.

