🐯Freshcollected in 15m

Harness Turns AI Intelligence Into Production

Harness Turns AI Intelligence Into Production
PostLinkedIn
🐯Read original on 虎嗅
#harness#agent-orchestration#developer-tools#workflow-automationai-harnessdeepseekopenaicodex

💡Model quality is only half the story—Harness design can triple benchmark performance and cut token use.

⚡ 30-Second TL;DR

What Changed

DeepSeek opened DeepSeek Harness on August 13, while OpenAI open-sourced the core Harness behind Codex.

Why It Matters

The competitive advantage of AI products may increasingly come from orchestration and workflow design rather than model capability alone. Open-source Harness layers could lower the barrier for startups building domain-specific agents, while also intensifying competition around developer ecosystems and reusable workflows.

What To Do Next

Prototype a Harness around your current LLM using explicit task loops, tool permissions, memory handling, and output validators before switching models.

Who should care:Developers & AI Engineers

Key Points

  • DeepSeek opened DeepSeek Harness on August 13, while OpenAI open-sourced the core Harness behind Codex.
  • Changing the external execution layer reportedly improved ARC-AGI-3 performance from 13.3% to 38.3% while reducing output tokens to about one-sixth.
  • A Harness typically covers five to eight functions, including task loops, context and memory management, and tool invocation.
  • The open-source approach lets developers adapt a general model to industry-specific tools, workflows, permissions, data, and acceptance criteria.
  • The article frames Harness as an Android-like platform layer for turning tacit human expertise into reusable production assets.

🧠 Deep Insight

Background and context from public sources — not the original article. 17 sources cited.

🔑 Enhanced Key Takeaways

  • DeepSeek Harness is built upon Cordis, a meta-framework that enables 'Spatiotemporal Composability,' allowing all components, from models to user interfaces, to be modular and swappable plugins.
  • DeepSeek Harness (dsh) was released as an MIT-licensed developer preview on August 13, 2026, and rapidly accumulated over 169,000 GitHub stars and 18,100 forks within its first week, indicating strong developer interest.
  • OpenAI's open-sourced Codex Harness, released on August 20, 2026, operates under the Apache-2.0 license and comprises three main components: the codex exec CLI tool, the Codex SDK, and the app-server.
  • The significant performance boost on the ARC-AGI-3 benchmark (from 13.3% to 38.3%) and a sixfold reduction in token consumption for OpenAI's GPT-5.6 Sol model were achieved solely through optimizations to the Harness design.
  • DeepSeek Harness adopts a local-first design philosophy, ensuring that session data and user credentials remain on the user's device by default, which enhances privacy and mitigates vendor lock-in concerns.
  • The concept of an 'AI agent harness' is increasingly recognized as the 'operating system' for AI agents, responsible for managing the entire lifecycle of agent operations, including tool integration, memory, error recovery, human approvals, and context engineering.
📊 Competitor Analysis▸ Show
Feature/AspectDeepSeek Harness (DeepSeek)OpenAI Codex Harness (OpenAI)Claude Code (Anthropic)Google ADK (Google)
LicenseMIT License (Open Source)Apache-2.0 License (Open Source)ProprietaryProprietary
Core ArchitecturePlugin-only, built on Cordis (Spatiotemporal Composability)Shared Rust library (Codex core), App Server JSON-RPC protocolVertically integrated agentIntegrated with Google ecosystem
Key DifferentiatorCost-effective (for DeepSeek models), everything is a plugin, local-first philosophyPowers cross-platform coding agents, broad OpenAI ecosystem integrationBest reasoning depth and tool reliabilityMultimodal capabilities, deep Google ecosystem integration
Performance ImpactReportedly cost-effective, benchmarks for V4-Pro-0813 on Terminal Bench 2.1 (87.9), Toolathlon-Verified (74.1), DSBench-FullStack (71.1)Improved ARC-AGI-3 from 13.3% to 38.3% for GPT-5.6 Sol, 6x token reductionStrong reasoning and tool reliabilityRuns on Gemini 3.x
Primary Use CaseBuilding autonomous AI agents, coding agents, flexible runtimeEmbedding AI agent loops into products, engineering tools, operations dashboardsCoding agent, managing codebases, filesystem accessBuilding AI agents with multimodal and ecosystem integration
Memory/ContextAppend-only session log, resumable, searchable, forkable, replayable sessionsManages conversation state, prompt caching, context compression via /responses/compactManages memory across sessionsN/A (not specified in search results)

🛠️ Technical Deep Dive

  • DeepSeek Harness is built on Cordis, a meta-framework that formalizes "Spatiotemporal Composability." This includes spatial composability (mounting, replacing, or extending any part of the agent system as plugins) and temporal composability (composing behaviors and workflows across time, sequential steps, and persistent state).
  • It employs a micro-kernel architecture where runtime components, such as model adapters, tool registries, sandboxing environments, session state handlers, event dispatchers, and user interfaces, function as isolated and interchangeable plugins.
  • All agent runs are recorded in an append-only session log, which allows for full traceability, inspection, resumption, forking, searching, and replaying of sessions.
  • OpenAI's Codex Harness is implemented as a shared Rust library known as "Codex core," which encapsulates the agent loop, thread lifecycle management (create, resume, fork, archive), configuration, authentication, and sandboxed tool execution.
  • The Codex agent loop constructs an ever-growing JSON prompt, with prompt caching being a critical optimization that places static content at the beginning of the prompt to ensure cache hits on prior context for new turns.
  • To manage context window limitations, Codex utilizes a /responses/compact endpoint that returns an opaque encrypted_content item, encoding the model's latent understanding in a smaller, privacy-preserving format.
  • The Codex App Server exposes the core harness functionality to clients via a bidirectional JSON-RPC protocol over stdio, using fundamental primitives like Item (atomic I/O), Turn (a unit of agent work), and Thread (persistent conversation container).

🔮 Future ImplicationsAI analysis grounded in cited sources

The open-sourcing of AI Harness systems will significantly accelerate the development and adoption of production-ready AI agents.
By providing modular, extensible, and inspectable infrastructure, developers can more easily adapt general models to specific industry needs, fostering innovation and reducing development friction.
"Harness engineering" will emerge as a distinct and critical discipline within AI development.
The inherent complexity of managing context, memory, tool use, and operational constraints for reliable agent performance necessitates specialized expertise beyond traditional model training and prompt engineering.
The competitive landscape for AI will shift, with the quality and flexibility of the surrounding harness infrastructure becoming as crucial as, if not more than, raw model performance.
As frontier models achieve similar raw capabilities, the ability to seamlessly integrate, orchestrate, and customize agents for specific workflows will become a primary differentiator in the market.

Timeline

1950s-1980s
Theoretical foundations for artificial agents, including the Turing Test, are established.
1990s
Practical implementations of AI agents become widespread with the introduction of the Belief-Desire-Intention (BDI) model.
2025-05-16
OpenAI introduces Codex, a coding agent used internally for various development tasks.
2026-02-04
OpenAI publishes technical details on the 'Codex harness' and its App Server architecture.
2026-08-13
DeepSeek open-sources DeepSeek Harness (dsh) as a developer preview under the MIT license.
2026-08-20
OpenAI officially open-sources Harness, the core framework behind its Codex coding agent, under the Apache-2.0 license.
📰

Weekly AI Recap

Read this week's curated digest of top AI events →

👉Related Updates

AI-curated news aggregator. All content rights belong to original publishers.
Original source: 虎嗅

This is a summary, not the original. Read the source, or get the weekly briefing.

Weekly AI briefing

One email a week. Unsubscribe anytime.