docs: rename s19 to integrated harness

This commit is contained in:
Haoran
2026-07-31 03:35:17 +08:00
parent 2d69019342
commit 4a14529774
28 changed files with 70 additions and 70 deletions

View File

@@ -101,7 +101,7 @@ const STEPS: {
}[] = [
{
title: "A Turn Starts as a Packet",
desc: "The comprehensive agent first gathers everything the model should see, instead of scattering context across hidden places.",
desc: "The integrated harness first gathers everything the model should see, instead of scattering context across hidden places.",
stage: "intake",
used: ["intake"],
packet: {
@@ -281,7 +281,7 @@ export default function ComprehensiveVisualization({ title }: { title?: string }
return (
<section className="min-h-[500px] space-y-4">
<h2 className="text-xl font-semibold text-zinc-900 dark:text-zinc-100">
{title || "Comprehensive Agent Turn"}
{title || "Integrated Harness Turn"}
</h2>
<div className="rounded-lg border border-zinc-200 bg-white p-4 dark:border-zinc-700 dark:bg-zinc-900">

View File

@@ -3,16 +3,16 @@
"decisions": [
{
"id": "composition-over-new-loop",
"title": "The Final Agent Composes Previous Layers",
"description": "The comprehensive agent does not replace the loop with a new architecture. It composes memory, tasks, skills, background work, teams, worktrees, and MCP around the same core model-tool-result cycle.",
"title": "The Harness Composes Previous Layers",
"description": "The integrated harness does not replace the loop with a new architecture. It composes memory, tasks, skills, background work, teams, worktrees, and MCP around the same core model-tool-result cycle.",
"alternatives": "A new orchestration framework would look more impressive, but it would hide the continuity across the course.",
"zh": {
"title": "最终 Agent 是组合既有层,而不是换掉循环",
"description": "综合 Agent 没有用新架构替换循环,而是把 memory、task、skill、后台任务、团队、worktree、MCP 组合到同一个模型-工具-结果循环周围。"
"title": "Harness 组合既有层,而不是换掉循环",
"description": "集成后的 Harness 没有用新架构替换循环,而是把 memory、task、skill、后台任务、团队、worktree、MCP 组合到同一个模型-工具-结果循环周围。"
},
"ja": {
"title": "最終エージェントは既存レイヤーの合成",
"description": "総合エージェントはループを新しい構造で置き換えません。memory、task、skill、バックグラウンド処理、チーム、worktree、MCP を同じ model-tool-result サイクルの周囲に合成します。"
"title": "Harness は既存レイヤーを統合する",
"description": "統合された Harness はループを新しい構造で置き換えません。memory、task、skill、バックグラウンド処理、チーム、worktree、MCP を同じ model-tool-result サイクルの周囲に合成します。"
}
},
{

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{
"version": "s19",
"title": "Comprehensive Agent",
"description": "The final agent composes context assembly, tools, memory, teams, background work, cron, worktrees, and MCP.",
"title": "Integrated Harness",
"description": "The harness composes context assembly, tools, memory, teams, background work, cron, worktrees, and MCP.",
"steps": [
{
"type": "user_message",
@@ -51,7 +51,7 @@
{
"type": "assistant_text",
"content": "Release preparation is ready: checks passed, docs are updated in the teammate worktree, and deployment status is available.",
"annotation": "The comprehensive agent returns a single user-facing outcome."
"annotation": "The integrated harness returns a single user-facing outcome."
}
]
}

View File

@@ -57,7 +57,7 @@
"s16": "Autonomous Agents",
"s17": "Worktree Isolation",
"s18": "MCP Tools",
"s19": "Comprehensive Agent",
"s19": "Integrated Harness",
"s20": "Workflow Runtime",
"s21": "Goal Loop"
},
@@ -87,7 +87,7 @@
"s16": "Autonomous Agent Cycle",
"s17": "Worktree Task Isolation",
"s18": "MCP Tool Bridge",
"s19": "Comprehensive Agent Turn",
"s19": "Integrated Harness Turn",
"s20": "Workflow Runtime",
"s21": "Goal Completion Gate"
}

View File

@@ -57,7 +57,7 @@
"s16": "自律エージェント",
"s17": "Worktree 分離",
"s18": "MCP ツール",
"s19": "Comprehensive Agent",
"s19": "Integrated Harness",
"s20": "Workflow Runtime",
"s21": "Goal Loop"
},
@@ -87,7 +87,7 @@
"s16": "自律エージェントサイクル",
"s17": "Worktree タスク分離",
"s18": "MCP ツールブリッジ",
"s19": "Comprehensive Agent Turn",
"s19": "Integrated Harness のターン",
"s20": "Workflow Runtime",
"s21": "目標完了ゲート"
}

View File

@@ -57,7 +57,7 @@
"s16": "Autonomous Agents",
"s17": "Worktree Isolation",
"s18": "MCP Tools",
"s19": "Comprehensive Agent",
"s19": "Agent Harness 集成",
"s20": "Workflow Runtime",
"s21": "Goal Loop"
},
@@ -87,7 +87,7 @@
"s16": "Autonomous Agent Cycle",
"s17": "Worktree Task Isolation",
"s18": "MCP Tool Bridge",
"s19": "Comprehensive Agent Turn",
"s19": "Agent Harness 集成流程",
"s20": "Workflow Runtime",
"s21": "目标完成闸门"
}

View File

@@ -181,10 +181,10 @@ export const VERSION_META: Record<string, {
prevVersion: "s17",
},
s19: {
title: "Comprehensive Agent",
subtitle: "All Mechanisms, One Loop",
title: "Integrated Harness",
subtitle: "Many Mechanisms, One Loop",
coreAddition: "Integrated harness",
keyInsight: "The complete harness is still one loop, surrounded by the systems introduced across the course.",
keyInsight: "The integrated harness is still one loop, surrounded by the systems introduced across the course.",
layer: "collaboration",
prevVersion: "s18",
},