Codex and Harness
Public references and source navigation
Official docs, papers, public source code, and pinned-version evidence, in reading order.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Official docs, papers, public source code, and pinned-version evidence, in reading order.
| Reading order | Material | Focus |
|---|---|---|
| 1 | App Server | Thread/Turn/Item, bidirectional protocol, lifecycle |
| 2 | Astra model guide | Capability support, not for guessing the training recipe |
| 3 | Async tool calling | async flag, call ID, wait, compatibility limits |
| 4 | Steering | accepted, successor, pending |
| 5 | PTC | allowed_callers, caller, program resumption |
| 6 | Compaction | Output handling for automatic vs. standalone compaction |
| 7 | Memories | Local memory and product controls |
| 8 | Computer Use | Environment execution and observation loop |
| 9 | Claude Agent loop | Fair view of capabilities other systems already have |
| 10 | Anthropic long-task harness | Handoff artifacts and acceptance |
| 11 | Anthropic Managed Agents | Separation of session/harness/sandbox |
| 12 | MCP architecture spec | Boundary between protocol and orchestration |
| 13 | Anthropic code execution + MCP | Code orchestration does not exclude MCP |
| 14 | Terminal-Bench paper | Methods for task and system evaluation |
| File | What was verified this time |
|---|---|
| app-server/src/code_mode_host.rs | Process-level host transport selection, gRPC URL validation |
| code-mode-runtime/src/runtime/mod.rs | V8 execution thread, commands and events, Promise wiring |
| core/src/tools/code_mode/execute_handler.rs | Cell startup and first result, yield path |
| core/src/tools/code_mode/wait_handler.rs | Cell wait and termination |
| core/src/compact_remote_v2.rs | Compaction requests, output validation, history retention |
| core/src/context_manager/history.rs | Management of model-visible history |
| core/src/context_manager/normalize.rs | Normalization of call and result history items |
| core/src/tools/handlers/new_context_window.rs | New window request without prior summarization |
| ext/history-notes/src/tools.rs | History/notes interface and consistency boundary |
| memories/write/src/phase1.rs | Extract candidate memories per rollout |
| memories/write/src/phase2.rs | Global consolidation, workspaces, and leases |
| app-server/tests/suite/v2/turn_steer.rs | Use tests to cross-check the steering protocol semantics |