Hollow AgentOS Reduces Claude Code Token Usage by 68.5% with JSON-Native OS Approach

What This Is
Hollow AgentOS is a JSON-native operating system abstraction layer designed specifically for AI agents. It addresses the inefficiency of running agents on infrastructure built for humans, where every state check typically runs 9 shell commands and cold starts require re-discovering context from scratch.
Key Details
The project delivers measurable token reductions across five real scenarios:
- Semantic search vs grep + cat: 91% fewer tokens
- Agent pickup vs cold log parsing: 83% fewer tokens
- State polling vs shell commands: 57% fewer tokens
- Overall reduction: 68.5%
The benchmark is fully reproducible using python3 tools/bench_compare.py.
Technical Implementation
Hollow AgentOS plugs into Claude Code via MCP (Model Context Protocol) and runs local inference through Ollama. The project is MIT licensed and available on GitHub.
Important clarification about the architecture: This isn't a kernel replacement. The author compares it to how Android sits on top of Linux - Android developers never write kernel code, they only interact with the Android layer. Hollow aims to be the complete abstraction layer between agents and the underlying system, so agents should never need to touch the underlying OS directly.
What's currently shipped is described as "the foundation of that vision, not the finished thing," but even at this stage it delivers "a large token reduction and measurable speed improvement with no noticeable loss in precision."
Who It's For
Developers running agentic workflows with Claude Code who want to optimize token usage and performance.
📖 Read the full source: r/ClaudeAI
👀 See Also

Ollama Update Adds OpenClaw Support for Kimi k2.5 Cloud Model
Ollama has released an update that integrates OpenClaw support for cloud models, including free access to the Kimi k2.5 model with web search functionality, running on NVIDIA data centers.

Open-source SwiftUI testing skill for Claude Code uses Computer Use to visually test apps
An open-source Claude Code skill called /ios-test visually tests SwiftUI apps using Computer Use capability. The agent finds .xcodeproj files, builds the app in a Simulator, then navigates through every screen, tapping buttons and following links like a real user.

Developer builds AI framework with 17 biological principles using Claude Code
A developer created an AI framework called Cognitive Sparks by implementing 17 biological principles like threshold firing and Hebbian plasticity, based on the 1999 book 'Sparks of Genius.' The entire project—22 design docs and 3,300 lines of code—was built in one day using Claude Code, with no human-written code.

Red Queen: A Deterministic Orchestrator That Runs Claude Code as a Worker Pool
Red Queen uses a state machine to orchestrate Claude Code subprocesses, eliminating LLM routing errors and token waste from mega-prompts.