LV.1
EXP 0/1000
◀ 用語一覧
NO.8.5

🧠 Context Engineering

一言で

Context Engineering は、AI に渡す文脈を「できるだけ少なく、でも必要なだけ多く」設計する技術。

何でも全部読ませるのではなく、目的・制約・関連ファイル・検証方法を絞って、AI が迷わず次の一手を選べる状態を作る。

良い context は量ではなく 選び方。不要な情報を減らし、必要な情報を欠かさない。

Context rot(コンテキスト劣化)

LLM は context window(コンテキストウィンドウ)が大きいほど賢くなるわけではない。情報を詰め込みすぎると、Lost in the middle(中央埋没) で重要情報が中央に埋もれたり、Recency bias(直近性バイアス) で直近の情報を過大評価したりして、判断が鈍る。

これを context rot(コンテキスト劣化) と呼ぶ。

treemap-beta
"Context window / コンテキストウィンドウ"
  "Smart zone / 賢いゾーン": 60:::smart
  "Dumb zone / 鈍いゾーン": 40:::dumb
classDef smart fill:#0891b2,stroke:#67e8f9,color:#ecfeff
classDef dumb fill:#7a1748,stroke:#ff2e88,color:#ffe8f4

Context Engineering の目的は、context window を埋めることではなく、必要な情報が目立つ状態を保つこと

Context window:Start

Start はほぼ理想状態。常時必要な System/tools(skills descriptions / copilot-instructions / MCP servers)だけが入り、作業用の余白が大きい。

treemap-beta
"Context window"
  "System & tools": 10:::used
  "Free space": 75:::free
  "Buffer": 15:::free
classDef used fill:#7a1748,stroke:#ff2e88,color:#ffe8f4
classDef free fill:#0891b2,stroke:#67e8f9,color:#ecfeff

Context window:Custom agent

Custom agent に切り替えると、その agent instruction が context に追加される。

treemap-beta
"Context window"
  "System & tools": 10:::used
  "Custom Agent": 10:::used
  "Free space": 65:::free
  "Buffer": 15:::free
classDef used fill:#7a1748,stroke:#ff2e88,color:#ffe8f4
classDef free fill:#0891b2,stroke:#67e8f9,color:#ecfeff

Context window:Prompt

Prompt を書く。たとえば「test を追加して」と頼むと、関連 skill と test 用の path instruction が読み込まれることがある。

treemap-beta
"Context window"
  "System & tools": 10:::used
  "Custom Agent": 10:::used
  "Path instruction": 10:::used
  "Skill": 10:::used
  "Prompt": 10:::used
  "Free space": 35:::free
  "Buffer": 15:::free
classDef used fill:#7a1748,stroke:#ff2e88,color:#ffe8f4
classDef free fill:#0891b2,stroke:#67e8f9,color:#ecfeff

Context window:Sub-agent

Explore、database、review などの sub-agent は、調査結果の summary を main agent に返せる。

treemap-beta
"Context window"
  "System & tools": 10:::used
  "Custom Agent": 10:::used
  "Path instruction": 10:::used
  "Skill": 10:::used
  "Prompt": 10:::used
  "Sub-agent data": 10:::used
  "Free space": 25:::free
  "Buffer": 15:::free
classDef used fill:#7a1748,stroke:#ff2e88,color:#ffe8f4
classDef free fill:#0891b2,stroke:#67e8f9,color:#ecfeff

Context window:Memory

Repo で作業を続けると、memory が生成され、必要な時に動的に読み込まれることがある。

treemap-beta
"Context window"
  "System & tools": 10:::used
  "Custom Agent": 10:::used
  "Path instruction": 10:::used
  "Skill": 10:::used
  "Prompt": 10:::used
  "Sub-agent data": 10:::used
  "Memory": 10:::used
  "Free space": 15:::free
  "Buffer": 15:::free
classDef used fill:#7a1748,stroke:#ff2e88,color:#ffe8f4
classDef free fill:#0891b2,stroke:#67e8f9,color:#ecfeff