Sandbox
@WanLanglin/-awesome-cc-harness

Claude Code harness engineering guide

This is a reverse-engineering walkthrough of Claude Code’s harness, written as a long-form guide with diagrams, code snippets, and chaptered analysis. It explains how the agent loop, tools, permissions, sandbox, hooks, and context management fit together, plus two deeper findings on Grove and anti-distillation.

99 stars17 forksPythonUpdated 4mo ago
Who it's for

Builders who want to study Claude Code’s harness design before building or tuning their own agent workflows.

What it delivers

You can learn how a large agent harness is structured and reuse those ideas in your own workflow design.

What it does

Agent loop analysis

Breaks down the main loop, error recovery paths, and continue points in Claude Code’s execution flow.

Tool system analysis

Explains how Claude Code groups tools and why reads and writes are handled differently.

Permission model analysis

Maps the layered permission checks and sandbox boundaries used around agent actions.

Hooks and lifecycle coverage

Covers the hook system as a set of lifecycle events and extension points.

Grove pipeline findings

Describes the hidden training-data pipeline, retention changes, telemetry flow, and BigQuery path.

Anti-distillation defense analysis

Shows the layered defenses used to detect or discourage model distillation.

Mini harness chapter

Includes a hands-on section that builds a small runnable harness in Python.

README

awesome-cc-harness

GitHub stars License 中文 English

English (TL;DR)

Reverse-engineering all 512,664 lines of Claude Code's TypeScript source — agent loop, tool system, permission model, sandbox, context engineering. A 16-chapter textbook (~50,000 words, 147 code blocks, 77 diagrams) on how Anthropic actually builds an agent harness.

📣 Featured in Chinese AI media — Republished by QingkeAI (青稞AI) and other WeChat publications, with 20,000+ reads and 2,000+ shares. Original Chinese article.

Two findings you won't see elsewhere:

  • 🔬 Grove — Anthropic's hidden training-data pipeline. Retention jumps 30 days → 5 years when enabled. 796 telemetry events flow into BigQuery columns the source code labels "training data".
  • 🛡️ Anti-Distillation — 5-layer defense: native client attestation, request fingerprinting, fake-tool injection, signature-bound thinking blocks, "distillation-resistant" streamlined output.

👉 Read the full English version online

Harness Architecture


从 Claude Code 512K 行源码逆向 Harness Engineering

基于 Claude Code 全部 512,664 行 TypeScript 源码的系统性逆向分析,拆解 Anthropic 在 Agent Loop、工具系统、权限模型、沙盒安全、上下文工程等方面的设计决策与工程取舍。

📣 媒体报道:Harness Engineering 主分析已被 青稞AI 等公众号转发,累计阅读 20,000+,转发 2,000+原文链接

👉 点击这里开始在线阅读


最新更新

🔬 Grove 系统 — Claude Code 中从未被报道的训练数据基础设施

首次发现 Anthropic 从用户键盘到 BigQuery 训练数据仓库的完整数据链路:

  • Grove 系统 — UI 明确写着 "train and improve",开启后数据保留从 30 天延长至 5 年
  • 796 个 telemetry 事件 × 双路管道 — Datadog 拿脱敏数据,1P API 拿完整数据写入 BigQuery 特权列
  • SWE-bench 嵌入每个 telemetry 事件 — eval 数据和用户数据走同一条管道、同一个 BigQuery
  • 开发者注释直接写着 "training data"messages.ts:245 + sessionStorage.ts:4388
flowchart TD
    USER["用户交互"] --> GROVE{"grove_enabled?"}
    GROVE -->|ON| RETAIN["数据保留 5 年"]
    GROVE -->|OFF| DEFAULT["数据保留 30 天"]
    RETAIN --> EVENTS["796 个 tengu_* 事件"]
    DEFAULT --> EVENTS
    EVENTS --> DD["Datadog(脱敏)"]
    EVENTS --> BQ["BigQuery 特权列(完整数据)"]
    BQ --> TRAIN["开发者注释:'training data'"]

    style GROVE fill:#fff3e0,stroke:#ff9800,color:#333
    style RETAIN fill:#ffebee,stroke:#f44336,color:#333
    style BQ fill:#e3f2fd,stroke:#2196f3,color:#333
    style TRAIN fill:#e8f5e9,stroke:#4caf50,color:#333

