Skip to content

Commit 4b95969

Browse files
committed
refine: separate agency origin from agent product definition in READMEs
Resolves the contradiction between "Agent is the model" and "Model is the driver, Harness is the vehicle". All three language versions now clearly distinguish: agency comes from training, but a working agent product = model + harness.
1 parent 8bad6eb commit 4b95969

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README-ja.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
[English](./README.md) | [中文](./README-zh.md) | [日本語](./README-ja.md)
44

5-
## モデルこそが Agent である
5+
## Agency はモデルから生まれる。Agent プロダクト = モデル + Harness
66

7-
コードの話をする前に、一つだけ明確にしておく
7+
コードの話をする前に、一つ明確にしておく
88

9-
**Agent とはモデルのことだ。フレームワークではない。プロンプトチェーンではない。ドラッグ&ドロップのワークフローではない。**
9+
**Agency -- 知覚し、推論し、行動する能力 -- はモデルの訓練から生まれる。外部コードの編成からではない。** だが実際に動く Agent プロダクトには、モデルと Harness の両方が必要だ。モデルはドライバー、Harness は車。本リポジトリは車の作り方を教える。
1010

11-
### Agent とは何か
11+
### Agency はどこから来るか
1212

13-
Agent とはニューラルネットワークである -- Transformer、RNN、学習された関数 -- 数十億回の勾配更新を経て、行動系列データの上で環境を知覚し、目標を推論し、行動を起こすことを学んだもの。AI における "Agent" という言葉は、始まりからずっとこの意味だった。常に
13+
Agent の核心にあるのはニューラルネットワークだ -- Transformer、RNN、学習された関数 -- 数十億回の勾配更新を経て、行動系列データの上で環境を知覚し、目標を推論し、行動を起こすことを学んだもの。Agency は周囲のコードから与えられるものではない。訓練を通じてモデルが獲得するものだ
1414

15-
人間も Agent だ。数百万年の進化的訓練によって形作られた生物的ニューラルネットワーク。感覚で世界を知覚し、脳で推論し、身体で行動する。DeepMind、OpenAI、Anthropic が "Agent" と言うとき、それはこの分野が誕生以来ずっと意味してきたものと同じだ**行動することを学んだモデル**
15+
人間が最もわかりやすい例だ。数百万年の進化的訓練によって形作られた生物的ニューラルネットワーク。感覚で世界を知覚し、脳で推論し、身体で行動する。DeepMind、OpenAI、Anthropic が "Agent" と言うとき、その核心は常に同じことを指している**訓練によって行動を学んだモデルと、それを特定の環境で機能させるインフラの組み合わせ**
1616

1717
歴史がその証拠を刻んでいる:
1818

@@ -26,7 +26,7 @@ Agent とはニューラルネットワークである -- Transformer、RNN、
2626

2727
- **2024-2025 -- LLM Agent がソフトウェアエンジニアリングを再構築。** Claude、GPT、Gemini -- 人類のコードと推論の全幅で訓練された大規模言語モデル -- がコーディング Agent として展開される。コードベースを読み、実装を書き、障害をデバッグし、チームで協調する。アーキテクチャは先行するすべての Agent と同一:訓練されたモデルが環境に配置され、知覚と行動のツールを与えられる。唯一の違いは、学んだものの規模と解くタスクの汎用性。
2828

29-
すべてのマイルストーンが同じ真理を共有している**"Agent" は決して周囲のコードではない。Agent は常にモデルそのものだ。**
29+
すべてのマイルストーンが同じ事実を示している**Agency -- 知覚し、推論し、行動する能力 -- は訓練によって獲得されるものであり、コードで組み立てるものではない。** しかし同時に、どの Agent も動作するための環境を必要とした:Atari エミュレータ、Dota 2 クライアント、StarCraft II エンジン、IDE とターミナル。モデルが知能を提供し、環境が行動空間を提供する。両方が揃って初めて完全な Agent となる。
3030

3131
### Agent ではないもの
3232

@@ -367,6 +367,6 @@ MIT
367367

368368
---
369369

370-
**モデルが Agent だ。コードは Harness 。優れた Harness を作れ。Agent が残りをやる**
370+
**Agency はモデルから生まれる。Harness が Agency を現実にする。優れた Harness を作れ。モデルが残りをやる**
371371

372372
**Bash is all you need. Real agents are all the universe needs.**

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[English](./README.md) | [中文](./README-zh.md) | [日本語](./README-ja.md)
22
# Learn Claude Code -- Harness Engineering for Real Agents
33

4-
## The Model IS the Agent
4+
## Agency Comes from the Model. An Agent Product = Model + Harness.
55

6-
Before we talk about code, let's get one thing absolutely straight.
6+
Before we talk about code, let's get one thing straight.
77

8-
**An agent is a model. Not a framework. Not a prompt chain. Not a drag-and-drop workflow.**
8+
**Agency -- the ability to perceive, reason, and act -- comes from model training, not from external code orchestration.** But a working agent product needs both the model and the harness. The model is the driver, the harness is the vehicle. This repo teaches you how to build the vehicle.
99

10-
### What an Agent IS
10+
### Where Agency Comes From
1111

12-
An agent is a neural network -- a Transformer, an RNN, a learned function -- that has been trained, through billions of gradient updates on action-sequence data, to perceive an environment, reason about goals, and take actions to achieve them. The word "agent" in AI has always meant this. Always.
12+
At the core of every agent is a neural network -- a Transformer, an RNN, a learned function -- that has been trained, through billions of gradient updates on action-sequence data, to perceive an environment, reason about goals, and take actions. Agency is never granted by the surrounding code. It is learned by the model during training.
1313

14-
A human is an agent. A biological neural network, shaped by millions of years of evolutionary training, perceiving the world through senses, reasoning through a brain, acting through a body. When DeepMind, OpenAI, or Anthropic say "agent," they mean the same thing the field has meant since its inception: **a model that has learned to act.**
14+
Humans are the best example. A biological neural network shaped by millions of years of evolutionary training, perceiving the world through senses, reasoning through a brain, acting through a body. When DeepMind, OpenAI, or Anthropic say "agent," the core of what they mean is always the same thing: **a model that has learned to act, plus the infrastructure that lets it operate in a specific environment.**
1515

1616
The proof is written in history:
1717

@@ -25,7 +25,7 @@ The proof is written in history:
2525

2626
- **2024-2025 -- LLM agents reshape software engineering.** Claude, GPT, Gemini -- large language models trained on the entirety of human code and reasoning -- are deployed as coding agents. They read codebases, write implementations, debug failures, coordinate in teams. The architecture is identical to every agent before them: a trained model, placed in an environment, given tools to perceive and act. The only difference is the scale of what they've learned and the generality of the tasks they solve.
2727

28-
Every one of these milestones shares the same truth: **the "agent" is never the surrounding code. The agent is always the model.**
28+
Every one of these milestones points to the same fact: **agency -- the ability to perceive, reason, and act -- is trained, not coded.** But every agent also needed an environment to operate in: the Atari emulator, the Dota 2 client, the StarCraft II engine, the IDE and terminal. The model provides intelligence. The environment provides the action space. Together they form a complete agent.
2929

3030
### What an Agent Is NOT
3131

@@ -372,6 +372,6 @@ MIT
372372

373373
---
374374

375-
**The model is the agent. The code is the harness. Build great harnesses. The agent will do the rest.**
375+
**Agency comes from the model. The harness makes agency real. Build great harnesses. The model will do the rest.**
376376

377377
**Bash is all you need. Real agents are all the universe needs.**

0 commit comments

Comments
 (0)