👉 阅读完整分析

🛡️ Claude Code 是如何知道你在偷偷蒸馏的?— 机制分析

从源码中拆解 Anthropic 防止模型被盗的 5 层工程实现:

  • Native Client Attestation — Bun/Zig 原生层注入认证 token,服务端验证客户端真实性
  • Fingerprint Attribution — SHA256(salt + 消息特定字符 + 版本号),每条训练数据可追溯来源
  • Fake Tools Injection — 向 API 注入虚假工具定义,蒸馏模型暴露假工具 = 被抓
  • Signature-Bearing Blocks — thinking + connector_text 绑定 API key,换 key 立即失效
  • Streamlined Mode — 源码直接称为 "distillation-resistant output format"
flowchart LR
    subgraph 五层防御
        L1["1. Attestation<br/>客户端认证"]
        L2["2. Fingerprint<br/>请求指纹"]
        L3["3. Fake Tools<br/>蜜罐工具"]
        L4["4. Signature<br/>签名绑定"]
        L5["5. Streamlined<br/>输出防护"]
    end

    L1 --> L2 --> L3 --> L4 --> L5

    style L1 fill:#ffebee,stroke:#f44336,color:#333
    style L2 fill:#fff3e0,stroke:#ff9800,color:#333
    style L3 fill:#e8f5e9,stroke:#4caf50,color:#333
    style L4 fill:#e3f2fd,stroke:#2196f3,color:#333
    style L5 fill:#f3e5f5,stroke:#9c27b0,color:#333

👉 阅读完整分析


主教程:Harness Engineering 完全指南

16 章 · ~50,000 字 · 147 段代码块 · 77 张图表 · 中英双语

章节内容核心发现
第 1 章Harness Engineering 概论只改 Harness 就能让跑分从 52.8% 提升到 66.5%
第 2 章Claude Code 架构全景512K LOC 的模块分布与启动时序
第 3 章Agent Loop30 行 while(true) + 1800 行错误恢复 + 7 个 continue 站点
第 4 章Tool System43+ 工具的分区算法:读操作并行、写操作串行
第 5 章Permission Model6 层纵深防御,累计绕过概率 0.00000002%
第 6 章Hooks System26 事件 × 4 类型的生命周期可扩展架构
第 7 章Sandbox & Security文件系统 + 网络 + 进程三维隔离
第 8 章Context Engineering180K → 45K 的四级压缩管道
第 9-12 章Settings / MCP / SubAgent / Skills7 级设置层级、多智能体编排、插件生态
第 13-14 章实战指南 + 设计哲学10 条可复用的 Harness 设计原则
第 15 章Hands-on: Mini Harness200 行 Python 从零实现一个可运行的 Harness
第 16 章竞品对比Claude Code vs Cursor vs Copilot 12 维对比

相关资源

资源说明
learn-claude-code渐进式 12 节动手课程,适合从零构建 Harness
claude-code-harness生产级 Plan→Work→Review 插件
Martin Fowler: Harness Engineering三大支柱的概念框架
arXiv:2603.05344学术论文:scaffolding vs harness 架构

贡献

  • Star — 如果觉得有帮助,Star 是最大的鼓励
  • 🐛 Issue — 纠错、补充、讨论
  • 🔀 Fork & PR — 欢迎改进内容
  • 📢 分享 — 转发给做 AI Agent 的朋友

作者

WanLanglin · 微信: felixwll · Open to Agentic AI opportunities · 欢迎交流


License

Educational and research purposes. Claude Code is property of Anthropic, Inc.

Files in the repo

Repository payload7 top-level entries
  • docs
  • images
  • .gitignore
  • generate_all_charts.py
  • harness-engineering-tutorial.md
  • LICENSE
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More tutorials & guides

shareAI-lab/
learn-claude-code

Bash is all you need - A nano claude code–like 「agent harness」, built from 0 to 1

77k
luongnv89/
claude-howto
luongnv89/claude-howtoTutorials & Guides

A visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.

41k
agentskills/
agentskills
agentskills/agentskillsTutorials & Guides

Specification and documentation for Agent Skills

25k