@topmindspace/tms-skills 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +21 -0
  3. package/README.md +102 -0
  4. package/bin/tms-skills.js +160 -0
  5. package/package.json +48 -0
  6. package/top-ppt-html/README.md +254 -0
  7. package/top-ppt-html/SKILL.md +111 -0
  8. package/top-ppt-html/assets/examples/2026-09-09-architecture-graphite-dark.html +3926 -0
  9. package/top-ppt-html/assets/examples/2026-09-09-architecture-graphite-dark.model.json +168 -0
  10. package/top-ppt-html/assets/examples/2026-09-09-architecture-spectrum.html +3926 -0
  11. package/top-ppt-html/assets/examples/2026-09-09-architecture-spectrum.model.json +168 -0
  12. package/top-ppt-html/assets/examples/2026-09-09-presentation-apple-mono.html +4325 -0
  13. package/top-ppt-html/assets/examples/2026-09-09-presentation-apple-mono.model.json +321 -0
  14. package/top-ppt-html/assets/examples/2026-09-09-presentation-brand-red.html +4325 -0
  15. package/top-ppt-html/assets/examples/2026-09-09-presentation-brand-red.model.json +321 -0
  16. package/top-ppt-html/assets/examples/2026-09-09-presentation-business-blue.html +4325 -0
  17. package/top-ppt-html/assets/examples/2026-09-09-presentation-business-blue.model.json +321 -0
  18. package/top-ppt-html/assets/examples/2026-09-09-research-deep-teal.html +5527 -0
  19. package/top-ppt-html/assets/examples/2026-09-09-research-deep-teal.model.json +914 -0
  20. package/top-ppt-html/assets/examples/2026-09-09-research-indigo-violet.html +5527 -0
  21. package/top-ppt-html/assets/examples/2026-09-09-research-indigo-violet.model.json +914 -0
  22. package/top-ppt-html/assets/examples/2026-09-09-research-mckinsey.html +5527 -0
  23. package/top-ppt-html/assets/examples/2026-09-09-research-mckinsey.model.json +914 -0
  24. package/top-ppt-html/assets/examples/2026-09-09-research-warm-sand.html +5527 -0
  25. package/top-ppt-html/assets/examples/2026-09-09-research-warm-sand.model.json +914 -0
  26. package/top-ppt-html/assets/pptx-export.js +1944 -0
  27. package/top-ppt-html/assets/style-gallery.html +589 -0
  28. package/top-ppt-html/assets/templates/architecture.html +3728 -0
  29. package/top-ppt-html/assets/templates/engine.css +840 -0
  30. package/top-ppt-html/assets/templates/presentation.html +3738 -0
  31. package/top-ppt-html/assets/templates/research.html +4017 -0
  32. package/top-ppt-html/assets/templates/ui.js +520 -0
  33. package/top-ppt-html/assets/theme-overview-architecture.png +0 -0
  34. package/top-ppt-html/assets/theme-overview-presentation.png +0 -0
  35. package/top-ppt-html/assets/theme-overview-research.png +0 -0
  36. package/top-ppt-html/assets/theme-overview.png +0 -0
  37. package/top-ppt-html/evals/prompts.csv +15 -0
  38. package/top-ppt-html/evals/rubric.schema.json +25 -0
  39. package/top-ppt-html/evals/run_evals.py +220 -0
  40. package/top-ppt-html/evals/trace.example.json +16 -0
  41. package/top-ppt-html/package.json +35 -0
  42. package/top-ppt-html/references/charts-basic.md +624 -0
  43. package/top-ppt-html/references/charts-discipline.md +108 -0
  44. package/top-ppt-html/references/charts-extended.md +482 -0
  45. package/top-ppt-html/references/charts.md +28 -0
  46. package/top-ppt-html/references/components-atoms.md +624 -0
  47. package/top-ppt-html/references/components.md +30 -0
  48. package/top-ppt-html/references/content-rules.md +490 -0
  49. package/top-ppt-html/references/design-system-engine.md +235 -0
  50. package/top-ppt-html/references/design-system.md +478 -0
  51. package/top-ppt-html/references/failure-modes.md +214 -0
  52. package/top-ppt-html/references/high-fidelity.md +127 -0
  53. package/top-ppt-html/references/icons.md +397 -0
  54. package/top-ppt-html/references/industry-benchmark.md +105 -0
  55. package/top-ppt-html/references/infographics-stats.md +308 -0
  56. package/top-ppt-html/references/infographics-structure.md +226 -0
  57. package/top-ppt-html/references/infographics.md +43 -0
  58. package/top-ppt-html/references/layout-grammar.md +315 -0
  59. package/top-ppt-html/references/layouts-architecture.md +108 -0
  60. package/top-ppt-html/references/layouts-combo.md +600 -0
  61. package/top-ppt-html/references/layouts-research.md +160 -0
  62. package/top-ppt-html/references/modes.md +254 -0
  63. package/top-ppt-html/references/outline-design.md +275 -0
  64. package/top-ppt-html/references/playbook.md +266 -0
  65. package/top-ppt-html/references/pptx-export.md +209 -0
  66. package/top-ppt-html/references/reform-plan.md +252 -0
  67. package/top-ppt-html/references/styles.md +370 -0
  68. package/top-ppt-html/references/tech-design.md +138 -0
  69. package/top-ppt-html/scripts/audit_css.py +109 -0
  70. package/top-ppt-html/scripts/audit_docs.py +176 -0
  71. package/top-ppt-html/scripts/audit_skill.py +220 -0
  72. package/top-ppt-html/scripts/audit_styles.py +351 -0
  73. package/top-ppt-html/scripts/build_examples.py +2276 -0
  74. package/top-ppt-html/scripts/build_pptx.js +2380 -0
  75. package/top-ppt-html/scripts/capture_theme_overview.js +78 -0
  76. package/top-ppt-html/scripts/checks_html.py +127 -0
  77. package/top-ppt-html/scripts/cross_verify.py +294 -0
  78. package/top-ppt-html/scripts/env_probe.py +158 -0
  79. package/top-ppt-html/scripts/extract_model.py +210 -0
  80. package/top-ppt-html/scripts/extract_snippet.py +374 -0
  81. package/top-ppt-html/scripts/gen_channel_a.js +214 -0
  82. package/top-ppt-html/scripts/layout-constants.json +3377 -0
  83. package/top-ppt-html/scripts/layout_slots.json +830 -0
  84. package/top-ppt-html/scripts/lib_layout_regions.js +412 -0
  85. package/top-ppt-html/scripts/measure_height.py +178 -0
  86. package/top-ppt-html/scripts/model-schema.json +547 -0
  87. package/top-ppt-html/scripts/negative_tests.py +307 -0
  88. package/top-ppt-html/scripts/package_skill.py +291 -0
  89. package/top-ppt-html/scripts/prepare_images.py +341 -0
  90. package/top-ppt-html/scripts/probe_image_export.py +188 -0
  91. package/top-ppt-html/scripts/quality_gate.py +301 -0
  92. package/top-ppt-html/scripts/regression.py +308 -0
  93. package/top-ppt-html/scripts/render_compare.py +275 -0
  94. package/top-ppt-html/scripts/render_from_model.py +698 -0
  95. package/top-ppt-html/scripts/scaffold_report.py +1054 -0
  96. package/top-ppt-html/scripts/section-file-map.json +105 -0
  97. package/top-ppt-html/scripts/sync_runtime.py +662 -0
  98. package/top-ppt-html/scripts/validate_pptx.py +1510 -0
  99. package/top-ppt-html/scripts/validate_report.py +1456 -0
@@ -0,0 +1,2276 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ TopPPT HTML · 三模式示例矩阵生成器(主题:AI 智能体发展研究)
5
+ 用法:
6
+ python scripts/build_examples.py
7
+
8
+ 从 assets/templates/ 三份模式独立模板生成示例矩阵到 assets/examples/:
9
+ presentation × business-blue / apple-mono / brand-red ——《AI 智能体:从工具到同事》(light)
10
+ research × mckinsey / deep-teal / warm-sand / indigo-violet ——《2026 AI 智能体发展研究报告》(light)
11
+ architecture × graphite-dark / spectrum ——《企业智能体平台总体架构》
12
+ (v8.3 起 9 示例覆盖全部 9 套风格;同一模式的多风格示例共用同一内容包——风格与内容正交的示范)内容包按
13
+ __TOPPPT_CONTENT__ 标记整体替换(非正则碎替,防静默截断),REPORT_MODEL 同步注入。
14
+ presentation 样例覆盖 comparison / kpi / donut / quote / cards 页型,
15
+ research 样例覆盖 comparison / donut(起另覆盖 6 类复杂信息图页型 +
16
+ gantt/rose/candlestick 三类形状通道图表;29 种页型与 36 种图表的回归覆盖靠三模式合计)。
17
+ architecture 模板出厂 data-theme="dark"(石墨深灰深色优先)——graphite 示例
18
+ 保持 dark、spectrum 示例切回 light(ex['theme'] 控制,html 标签整体断言);
19
+ REPORT_MODEL 同步写 theme 字段(PPTX 按 model.theme 导出亮/暗版,
20
+ graphite 架构示例的 PPTX 即为深色版——回归覆盖双主题)。
21
+ 改动模板/内容包后重跑本脚本,再用 validate_report / extract_model / build_pptx /
22
+ validate_pptx --model 全链路回归。
23
+ """
24
+ import json
25
+ import re
26
+ import sys
27
+ from pathlib import Path
28
+
29
+ # Windows GBK 控制台兜底:强制 UTF-8 输出
30
+ try:
31
+ sys.stdout.reconfigure(encoding='utf-8', errors='replace')
32
+ sys.stderr.reconfigure(encoding='utf-8', errors='replace')
33
+ except Exception:
34
+ pass
35
+
36
+ ROOT = Path(__file__).resolve().parent.parent
37
+ TPL = ROOT / 'assets' / 'templates'
38
+ OUT = ROOT / 'assets' / 'examples'
39
+
40
+ CONTENT_RE = re.compile(r'<!-- __TOPPPT_CONTENT_START__ -->[\s\S]*?<!-- __TOPPPT_CONTENT_END__ -->')
41
+ MODEL_RE = re.compile(r'window\.REPORT_MODEL = \{[\s\S]*?\};') # 非贪婪:只匹配模型块本身
42
+
43
+ DATE = '2026-09-09'
44
+
45
+ # ══════════════════════════════════════════════════════════════════════════
46
+ # 内容包 · 演示汇报(presentation)《AI 智能体:从工具到同事》
47
+ # ══════════════════════════════════════════════════════════════════════════
48
+ P_CONTENT = '''<!-- ══ Hero(16:9 满屏页) ══ -->
49
+ <section class="band band--fit">
50
+ <div class="wrap">
51
+ <div class="grid g-hero" style="gap:clamp(32px,4vw,72px)">
52
+ <div class="stack gap-5 rv">
53
+ <div class="row row-wrap">
54
+ <span class="chip chip--accent">2026 · 演示汇报</span>
55
+ <span class="chip chip--line">年度研究</span>
56
+ </div>
57
+ <h1 class="t-display">AI 智能体<br>从工具到同事</h1>
58
+ <p class="t-lead" style="max-width:620px">2026 年,软件不再只是被使用,而是开始自主完成工作。</p>
59
+ <div class="row row-wrap" style="gap:var(--sp-3)">
60
+ <a class="btn btn--primary" href="#agenda">开始阅读</a>
61
+ <a class="btn btn--ghost" href="#refs">参考资料</a>
62
+ </div>
63
+ <div class="row row-wrap" style="gap:var(--sp-6);margin-top:var(--sp-3)">
64
+ <div>
65
+ <div class="t-metric" style="color:var(--accent)">61%</div>
66
+ <div class="t-xs" style="margin-top:4px">企业试点率<a class="cite" href="#ref-1">[1]</a></div>
67
+ </div>
68
+ <div>
69
+ <div class="t-metric">18<span style="font-size:.45em"> %</span></div>
70
+ <div class="t-xs" style="margin-top:4px">规模化运行占比<a class="cite" href="#ref-2">[2]</a></div>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ <div class="g-hero__visual rv">
75
+ <div class="fig">
76
+ <div class="fig__cap">2025 企业智能体试点率</div>
77
+ <svg class="chart" data-chart="donut" viewBox="0 0 140 140" style="width:180px;margin-inline:auto">
78
+ <circle cx="70" cy="70" r="54" class="f-none s-bds" stroke-width="15"/>
79
+ <circle data-sweep data-circ="339.3" data-p="0.61" cx="70" cy="70" r="54" class="f-none s-acc"
80
+ stroke-width="15" stroke-dasharray="207 132.3" stroke-linecap="round"
81
+ transform="rotate(-90 70 70)"><title>试点率 61%</title></circle>
82
+ <text x="70" y="68" text-anchor="middle" class="f-txt" font-size="26" font-weight="600"
83
+ data-count="61" data-suffix="%">61%</text>
84
+ <text x="70" y="88" text-anchor="middle" class="f-txt3" font-size="11">已进入试点</text>
85
+ </svg>
86
+ <div class="row" style="justify-content:center;gap:var(--sp-4);margin-top:var(--sp-4)">
87
+ <span class="chip chip--accent">试点及以上 61%</span>
88
+ <span class="chip">观望 39%</span>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </section>
95
+
96
+ <!-- ══ Agenda 大纲页(第二页) ══ -->
97
+ <section class="band band--tint" id="agenda">
98
+ <div class="wrap">
99
+ <div class="shead rv">
100
+ <div class="t-eyebrow">Agenda</div>
101
+ <h2 class="t-h1 shead__title">报告大纲</h2>
102
+ <p class="t-lead shead__desc">三章加参考资料,从范式到落地。点击任意条目跳转。</p>
103
+ </div>
104
+ <ol class="agenda rv">
105
+ <li class="agenda__i"><a class="agenda__a" href="#s1">
106
+ <span class="agenda__n">01</span>
107
+ <span><span class="agenda__t">范式跃迁</span>
108
+ <div class="agenda__d">从 Chatbot 到 Autonomous Agent</div></span>
109
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
110
+ </a></li>
111
+ <li class="agenda__i"><a class="agenda__a" href="#s2">
112
+ <span class="agenda__n">02</span>
113
+ <span><span class="agenda__t">形态与边界</span>
114
+ <div class="agenda__d">三类形态与能力边界</div></span>
115
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
116
+ </a></li>
117
+ <li class="agenda__i"><a class="agenda__a" href="#s3">
118
+ <span class="agenda__n">03</span>
119
+ <span><span class="agenda__t">落地路径</span>
120
+ <div class="agenda__d">采纳率四季度爬升</div></span>
121
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
122
+ </a></li>
123
+ <li class="agenda__i"><a class="agenda__a" href="#refs">
124
+ <span class="agenda__n">04</span>
125
+ <span><span class="agenda__t">参考资料</span>
126
+ <div class="agenda__d">数据来源与口径说明</div></span>
127
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
128
+ </a></li>
129
+ </ol>
130
+ </div>
131
+ </section>
132
+
133
+ <!-- ══ 章节一(要点卡) ══ -->
134
+ <section class="band" id="s1">
135
+ <div class="wrap">
136
+ <div class="shead rv">
137
+ <div class="t-eyebrow">01 · 范式跃迁</div>
138
+ <h2 class="t-h1 shead__title">范式跃迁:智能体的本质是目标驱动的自主执行</h2>
139
+ <p class="t-lead shead__desc">范式为什么现在发生:成本、能力、生态三线交汇。</p>
140
+ </div>
141
+ <div class="grid g-3 rv">
142
+ <div class="card">
143
+ <div class="card__hd">
144
+ <div class="card__ico"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="4" width="16" height="16" rx="2"/><path d="M9 9h6v6H9z"/><path d="M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3"/></svg></div>
145
+ <h3 class="t-h3">从工具到同事</h3>
146
+ </div>
147
+ <ul class="ul">
148
+ <li><strong>执行者换位。</strong>人从执行者变成目标设定者与审核者。</li>
149
+ <li><strong>闭环标志。</strong>给目标即可闭环,过程自主。</li>
150
+ </ul>
151
+ </div>
152
+ <div class="card">
153
+ <div class="card__hd">
154
+ <div class="card__ico"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M22 7l-8.5 8.5-5-5L2 17"/><path d="M16 7h6v6"/></svg></div>
155
+ <h3 class="t-h3">试点率过六成</h3>
156
+ </div>
157
+ <ul class="ul">
158
+ <li><strong>2025 基线。</strong>61% 企业已进入试点<a class="cite" href="#ref-1">[1]</a>。</li>
159
+ <li><strong>规模化不足两成。</strong>分水岭在治理与集成<a class="cite" href="#ref-2">[2]</a>。</li>
160
+ </ul>
161
+ </div>
162
+ <div class="card">
163
+ <div class="card__hd">
164
+ <div class="card__ico"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="M9 12l2 2 4-4"/></svg></div>
165
+ <h3 class="t-h3">护栏先行</h3>
166
+ </div>
167
+ <ul class="ul">
168
+ <li><strong>权限与审计。</strong>智能体操作全程留痕。</li>
169
+ <li><strong>回退机制。</strong>高风险动作必须有人工确认。</li>
170
+ </ul>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </section>
175
+
176
+ <!-- ══ 章节二(表格) ══ -->
177
+ <section class="band" id="s2">
178
+ <div class="wrap">
179
+ <div class="shead rv">
180
+ <div class="t-eyebrow">02 · 形态与边界</div>
181
+ <h2 class="t-h1 shead__title">三类形态能力边界分明,同事级智能体尚在早期</h2>
182
+ </div>
183
+ <div class="tbl-wrap rv">
184
+ <table>
185
+ <thead><tr><th style="width:20%">能力</th><th style="width:40%">2026 现状</th><th>跃迁目标</th></tr></thead>
186
+ <tbody>
187
+ <tr><td class="k">任务自主性</td><td>单点工具为主,人逐步驱动</td>
188
+ <td><strong>目标驱动,端到端</strong><a class="cite" href="#ref-1">[1]</a></td></tr>
189
+ <tr><td class="k">工具生态</td><td>连接数少、缺乏统一编排</td>
190
+ <td><strong>统一编排,千级工具</strong></td></tr>
191
+ <tr><td class="k">记忆与规划</td><td>会话级记忆,无长期规划</td>
192
+ <td><strong>任务级记忆,多步规划</strong></td></tr>
193
+ <tr><td class="k">安全治理</td><td>事后审计、无回退</td>
194
+ <td><strong>护栏内运行,全程可回退</strong><a class="cite" href="#ref-2">[2]</a></td></tr>
195
+ </tbody>
196
+ </table>
197
+ </div>
198
+ </div>
199
+ </section>
200
+
201
+ <!-- ══ 章节三(图表 + 解读) ══ -->
202
+ <section class="band" id="s3">
203
+ <div class="wrap">
204
+ <div class="shead rv">
205
+ <div class="t-eyebrow">03 · 落地路径</div>
206
+ <h2 class="t-h1 shead__title">企业智能体采纳率:四个季度四步走至 60%</h2>
207
+ <p class="t-lead shead__desc">采纳率曲线的三个拐点分别由什么驱动。</p>
208
+ </div>
209
+ <div class="grid g-side rv" style="align-items:center">
210
+ <div class="fig">
211
+ <div class="fig__cap">企业智能体采纳率(试点及以上,%)</div>
212
+ <svg class="chart" data-chart="bar" viewBox="0 0 560 220">
213
+ <line x1="46" y1="170" x2="540" y2="170" class="s-bds" stroke-width="1"/>
214
+ <rect data-anim="grow" x="60" y="131" width="58" height="39" rx="6" class="f-s3"/>
215
+ <rect data-anim="grow" x="188" y="92" width="58" height="78" rx="6" class="f-s3"/>
216
+ <rect data-anim="grow" x="316" y="60" width="58" height="110" rx="6" class="f-acc"/>
217
+ <rect data-anim="grow" x="444" y="53" width="58" height="117" rx="6" class="f-acc"/>
218
+ <text data-anim="fade" x="89" y="192" text-anchor="middle" class="f-txt3" font-size="11">2026Q3</text>
219
+ <text data-anim="fade" x="217" y="192" text-anchor="middle" class="f-txt3" font-size="11">Q4</text>
220
+ <text data-anim="fade" x="345" y="192" text-anchor="middle" class="f-txt3" font-size="11">2027Q1</text>
221
+ <text data-anim="fade" x="473" y="192" text-anchor="middle" class="f-txt3" font-size="11">Q2</text>
222
+ </svg>
223
+ </div>
224
+ <div class="stack gap-4">
225
+ <h3 class="t-h3">怎么读这张图</h3>
226
+ <ul class="ul">
227
+ <li><strong>试点先行。</strong>六成企业已越过 PoC<a class="cite" href="#ref-1">[1]</a>。</li>
228
+ <li><strong>规模化受阻。</strong>瓶颈在治理与集成,不在模型<a class="cite" href="#ref-2">[2]</a>。</li>
229
+ </ul>
230
+ </div>
231
+ </div>
232
+ </div>
233
+ </section>
234
+
235
+ <!-- ══ 章节四(对比页 comparison) ══ -->
236
+ <section class="band" id="s4">
237
+ <div class="wrap">
238
+ <div class="shead rv">
239
+ <div class="t-eyebrow">03 · 落地路径</div>
240
+ <h2 class="t-h1 shead__title">从试点到规模化:两条路径的分野</h2>
241
+ </div>
242
+ <div class="grid g-half rv">
243
+ <div class="card">
244
+ <h3 class="t-h3">堆场景路径 · 现状</h3>
245
+ <ul class="ul">
246
+ <li><strong>接入慢。</strong>每场景重复对接工具与权限。</li>
247
+ <li><strong>治理弱。</strong>事后审计,回退靠人工。</li>
248
+ <li><strong>易回退。</strong>23 家中 19 家半年内退回试点<a class="cite" href="#ref-2">[2]</a>。</li>
249
+ </ul>
250
+ </div>
251
+ <div class="card" style="background:var(--accent-soft);border-color:transparent">
252
+ <h3 class="t-h3" style="color:var(--accent)">平台化路径 · 目标</h3>
253
+ <ul class="ul">
254
+ <li><strong>接入快。</strong>统一编排,接入成本降一个量级。</li>
255
+ <li><strong>治理内嵌。</strong>权限、审计、回退进平台层。</li>
256
+ <li><strong>可放量。</strong>先行 9 家全部穿越分水岭<a class="cite" href="#ref-2">[2]</a>。</li>
257
+ </ul>
258
+ </div>
259
+ </div>
260
+ <div class="sowhat rv">
261
+ <span class="sowhat__k">结论</span>
262
+ <span class="sowhat__v">平台化不是可选项,而是规模化穿越分水岭的唯一共同路径。</span>
263
+ </div>
264
+ </div>
265
+ </section>
266
+
267
+ <!-- ══ 章节五(大数指标页 kpi) ══ -->
268
+ <section class="band" id="s5">
269
+ <div class="wrap">
270
+ <div class="shead rv">
271
+ <div class="t-eyebrow">04 · 落地路径</div>
272
+ <h2 class="t-h1 shead__title">六成企业已越过 PoC,规模化不足两成</h2>
273
+ </div>
274
+ <div class="grid g-side rv" style="align-items:center">
275
+ <div class="stack gap-3">
276
+ <div class="t-metric" style="color:var(--accent);font-size:clamp(56px,7vh,76px)">61%</div>
277
+ <div class="t-h3">2025 企业智能体试点率</div>
278
+ <div class="t-sm" style="color:var(--accent);font-weight:600">▲ +6pt vs 2024</div>
279
+ </div>
280
+ <div class="grid g-3">
281
+ <div class="metric">
282
+ <div class="metric__v t-metric">18<small>%</small></div>
283
+ <div class="metric__k">规模化运行占比</div>
284
+ <div class="metric__n">3 个以上场景稳定运行<a class="cite" href="#ref-2">[2]</a></div>
285
+ </div>
286
+ <div class="metric">
287
+ <div class="metric__v t-metric">9<small> 家</small></div>
288
+ <div class="metric__k">规模化成功企业</div>
289
+ <div class="metric__n">全部先建平台层</div>
290
+ </div>
291
+ <div class="metric">
292
+ <div class="metric__v t-metric">60<small>%</small></div>
293
+ <div class="metric__k">2027Q2 采纳率目标</div>
294
+ <div class="metric__n">四个季度四步走</div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </section>
300
+
301
+ <!-- ══ 章节六(环形图页 donut) ══ -->
302
+ <section class="band" id="s6">
303
+ <div class="wrap">
304
+ <div class="shead rv">
305
+ <div class="t-eyebrow">04 · 落地路径</div>
306
+ <h2 class="t-h1 shead__title">试点企业分布:过六成跨越 PoC</h2>
307
+ </div>
308
+ <div class="grid g-side rv" style="align-items:center">
309
+ <div class="fig">
310
+ <div class="fig__cap">2025 企业智能体成熟度分布(%)</div>
311
+ <svg class="chart" data-chart="donut" viewBox="0 0 150 150" style="width:200px;margin-inline:auto">
312
+ <circle cx="75" cy="75" r="54" class="f-none s-bds" stroke-width="26"/>
313
+ <circle cx="75" cy="75" r="54" class="f-acc" stroke-width="26"
314
+ stroke-dasharray="61.1 278.2" transform="rotate(-90 75 75)"><title>已规模化 18%</title></circle>
315
+ <circle cx="75" cy="75" r="54" class="f-accs" stroke-width="26"
316
+ stroke-dasharray="145.9 193.4" transform="rotate(-25.2 75 75)"><title>试点中 43%</title></circle>
317
+ <circle cx="75" cy="75" r="54" class="f-s2" stroke-width="26"
318
+ stroke-dasharray="132.3 207" transform="rotate(129.6 75 75)"><title>观望 39%</title></circle>
319
+ <text x="75" y="72" text-anchor="middle" class="f-txt" font-size="22" font-weight="600">100%</text>
320
+ <text x="75" y="92" text-anchor="middle" class="f-txt3" font-size="10">企业占比</text>
321
+ </svg>
322
+ </div>
323
+ <div class="stack gap-3">
324
+ <div class="row" style="gap:var(--sp-4)">
325
+ <span class="chip chip--accent">已规模化 18%</span>
326
+ <span class="chip">试点中 43%</span>
327
+ <span class="chip chip--line">观望 39%</span>
328
+ </div>
329
+ <ul class="ul">
330
+ <li><strong>规模化仍是少数。</strong>18% 企业进入 3 场景以上稳定运行<a class="cite" href="#ref-2">[2]</a>。</li>
331
+ <li><strong>观望盘最大。</strong>工具链与治理成熟后向试点迁移。</li>
332
+ </ul>
333
+ </div>
334
+ </div>
335
+ <div class="t-xs" style="margin-top:var(--sp-4);color:var(--text-3)">口径:试点及以上 = 61%;N=42 深度访谈 + 行业抽样<a class="cite" href="#ref-1">[1]</a></div>
336
+ </div>
337
+ </section>
338
+
339
+ <!-- ══ 章节七(步骤条页 steps) ══ -->
340
+ <section class="band" id="s7">
341
+ <div class="wrap">
342
+ <div class="shead rv">
343
+ <div class="t-eyebrow">05 · 落地节奏</div>
344
+ <h2 class="t-h1 shead__title">四步走:从单场景试点到平台化放量</h2>
345
+ </div>
346
+ <div class="steps rv">
347
+ <div class="step">
348
+ <div class="step__n">01</div>
349
+ <div class="step__t">选场景</div>
350
+ <div class="step__d">客服 / 研发 / 数据三类高价值场景先跑通</div>
351
+ </div>
352
+ <div class="step">
353
+ <div class="step__n">02</div>
354
+ <div class="step__t">建平台</div>
355
+ <div class="step__d">三层解耦 + 统一编排,接入成本降一个量级</div>
356
+ </div>
357
+ <div class="step step--a">
358
+ <div class="step__n">03</div>
359
+ <div class="step__t">立治理</div>
360
+ <div class="step__d">权限、审计、回退进平台层,高风险动作人工确认</div>
361
+ </div>
362
+ <div class="step">
363
+ <div class="step__n">04</div>
364
+ <div class="step__t">放量复制</div>
365
+ <div class="step__d">同一套护栏复制到新场景,无需重建</div>
366
+ </div>
367
+ </div>
368
+ <div class="t-xs" style="margin-top:var(--sp-5);color:var(--text-3)">口径:先行 9 家规模化企业的共同路径<a class="cite" href="#ref-2">[2]</a></div>
369
+ </div>
370
+ </section>
371
+
372
+ <!-- ══ 章节八(达成对比页 bullet) ══ -->
373
+ <section class="band" id="s8">
374
+ <div class="wrap">
375
+ <div class="shead rv">
376
+ <div class="t-eyebrow">06 · 目标对照</div>
377
+ <h2 class="t-h1 shead__title">四项能力对照目标:治理与集成缺口最大</h2>
378
+ </div>
379
+ <div class="bul rv" style="--bul-label:minmax(0,2.4fr)">
380
+ <div class="bul__row">
381
+ <div class="bul__k">场景覆盖</div>
382
+ <div class="bul__track"><div class="bul__fill" style="width:61%"></div>
383
+ <div class="bul__tgt" style="left:80%"></div></div>
384
+ <div class="bul__v"><b>61%</b> / 80%</div>
385
+ </div>
386
+ <div class="bul__row bul__row--warn">
387
+ <div class="bul__k">治理就绪</div>
388
+ <div class="bul__track"><div class="bul__fill" style="width:34%"></div>
389
+ <div class="bul__tgt" style="left:75%"></div></div>
390
+ <div class="bul__v"><b>34%</b> / 75%</div>
391
+ </div>
392
+ <div class="bul__row bul__row--warn">
393
+ <div class="bul__k">工具集成</div>
394
+ <div class="bul__track"><div class="bul__fill" style="width:42%"></div>
395
+ <div class="bul__tgt" style="left:70%"></div></div>
396
+ <div class="bul__v"><b>42%</b> / 70%</div>
397
+ </div>
398
+ <div class="bul__row">
399
+ <div class="bul__k">规模化运行</div>
400
+ <div class="bul__track"><div class="bul__fill" style="width:18%"></div>
401
+ <div class="bul__tgt" style="left:60%"></div></div>
402
+ <div class="bul__v"><b>18%</b> / 60%</div>
403
+ </div>
404
+ </div>
405
+ <div class="t-xs" style="margin-top:var(--sp-5);color:var(--text-3)">口径:能力就绪度 = 自评「已具备且稳定运行」的企业占比;目标取 2027Q2<a class="cite" href="#ref-2">[2]</a></div>
406
+ </div>
407
+ </section>
408
+
409
+ <!-- ══ 章节八b(卡片网格 cards · 路标图标) ══ -->
410
+ <section class="band" id="s-cards">
411
+ <div class="wrap">
412
+ <div class="shead rv">
413
+ <div class="t-eyebrow">06 · 能力地图</div>
414
+ <h2 class="t-h1 shead__title">平台化三件套:编排、记忆、治理缺一不可</h2>
415
+ </div>
416
+ <div class="grid g-3 rv">
417
+ <div class="card">
418
+ <div class="card__hd">
419
+ <div class="card__ico">01</div>
420
+ <h3 class="t-h3">统一编排</h3>
421
+ </div>
422
+ <ul class="ul">
423
+ <li><strong>工具连接。</strong>千级工具统一注册与调用。</li>
424
+ <li><strong>任务拆解。</strong>多步规划与失败重试。</li>
425
+ </ul>
426
+ </div>
427
+ <div class="card">
428
+ <div class="card__hd">
429
+ <div class="card__ico">02</div>
430
+ <h3 class="t-h3">长期记忆</h3>
431
+ </div>
432
+ <ul class="ul">
433
+ <li><strong>任务记忆。</strong>跨会话保留目标与进度。</li>
434
+ <li><strong>偏好学习。</strong>组织口径与风格沉淀。</li>
435
+ </ul>
436
+ </div>
437
+ <div class="card">
438
+ <div class="card__hd">
439
+ <div class="card__ico">03</div>
440
+ <h3 class="t-h3">护栏治理</h3>
441
+ </div>
442
+ <ul class="ul">
443
+ <li><strong>权限分级。</strong>高风险动作人工确认。</li>
444
+ <li><strong>全程可回退。</strong>审计与回滚内嵌平台层。</li>
445
+ </ul>
446
+ </div>
447
+ </div>
448
+ <div class="t-xs" style="margin-top:var(--sp-4);color:var(--text-3)">口径:先行 9 家规模化企业的共同能力底座<a class="cite" href="#ref-2">[2]</a></div>
449
+ </div>
450
+ </section>
451
+
452
+ <!-- ══ 素材图片页(image 页型 · full 版心全宽 3:1 + 配图占位) ══ -->
453
+ <section class="band" id="s-photo">
454
+ <div class="wrap">
455
+ <div class="shead rv">
456
+ <div class="t-eyebrow">07 · 场景实拍</div>
457
+ <h2 class="t-h1 shead__title">客服智能体工作台:会话、工具调用与人工接管同屏</h2>
458
+ </div>
459
+ <figure class="media media--r3-1 media--ph rv">
460
+ <div class="media__ph">
461
+ <svg viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="4" width="18" height="16" rx="2"/><circle cx="9" cy="10" r="1.6"/><path d="m3 18 5-5 4 3.4 3-2.6 6 5.2"/></svg>
462
+ <b>配图占位</b>
463
+ <span>建议 2400×800px · 3:1 · 替换 image.src 即可</span>
464
+ </div>
465
+ </figure>
466
+ <p class="media__src">图 1:客服智能体工作台(占位示例;交付前替换为真实截图,版式与比例已锁定)<a class="cite" href="#ref-2">[2]</a></p>
467
+ </div>
468
+ </section>
469
+
470
+ <!-- ══ 金句页(quote 页型 · 节奏休止 · 全文 1–2 处) ══ -->
471
+ <section class="band band--accent band--fit" id="quote-1">
472
+ <div class="wrap">
473
+ <div class="shead shead--center rv">
474
+ <div class="t-eyebrow">03 · 关键判断</div>
475
+ <h2 class="t-h1 shead__title">规模化瓶颈不在模型,而在治理与集成</h2>
476
+ <div style="font-size:clamp(40px,4.6vh,56px);font-weight:700;color:var(--accent);line-height:1;margin-top:var(--sp-4)">「</div>
477
+ <p class="t-lead" style="max-width:860px;margin-inline:auto;color:var(--text);font-size:clamp(18px,2.2vh,22px);font-weight:600">穿越分水岭的钥匙是平台化,不是更大的模型。</p>
478
+ <p class="t-sm" style="margin-top:var(--sp-4);color:var(--accent-text)">—— 企业智能体发展调研 · 42 家深度访谈</p>
479
+ </div>
480
+ </div>
481
+ </section>
482
+
483
+ <!-- ══ 深色收尾章 ══ -->
484
+ <section class="band band--accent band--fit" id="next">
485
+ <div class="wrap">
486
+ <div class="shead shead--center rv">
487
+ <div class="t-eyebrow">下一步</div>
488
+ <h2 class="t-h1 shead__title">让智能体真正干活起来</h2>
489
+ <p class="t-lead shead__desc">三步走的行动清单。</p>
490
+ </div>
491
+ <div class="grid g-3 rv">
492
+ <div class="card">
493
+ <h3 class="t-h3" style="margin-bottom:var(--sp-2)">选场景</h3>
494
+ <p class="t-body">
495
+ 客服 / 研发 / 数据三类高价值场景。</p>
496
+ </div>
497
+ <div class="card">
498
+ <h3 class="t-h3" style="margin-bottom:var(--sp-2)">建平台</h3>
499
+ <p class="t-body">
500
+ 三层解耦 + 统一编排 + 护栏。</p>
501
+ </div>
502
+ <div class="card">
503
+ <h3 class="t-h3" style="margin-bottom:var(--sp-2)">立治理</h3>
504
+ <p class="t-body">
505
+ 权限、审计、回退全闭环。</p>
506
+ </div>
507
+ </div>
508
+ <div class="row" style="justify-content:center;gap:var(--sp-3);
509
+ margin-top:clamp(28px,3.4vh,44px);flex-wrap:wrap">
510
+ <a class="btn btn--primary" href="#s1">返回查看</a>
511
+ <a class="btn btn--ghost" href="#refs"
512
+ style="border-color:color-mix(in srgb,var(--text-inv) 30%,transparent)">
513
+ 参考资料</a>
514
+ </div>
515
+ </div>
516
+ </section>
517
+
518
+ <!-- ══ 参考资料 ══ -->
519
+ <section class="band band--tint" id="refs">
520
+ <div class="wrap">
521
+ <div class="shead rv">
522
+ <div class="t-eyebrow">参考资料</div>
523
+ <h2 class="t-h1 shead__title">数据来源与口径说明</h2>
524
+ </div>
525
+ <div class="tbl-wrap rv">
526
+ <table>
527
+ <thead><tr><th style="width:6%">编号</th><th style="width:26%">来源</th>
528
+ <th style="width:14%">时间</th><th>口径说明</th></tr></thead>
529
+ <tbody>
530
+ <tr id="ref-1"><td class="k">[1]</td>
531
+ <td><a class="ref-link" href="https://example.com/gartner-agentic-ai" target="_blank" rel="noopener">Gartner:Agentic AI 技术成熟度曲线
532
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><path d="M15 3h6v6M10 14 21 3"/></svg></a></td>
533
+ <td>2026-06</td><td>试点率 / 采纳率 / 形态成熟度判定</td></tr>
534
+ <tr id="ref-2"><td class="k">[2]</td><td>企业智能体发展调研(内部,N=42)</td>
535
+ <td>2026-08</td><td>规模化占比与访谈结论,2026-07 至 2026-08</td></tr>
536
+ </tbody>
537
+ </table>
538
+ </div>
539
+ </div>
540
+ </section>
541
+
542
+ <!-- ══ 页脚 ══ -->
543
+ <footer class="foot">
544
+ <div class="wrap foot__in">
545
+ <div class="brand">
546
+ <div class="brand__mark">AI</div>
547
+ <div class="brand__txt">
548
+ <div class="brand__title">AI 智能体发展研究</div>
549
+ <div class="brand__sub">2026 · 年度报告</div>
550
+ </div>
551
+ </div>
552
+ <div class="t-xs">内部资料 · 请勿外传</div>
553
+ </div>
554
+ </footer>'''
555
+
556
+ P_MODEL = {
557
+ "mode": "presentation", "style": "business-blue",
558
+ "title": "AI 智能体:从工具到同事",
559
+ "subtitle": "从工具到同事 · 台上宣讲版",
560
+ "meta": "宣讲材料 · " + DATE,
561
+ "agenda": [
562
+ ["01", "范式跃迁", "从 Chatbot 到 Autonomous Agent"],
563
+ ["02", "形态与边界", "三类形态与能力边界"],
564
+ ["03", "落地路径", "采纳率四季度爬升"],
565
+ ["04", "参考资料", "数据来源与口径说明"],
566
+ ],
567
+ "sections": [
568
+ {"type": "points", "eyebrow": "01 · 范式跃迁", "title": "范式跃迁:智能体的本质是目标驱动的自主执行",
569
+ "points": [["从工具到同事", "人从执行者变成目标设定者与审核者"],
570
+ ["试点率过六成", "61% 企业已进入试点,规模化不足两成"],
571
+ ["护栏先行", "权限与审计内嵌,高风险动作人工确认"]],
572
+ "metrics": [["61%", "2025 企业试点率[1]"], ["18%", "规模化运行占比[2]"]]},
573
+ {"type": "table", "eyebrow": "02 · 形态与边界", "title": "三类形态能力边界分明,同事级智能体尚在早期",
574
+ "table": {"head": ["能力", "2026 现状", "跃迁目标"],
575
+ "rows": [["任务自主性", "单点工具为主,人逐步驱动", "目标驱动,端到端"],
576
+ ["工具生态", "连接数少、缺乏统一编排", "统一编排,千级工具"],
577
+ ["记忆与规划", "会话级记忆,无长期规划", "任务级记忆,多步规划"],
578
+ ["安全治理", "事后审计、无回退", "护栏内运行,全程可回退"]]}},
579
+ {"type": "bar", "eyebrow": "03 · 落地路径", "title": "企业智能体采纳率:四个季度四步走至 60%",
580
+ "chart": {"labels": ["2026Q3", "Q4", "2027Q1", "Q2"], "values": [30, 45, 55, 60], "max": 100, "unit": "%"},
581
+ "note": "口径:试点及以上的企业占比[1]"},
582
+ {"type": "comparison", "eyebrow": "03 · 落地路径", "title": "从试点到规模化:两条路径的分野",
583
+ "left": {"title": "堆场景路径 · 现状",
584
+ "points": [["接入慢", "每场景重复对接工具与权限"],
585
+ ["治理弱", "事后审计,回退靠人工"],
586
+ ["易回退", "23 家中 19 家半年内退回试点"]]},
587
+ "right": {"title": "平台化路径 · 目标",
588
+ "points": [["接入快", "统一编排,接入成本降一个量级"],
589
+ ["治理内嵌", "权限、审计、回退进平台层"],
590
+ ["可放量", "先行 9 家全部穿越分水岭"]]},
591
+ "verdict": "平台化不是可选项,而是规模化穿越分水岭的唯一共同路径。"},
592
+ {"type": "kpi", "eyebrow": "04 · 落地路径", "title": "六成企业已越过 PoC,规模化不足两成",
593
+ "hero": ["61%", "2025 企业智能体试点率", "+6pt vs 2024"],
594
+ "metrics": [["18%", "规模化运行占比,3 场景以上"],
595
+ ["9 家", "规模化成功企业,全部先建平台层"],
596
+ ["60%", "2027Q2 采纳率目标"]]},
597
+ {"type": "donut", "eyebrow": "04 · 落地路径", "title": "试点企业分布:过六成跨越 PoC",
598
+ "chart": {"labels": ["已规模化", "试点中", "观望"], "values": [18, 43, 39],
599
+ "unit": "%", "centerLabel": "企业占比"},
600
+ "note": "口径:试点及以上 = 61%;N=42 深度访谈 + 行业抽样[1]"},
601
+ {"type": "quote", "eyebrow": "03 · 关键判断", "title": "规模化瓶颈不在模型,而在治理与集成",
602
+ "quote": "穿越分水岭的钥匙是平台化,不是更大的模型。",
603
+ "author": "企业智能体发展调研 · 42 家深度访谈"},
604
+ {"type": "steps", "eyebrow": "05 · 落地节奏", "title": "四步走:从单场景试点到平台化放量",
605
+ "steps": [["选场景", "客服 / 研发 / 数据三类高价值场景先跑通"],
606
+ ["建平台", "三层解耦 + 统一编排,接入成本降一个量级"],
607
+ {"t": "立治理", "d": "权限、审计、回退进平台层,高风险动作人工确认", "accent": True},
608
+ ["放量复制", "同一套护栏复制到新场景,无需重建"]],
609
+ "footnote": "口径:先行 9 家规模化企业的共同路径[2]"},
610
+ {"type": "bullet", "eyebrow": "06 · 目标对照", "title": "四项能力对照目标:治理与集成缺口最大",
611
+ "items": [["场景覆盖", 61, 80], ["治理就绪", 34, 75], ["工具集成", 42, 70], ["规模化运行", 18, 60]],
612
+ "unit": "%", "max": 100,
613
+ "footnote": "口径:能力就绪度 = 自评「已具备且稳定运行」的企业占比;目标取 2027Q2[2]"},
614
+ {"type": "cards", "eyebrow": "06 · 能力地图", "title": "平台化三件套:编排、记忆、治理缺一不可",
615
+ "cards": [
616
+ {"title": "统一编排", "points": ["工具连接:千级工具统一注册与调用", "任务拆解:多步规划与失败重试"]},
617
+ {"title": "长期记忆", "points": ["任务记忆:跨会话保留目标与进度", "偏好学习:组织口径与风格沉淀"]},
618
+ {"title": "护栏治理", "points": ["权限分级:高风险动作人工确认", "全程可回退:审计与回滚内嵌平台层"]},
619
+ ],
620
+ "columns": 3,
621
+ "footnote": "口径:先行 9 家规模化企业的共同能力底座[2]"},
622
+ {"type": "image", "eyebrow": "07 · 场景实拍",
623
+ "title": "客服智能体工作台:会话、工具调用与人工接管同屏",
624
+ "image": {"placeholder": True, "layout": "full",
625
+ "caption": "图 1:客服智能体工作台(占位示例;交付前替换为真实截图)",
626
+ "hint": "建议 2400×800px(3:1)真实截图;把 image.placeholder 改为 image.src 即可"}},
627
+ ],
628
+ "closing": {"title": "让智能体真正干活起来",
629
+ "points": [["选场景", "客服 / 研发 / 数据三类高价值场景"],
630
+ ["建平台", "三层解耦 + 统一编排 + 护栏"],
631
+ ["立治理", "权限、审计、回退全闭环"]]},
632
+ }
633
+
634
+ # ══════════════════════════════════════════════════════════════════════════
635
+ # 内容包 · 研究报告(research)《2026 AI 智能体发展研究报告》
636
+ # ══════════════════════════════════════════════════════════════════════════
637
+ R_CONTENT = '''<!-- ══ 封面页(研究版:紧凑单列,结论前置) ══ -->
638
+ <section class="band band--fit">
639
+ <div class="wrap">
640
+ <div class="stack gap-5 rv" style="max-width:880px">
641
+ <div class="row row-wrap" style="gap:var(--sp-3)">
642
+ <span class="chip chip--accent">研究报告</span>
643
+ <span class="chip chip--line">2026 · 年度</span>
644
+ </div>
645
+ <h1 class="t-display">2026 AI 智能体<br>规模化前夜</h1>
646
+ <p class="t-lead" style="max-width:720px">六成企业已在试点,规模化运行不足两成——分水岭已经出现,治理与集成才是真正的门槛。</p>
647
+ <div class="row row-wrap" style="gap:var(--sp-6)">
648
+ <div>
649
+ <div class="t-metric" style="color:var(--accent)">61%</div>
650
+ <div class="t-xs" style="margin-top:4px">2025 企业试点率<a class="cite" href="#ref-1">[1]</a></div>
651
+ </div>
652
+ <div>
653
+ <div class="t-metric">18%</div>
654
+ <div class="t-xs" style="margin-top:4px">规模化运行占比<a class="cite" href="#ref-2">[2]</a></div>
655
+ </div>
656
+ <div>
657
+ <div class="t-metric">42</div>
658
+ <div class="t-xs" style="margin-top:4px">深度访谈样本(家)</div>
659
+ </div>
660
+ </div>
661
+ <div class="t-xs" style="color:var(--text-3)">内部研究资料 · ''' + DATE + ''' · 覆盖金融 / 制造 / 互联网,2026-07 至 2026-08 访谈</div>
662
+ </div>
663
+ </div>
664
+ </section>
665
+
666
+ <!-- ══ Agenda(研究模式 12–25 页;双列) ══ -->
667
+ <section class="band band--tint" id="agenda">
668
+ <div class="wrap">
669
+ <div class="shead rv">
670
+ <div class="t-eyebrow">Agenda</div>
671
+ <h2 class="t-h1 shead__title">报告大纲</h2>
672
+ <p class="t-lead shead__desc">五章加参考资料,从范式到放量顺序。点击任意条目跳转。</p>
673
+ </div>
674
+ <ol class="agenda agenda--2col rv">
675
+ <li class="agenda__i"><a class="agenda__a" href="#s1">
676
+ <span class="agenda__n">01</span>
677
+ <span><span class="agenda__t">范式与分水岭</span>
678
+ <div class="agenda__d">从 Chatbot 到 Autonomous Agent</div></span>
679
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
680
+ </a></li>
681
+ <li class="agenda__i"><a class="agenda__a" href="#s2">
682
+ <span class="agenda__n">02</span>
683
+ <span><span class="agenda__t">形态与边界</span>
684
+ <div class="agenda__d">三类形态与能力边界</div></span>
685
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
686
+ </a></li>
687
+ <li class="agenda__i"><a class="agenda__a" href="#s3">
688
+ <span class="agenda__n">03</span>
689
+ <span><span class="agenda__t">域间差异</span>
690
+ <div class="agenda__d">试点率的行业分化与互证</div></span>
691
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
692
+ </a></li>
693
+ <li class="agenda__i"><a class="agenda__a" href="#s5">
694
+ <span class="agenda__n">04</span>
695
+ <span><span class="agenda__t">落地路径</span>
696
+ <div class="agenda__d">平台化先行四步走</div></span>
697
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
698
+ </a></li>
699
+ <li class="agenda__i"><a class="agenda__a" href="#s7">
700
+ <span class="agenda__n">05</span>
701
+ <span><span class="agenda__t">风险与治理</span>
702
+ <div class="agenda__d">三重门槛与优先级矩阵</div></span>
703
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
704
+ </a></li>
705
+ <li class="agenda__i"><a class="agenda__a" href="#refs">
706
+ <span class="agenda__n">06</span>
707
+ <span><span class="agenda__t">参考资料</span>
708
+ <div class="agenda__d">数据来源与口径说明</div></span>
709
+ <span class="agenda__go"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span>
710
+ </a></li>
711
+ </ol>
712
+ </div>
713
+ </section>
714
+
715
+ <!-- ══ R1 论证页:范式与分水岭 ══ -->
716
+ <section class="band" id="s1">
717
+ <div class="wrap">
718
+ <div class="shead rv">
719
+ <div class="t-eyebrow">01 · 范式与分水岭</div>
720
+ <h2 class="t-h1 shead__title">六成企业试点卡在治理与集成——规模化分水岭已经出现</h2>
721
+ </div>
722
+ <div class="cols-2 rv">
723
+ <p class="t-body"><strong>发现。</strong>2025 年全球企业智能体试点率 61%,规模化运行仅 18%,两者相差 43 个百分点<a class="cite" href="#ref-1">[1]</a>。</p>
724
+ <p class="t-body"><strong>证据。</strong>42 家深度访谈企业中,37 家把「权限不清、系统难接」列为放弃规模化的首因<a class="cite" href="#ref-2">[2]</a>。</p>
725
+ <p class="t-body"><strong>含义。</strong>瓶颈不在模型能力,而在治理、权限与系统集成——继续堆参数无助于穿越分水岭。</p>
726
+ <p class="t-body"><strong>推论。</strong>平台化先行:统一编排与护栏到位后,场景再分层放量,顺序反了会被治理拖死。</p>
727
+ </div>
728
+ <div class="sowhat rv">
729
+ <span class="sowhat__k">So what</span>
730
+ <span class="sowhat__v">先建平台与护栏,再放场景——顺序反了会被治理拖死。</span>
731
+ </div>
732
+ <div class="footnote">注:试点率 = 已进入试点及以上的企业占比;规模化 = 3 个以上场景稳定运行。来源见
733
+ <a class="cite" href="#ref-1">[1]</a><a class="cite" href="#ref-2">[2]</a>。</div>
734
+ </div>
735
+ </section>
736
+
737
+ <!-- ══ R3 密表页:形态与边界 ══ -->
738
+ <section class="band" id="s2">
739
+ <div class="wrap">
740
+ <div class="shead rv">
741
+ <div class="t-eyebrow">02 · 形态与边界</div>
742
+ <h2 class="t-h1 shead__title">三类形态能力边界分明,同事级智能体尚在早期</h2>
743
+ </div>
744
+ <div class="tbl-wrap rv">
745
+ <table>
746
+ <thead><tr><th style="width:14%">形态</th><th style="width:26%">自主性</th><th style="width:24%">工具生态</th><th style="width:16%">成熟度</th><th>结论</th></tr></thead>
747
+ <tbody>
748
+ <tr><td class="k">助理级</td><td>单轮任务,人逐步驱动</td><td>少量插件</td><td>规模可用</td>
749
+ <td><strong>当前主力</strong><a class="cite" href="#ref-1">[1]</a></td></tr>
750
+ <tr><td class="k">流程级</td><td>固定流程多步执行</td><td>数十工具编排</td><td>试点爬坡</td>
751
+ <td><strong>2026 焦点</strong></td></tr>
752
+ <tr><td class="k">同事级</td><td>目标驱动,端到端</td><td>千级工具生态</td><td><span class="tbd">早期验证</span></td>
753
+ <td><strong>三年后</strong><a class="cite" href="#ref-2">[2]</a></td></tr>
754
+ </tbody>
755
+ </table>
756
+ </div>
757
+ <div class="footnote">注:形态判定口径见参考资料 [1];同事级判定基于访谈专家评分(N=42)。</div>
758
+ <!-- 待核实标注(accent 强调色):无法核实的判断用 .tbd 内联标色 + .flagbar 清单收口,提示二次确认 -->
759
+ <div class="flagbar rv">
760
+ <div class="flagbar__hd">
761
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M10.3 3.9 1.8 18a2 2 0 0 0 1.7 3h17a2 2 0 0 0 1.7-3L13.7 3.9a2 2 0 0 0-3.4 0z"/><path d="M12 9v4M12 17h.01"/></svg>
762
+ 待核实 · 需二次确认
763
+ </div>
764
+ <ul>
765
+ <li>同事级成熟度评分口径待与业务方确认,正式版请替换 <span class="tbd">xx%</span></li>
766
+ <li>「三年后」时间窗来自访谈主观判断,需以官方路线图数据复核</li>
767
+ </ul>
768
+ </div>
769
+ </div>
770
+ </section>
771
+
772
+ <!-- ══ R2 Exhibit 页:域间差异 ══ -->
773
+ <section class="band" id="s3">
774
+ <div class="wrap">
775
+ <div class="shead rv">
776
+ <div class="t-eyebrow">03 · 域间差异</div>
777
+ <h2 class="t-h1 shead__title">客服域一马当先,研发域势能最大——域间分化明显</h2>
778
+ </div>
779
+ <div class="exhibit rv">
780
+ <div class="exhibit__hd">
781
+ <span class="exhibit__no">Exhibit 1</span>
782
+ <span class="exhibit__t">各业务域智能体试点率对比</span>
783
+ </div>
784
+ <svg class="chart" data-chart="hbar" viewBox="0 0 520 210">
785
+ <text x="0" y="18" class="f-txt2" font-size="12">客服</text>
786
+ <rect x="80" y="7" width="360" height="15" rx="7.5" class="f-s2"/>
787
+ <rect x="80" y="7" width="259" height="15" rx="7.5" class="f-acc"/>
788
+ <text x="450" y="19" text-anchor="end" class="f-txt" font-size="12" font-weight="600">72%</text>
789
+ <text x="0" y="63" class="f-txt2" font-size="12">财务</text>
790
+ <rect x="80" y="52" width="360" height="15" rx="7.5" class="f-s2"/>
791
+ <rect x="80" y="52" width="205" height="15" rx="7.5" class="f-acc"/>
792
+ <text x="450" y="64" text-anchor="end" class="f-txt" font-size="12" font-weight="600">57%</text>
793
+ <text x="0" y="108" class="f-txt2" font-size="12">营销</text>
794
+ <rect x="80" y="97" width="360" height="15" rx="7.5" class="f-s2"/>
795
+ <rect x="80" y="97" width="173" height="15" rx="7.5" class="f-acc"/>
796
+ <text x="450" y="109" text-anchor="end" class="f-txt" font-size="12" font-weight="600">48%</text>
797
+ <text x="0" y="153" class="f-txt2" font-size="12">研发</text>
798
+ <rect x="80" y="142" width="360" height="15" rx="7.5" class="f-s2"/>
799
+ <rect x="80" y="142" width="137" height="15" rx="7.5" class="f-acc"/>
800
+ <text x="450" y="154" text-anchor="end" class="f-txt" font-size="12" font-weight="600">38%</text>
801
+ </svg>
802
+ <div class="exhibit__src">来源:企业智能体发展调研,2026-08;试点率 = 已进入试点及以上的企业占比</div>
803
+ </div>
804
+ <ul class="ul ul--ico rv" style="margin-top:var(--sp-5)">
805
+ <li>
806
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M22 7l-8.5 8.5-5-5L2 17"/><path d="M16 7h6v6"/></svg>
807
+ <strong>客服领跑。</strong>流程标准、容错高,天然适配智能体。
808
+ </li>
809
+ <li>
810
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M3 5v14c0 1.66 4.03 3 9 3s9-1.34 9-3V5"/><path d="M3 12c0 1.66 4.03 3 9 3s9-1.34 9-3"/></svg>
811
+ <strong>研发垫底但增速最快。</strong>工具链补齐后弹性最大<a class="cite" href="#ref-2">[2]</a>。
812
+ </li>
813
+ </ul>
814
+ <div class="sowhat rv">
815
+ <span class="sowhat__k">So what</span>
816
+ <span class="sowhat__v">研发域渗透最浅但势能最大,工具链成熟后有望一年内反超客服域。</span>
817
+ </div>
818
+ </div>
819
+ </section>
820
+
821
+ <!-- ══ R7 半表半图页:域间互证 ══ -->
822
+ <section class="band" id="s4">
823
+ <div class="wrap">
824
+ <div class="shead rv">
825
+ <div class="t-eyebrow">03 · 域间差异</div>
826
+ <h2 class="t-h1 shead__title">试点率与增幅互证:研发域一年内有望反超</h2>
827
+ </div>
828
+ <div class="grid g-half rv">
829
+ <div class="tbl-wrap">
830
+ <table>
831
+ <thead><tr><th style="width:30%">业务域</th><th>试点率</th><th>同比增幅</th></tr></thead>
832
+ <tbody>
833
+ <tr><td class="k">客服</td><td class="num">72%</td><td><strong>+9pt</strong></td></tr>
834
+ <tr><td class="k">财务</td><td class="num">57%</td><td><strong>+11pt</strong></td></tr>
835
+ <tr><td class="k">营销</td><td class="num">48%</td><td><strong>+13pt</strong></td></tr>
836
+ <tr><td class="k">研发</td><td class="num">38%</td><td><strong>+15pt</strong></td></tr>
837
+ </tbody>
838
+ </table>
839
+ </div>
840
+ <div class="exhibit">
841
+ <div class="exhibit__hd">
842
+ <span class="exhibit__no">Exhibit 2</span>
843
+ <span class="exhibit__t">各域试点率同比增幅(百分点)</span>
844
+ </div>
845
+ <svg class="chart" data-chart="bar" viewBox="0 0 480 190">
846
+ <line x1="60" y1="150" x2="430" y2="150" class="s-bds" stroke-width="1"/>
847
+ <rect data-anim="grow" x="90" y="88" width="56" height="62" rx="5" class="f-s3"/>
848
+ <rect data-anim="grow" x="180" y="74" width="56" height="76" rx="5" class="f-s3"/>
849
+ <rect data-anim="grow" x="270" y="61" width="56" height="89" rx="5" class="f-acc"/>
850
+ <rect data-anim="grow" x="360" y="47" width="56" height="103" rx="5" class="f-acc"/>
851
+ <text data-anim="fade" x="118" y="80" text-anchor="middle" class="f-txt3" font-size="11">+9pt</text>
852
+ <text data-anim="fade" x="208" y="66" text-anchor="middle" class="f-txt3" font-size="11">+11pt</text>
853
+ <text data-anim="fade" x="298" y="53" text-anchor="middle" class="f-txt3" font-size="11">+13pt</text>
854
+ <text data-anim="fade" x="388" y="39" text-anchor="middle" class="f-txt" font-size="11" font-weight="600">+15pt</text>
855
+ <text x="118" y="172" text-anchor="middle" class="f-txt3" font-size="11">客服</text>
856
+ <text x="208" y="172" text-anchor="middle" class="f-txt3" font-size="11">财务</text>
857
+ <text x="298" y="172" text-anchor="middle" class="f-txt3" font-size="11">营销</text>
858
+ <text x="388" y="172" text-anchor="middle" class="f-txt3" font-size="11">研发</text>
859
+ </svg>
860
+ <div class="exhibit__src">来源:企业智能体发展调研,2026-07 与 2025-07 两期对比</div>
861
+ </div>
862
+ </div>
863
+ <div class="sowhat rv">
864
+ <span class="sowhat__k">So what</span>
865
+ <span class="sowhat__v">增幅与基数负相关,研发域工具链补齐后将进入陡峭爬坡段。</span>
866
+ </div>
867
+ </div>
868
+ </section>
869
+
870
+ <!-- ══ 对比页(comparison):两条路径结局分野 ══ -->
871
+ <section class="band" id="scmp">
872
+ <div class="wrap">
873
+ <div class="shead rv">
874
+ <div class="t-eyebrow">04 · 落地路径</div>
875
+ <h2 class="t-h1 shead__title">堆场景与平台化两条路径的结局分野</h2>
876
+ </div>
877
+ <div class="grid g-half rv">
878
+ <div class="card">
879
+ <h3 class="t-h3">堆场景路径(n=23)</h3>
880
+ <ul class="ul">
881
+ <li><strong>接入慢。</strong>每场景重复对接,平均 11 周上线。</li>
882
+ <li><strong>治理弱。</strong>事后审计,回退靠人工。</li>
883
+ <li><strong>结局。</strong>19 家半年内退回试点<a class="cite" href="#ref-2">[2]</a>。</li>
884
+ </ul>
885
+ </div>
886
+ <div class="card" style="background:var(--accent-soft);border-color:transparent">
887
+ <h3 class="t-h3" style="color:var(--accent)">平台化路径(n=9)</h3>
888
+ <ul class="ul">
889
+ <li><strong>接入快。</strong>统一编排,平均 3 周上线。</li>
890
+ <li><strong>治理内嵌。</strong>权限、审计、回退进平台层。</li>
891
+ <li><strong>结局。</strong>全部穿越分水岭进入放量<a class="cite" href="#ref-2">[2]</a>。</li>
892
+ </ul>
893
+ </div>
894
+ </div>
895
+ <div class="sowhat rv">
896
+ <span class="sowhat__k">So what</span>
897
+ <span class="sowhat__v">平台化把场景接入周期从 11 周压到 3 周,是穿越分水岭的唯一共同路径。</span>
898
+ </div>
899
+ </div>
900
+ </section>
901
+
902
+ <!-- ══ 环形图页(donut):规模化企业行业分布 ══ -->
903
+ <section class="band" id="sdonut">
904
+ <div class="wrap">
905
+ <div class="shead rv">
906
+ <div class="t-eyebrow">04 · 落地路径</div>
907
+ <h2 class="t-h1 shead__title">规模化企业行业分布:制造与金融领跑</h2>
908
+ </div>
909
+ <div class="grid g-side rv" style="align-items:center">
910
+ <div class="fig">
911
+ <div class="fig__cap">9 家规模化企业的行业构成(家)</div>
912
+ <svg class="chart" data-chart="donut" viewBox="0 0 150 150" style="width:190px;margin-inline:auto">
913
+ <circle cx="75" cy="75" r="54" class="f-none s-bds" stroke-width="26"/>
914
+ <circle cx="75" cy="75" r="54" class="f-acc" stroke-width="26"
915
+ stroke-dasharray="113.1 226.2" transform="rotate(-90 75 75)"><title>制造 3 家</title></circle>
916
+ <circle cx="75" cy="75" r="54" class="f-accs" stroke-width="26"
917
+ stroke-dasharray="75.4 263.9" transform="rotate(30 75 75)"><title>金融 2 家</title></circle>
918
+ <circle cx="75" cy="75" r="54" class="f-s2" stroke-width="26"
919
+ stroke-dasharray="150.8 188.5" transform="rotate(110 75 75)"><title>互联网及其他 4 家</title></circle>
920
+ <text x="75" y="72" text-anchor="middle" class="f-txt" font-size="22" font-weight="600">9</text>
921
+ <text x="75" y="92" text-anchor="middle" class="f-txt3" font-size="10">家</text>
922
+ </svg>
923
+ </div>
924
+ <div class="stack gap-3">
925
+ <div class="row" style="gap:var(--sp-4)">
926
+ <span class="chip chip--accent">制造 3</span>
927
+ <span class="chip">金融 2</span>
928
+ <span class="chip chip--line">互联网及其他 4</span>
929
+ </div>
930
+ <ul class="ul">
931
+ <li><strong>制造领跑。</strong>流程标准、容错高,最先穿越分水岭。</li>
932
+ <li><strong>金融紧随。</strong>合规要求倒逼治理内嵌平台层。</li>
933
+ </ul>
934
+ </div>
935
+ </div>
936
+ <div class="footnote">注:行业构成基于 9 家规模化成功企业(N=42 访谈样本)<a class="cite" href="#ref-2">[2]</a>。</div>
937
+ </div>
938
+ </section>
939
+
940
+ <!-- ══ R4 指标带页:落地基线(节奏休止) ══ -->
941
+ <section class="band" id="s5">
942
+ <div class="wrap">
943
+ <div class="shead rv">
944
+ <div class="t-eyebrow">04 · 落地路径</div>
945
+ <h2 class="t-h1 shead__title">四组基线数字勾勒出规模化落地现状</h2>
946
+ </div>
947
+ <div class="grid g-4 rv">
948
+ <div class="metric">
949
+ <svg class="metric__ico" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M3 5v14c0 1.66 4.03 3 9 3s9-1.34 9-3V5"/><path d="M3 12c0 1.66 4.03 3 9 3s9-1.34 9-3"/></svg>
950
+ <div class="metric__v t-metric">61<small>%</small></div>
951
+ <div class="metric__k">企业试点率</div>
952
+ <div class="metric__n">2025 年基线<a class="cite" href="#ref-1">[1]</a></div>
953
+ </div>
954
+ <div class="metric">
955
+ <svg class="metric__ico" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M22 7l-8.5 8.5-5-5L2 17"/><path d="M16 7h6v6"/></svg>
956
+ <div class="metric__v t-metric">18<small>%</small></div>
957
+ <div class="metric__k">规模化占比</div>
958
+ <div class="metric__n">3 个以上场景稳定运行<a class="cite" href="#ref-2">[2]</a></div>
959
+ </div>
960
+ <div class="metric metric--warn">
961
+ <div class="metric__v t-metric">9<small> 家</small></div>
962
+ <div class="metric__k">规模化成功企业</div>
963
+ <div class="metric__n">全部先建平台层</div>
964
+ </div>
965
+ <div class="metric">
966
+ <div class="metric__v t-metric">60<small>%</small></div>
967
+ <div class="metric__k">2027Q2 采纳率目标</div>
968
+ <div class="metric__n">四个季度四步走</div>
969
+ </div>
970
+ </div>
971
+ </div>
972
+ </section>
973
+
974
+ <!-- ══ R5 分栏证据页:平台化路径 ══ -->
975
+ <section class="band" id="s6">
976
+ <div class="wrap">
977
+ <div class="shead rv">
978
+ <div class="t-eyebrow">04 · 落地路径</div>
979
+ <h2 class="t-h1 shead__title">平台化先行是穿越分水岭的共同路径</h2>
980
+ </div>
981
+ <div class="grid g-side rv">
982
+ <div class="cols-2">
983
+ <p class="t-body"><strong>路径。</strong>访谈中规模化成功的 9 家企业,全部先建平台层再放场景。</p>
984
+ <p class="t-body"><strong>机制。</strong>统一编排把工具、记忆、权限收敛到一处,场景接入成本下降一个量级。</p>
985
+ <p class="t-body"><strong>反例。</strong>跳过平台直接堆场景的企业,23 家中 19 家在半年内回退试点<a class="cite" href="#ref-2">[2]</a>。</p>
986
+ </div>
987
+ <div class="exhibit">
988
+ <div class="exhibit__hd">
989
+ <span class="exhibit__no">Exhibit 3</span>
990
+ <span class="exhibit__t">采纳率爬坡:四个季度四步走</span>
991
+ </div>
992
+ <svg class="chart" data-chart="bar" viewBox="0 0 520 200">
993
+ <line x1="40" y1="160" x2="500" y2="160" class="s-bds" stroke-width="1"/>
994
+ <rect data-anim="grow" x="70" y="120" width="56" height="40" rx="6" class="f-s3"/>
995
+ <rect data-anim="grow" x="190" y="92" width="56" height="68" rx="6" class="f-s3"/>
996
+ <rect data-anim="grow" x="310" y="60" width="56" height="100" rx="6" class="f-acc"/>
997
+ <rect data-anim="grow" x="430" y="48" width="56" height="112" rx="6" class="f-acc"/>
998
+ <text data-anim="fade" x="98" y="180" text-anchor="middle" class="f-txt3" font-size="11">2026Q3</text>
999
+ <text data-anim="fade" x="218" y="180" text-anchor="middle" class="f-txt3" font-size="11">Q4</text>
1000
+ <text data-anim="fade" x="338" y="180" text-anchor="middle" class="f-txt3" font-size="11">2027Q1</text>
1001
+ <text data-anim="fade" x="458" y="180" text-anchor="middle" class="f-txt3" font-size="11">Q2</text>
1002
+ </svg>
1003
+ <div class="exhibit__src">来源:企业智能体发展调研,2026-08;口径 = 试点及以上企业占比</div>
1004
+ </div>
1005
+ </div>
1006
+ <div class="sowhat rv">
1007
+ <span class="sowhat__k">So what</span>
1008
+ <span class="sowhat__v">平台层的投入在四个季度内由采纳率爬坡兑回,不是纯成本。</span>
1009
+ </div>
1010
+ </div>
1011
+ </section>
1012
+
1013
+ <!-- ══ R6 三栏证据页:三重门槛 ══ -->
1014
+ <section class="band" id="s7">
1015
+ <div class="wrap">
1016
+ <div class="shead rv">
1017
+ <div class="t-eyebrow">05 · 风险与治理</div>
1018
+ <h2 class="t-h1 shead__title">规模化三重门槛:技术可控、组织就绪、经济可行</h2>
1019
+ </div>
1020
+ <div class="cols-3 rv">
1021
+ <p class="t-body"><strong>技术可控。</strong>幻觉率与工具调用成功率决定场景上限,需评测门禁。</p>
1022
+ <p class="t-body"><strong>组织就绪。</strong>流程负责人须会拆任务、定验收;缺位的场景一律降级试点。</p>
1023
+ <p class="t-body"><strong>经济可行。</strong>单任务成本须低于人工基线 30% 以上,否则不可放量。</p>
1024
+ <p class="t-body"><strong>佐证。</strong>成功企业的共同做法是按三重门槛给场景分级放量。</p>
1025
+ <p class="t-body"><strong>顺序。</strong>先算经济账再上技术平台——多数失败案例顺序相反。</p>
1026
+ <p class="t-body"><strong>结论。</strong>三门槛齐备的场景不足两成,分级放量是唯一理性路径。</p>
1027
+ </div>
1028
+ <div class="footnote">注:三重门槛口径来自访谈编码(N=42),编码一致性 Kappa=0.81。</div>
1029
+ </div>
1030
+ </section>
1031
+
1032
+ <!-- ══ R8 矩阵图页:放量顺序 ══ -->
1033
+ <section class="band" id="s8">
1034
+ <div class="wrap">
1035
+ <div class="shead rv">
1036
+ <div class="t-eyebrow">05 · 风险与治理</div>
1037
+ <h2 class="t-h1 shead__title">高价值低难度场景优先——矩阵给出放量顺序</h2>
1038
+ </div>
1039
+ <div class="matrix rv">
1040
+ <div class="matrix__grid" style="--mx-cols:3">
1041
+ <div></div>
1042
+ <div class="matrix__h">实施难度 · 低</div>
1043
+ <div class="matrix__h">实施难度 · 中</div>
1044
+ <div class="matrix__h">实施难度 · 高</div>
1045
+ <div class="matrix__rh">业务价值 · 高</div>
1046
+ <div class="matrix__c matrix__c--a"><b>客服问数</b>首批放量</div>
1047
+ <div class="matrix__c"><b>研发副驾</b>二批放量</div>
1048
+ <div class="matrix__c"><b>端到端交付</b>暂缓</div>
1049
+ <div class="matrix__rh">业务价值 · 中</div>
1050
+ <div class="matrix__c"><b>知识检索</b>常规推进</div>
1051
+ <div class="matrix__c"><b>经营预警</b>常规推进</div>
1052
+ <div class="matrix__c matrix__c--a"><b>自主决策</b>护栏试点</div>
1053
+ </div>
1054
+ <div class="matrix__note">图例:强调单元 = 优先投入项;其余按季度节奏推进。价值 / 难度评分口径见参考资料 [2]。</div>
1055
+ </div>
1056
+ </div>
1057
+ </section>
1058
+
1059
+ <!-- ══ 热力矩阵页(heatmap):行业 × 能力就绪度 ══ -->
1060
+ <section class="band" id="s9">
1061
+ <div class="wrap">
1062
+ <div class="shead rv">
1063
+ <div class="t-eyebrow">06 · 行业对标</div>
1064
+ <h2 class="t-h1 shead__title">行业就绪度差异显著——金融客服先行,制造研发滞后</h2>
1065
+ </div>
1066
+ <div class="heat rv">
1067
+ <div class="heat__grid" style="--heat-cols:5;--heat-label:132px">
1068
+ <div></div>
1069
+ <div class="heat__h">客服</div>
1070
+ <div class="heat__h">研发</div>
1071
+ <div class="heat__h">营销</div>
1072
+ <div class="heat__h">供应链</div>
1073
+ <div class="heat__h">财务</div>
1074
+ <div class="heat__rh">金融</div>
1075
+ <div class="heat__c heat__c--3">78<small>高</small></div>
1076
+ <div class="heat__c heat__c--1">46<small>中</small></div>
1077
+ <div class="heat__c heat__c--2">63<small>中高</small></div>
1078
+ <div class="heat__c">38<small>低</small></div>
1079
+ <div class="heat__c heat__c--2">61<small>中高</small></div>
1080
+ <div class="heat__rh">制造</div>
1081
+ <div class="heat__c heat__c--1">44<small>中</small></div>
1082
+ <div class="heat__c">29<small>低</small></div>
1083
+ <div class="heat__c">33<small>低</small></div>
1084
+ <div class="heat__c heat__c--2">57<small>中高</small></div>
1085
+ <div class="heat__c">31<small>低</small></div>
1086
+ <div class="heat__rh">互联网</div>
1087
+ <div class="heat__c heat__c--2">71<small>中高</small></div>
1088
+ <div class="heat__c heat__c--3">82<small>高</small></div>
1089
+ <div class="heat__c heat__c--2">68<small>中高</small></div>
1090
+ <div class="heat__c heat__c--1">49<small>中</small></div>
1091
+ <div class="heat__c heat__c--1">52<small>中</small></div>
1092
+ </div>
1093
+ <div class="heat__legend">
1094
+ <span>就绪度</span>
1095
+ <span class="heat__sw" style="background:var(--surface-1)"></span>
1096
+ <span class="heat__sw" style="background:var(--accent-soft)"></span>
1097
+ <span class="heat__sw" style="background:var(--accent-soft-2)"></span>
1098
+ <span class="heat__sw" style="background:var(--accent)"></span>
1099
+ <span>低 → 高(单位:分)</span>
1100
+ </div>
1101
+ </div>
1102
+ <div class="sowhat rv">
1103
+ <span class="sowhat__k">So what</span>
1104
+ <span class="sowhat__v">金融客服与互联网研发是两个可复制样板,制造研发域需先补工具链再谈放量。</span>
1105
+ </div>
1106
+ <div class="footnote">注:就绪度 = 场景 × 行业维度的能力自评加权得分(0–100),N=42 深度访谈 + 行业抽样<a class="cite" href="#ref-2">[2]</a>。</div>
1107
+ </div>
1108
+ </section>
1109
+
1110
+ <!-- ══ 金字塔页(pyramid):价值兑现的四级台阶 ══ -->
1111
+ <section class="band" id="s10">
1112
+ <div class="wrap">
1113
+ <div class="shead rv">
1114
+ <div class="t-eyebrow">07 · 价值阶梯</div>
1115
+ <h2 class="t-h1 shead__title">价值兑现四级台阶:越往上,组织变革成本越高</h2>
1116
+ </div>
1117
+ <div class="pyr rv">
1118
+ <div class="pyr__lvl" style="--w:42%">
1119
+ <div class="pyr__t">自主决策</div>
1120
+ <div class="pyr__d">自动执行</div>
1121
+ </div>
1122
+ <div class="pyr__lvl" style="--w:62%">
1123
+ <div class="pyr__t">端到端交付</div>
1124
+ <div class="pyr__d">跨系统串联多步任务,交付质量可回退</div>
1125
+ </div>
1126
+ <div class="pyr__lvl pyr__lvl--a" style="--w:82%">
1127
+ <div class="pyr__t">副驾协同</div>
1128
+ <div class="pyr__d">人机分工明确,效率提升可度量(当前主力)</div>
1129
+ </div>
1130
+ <div class="pyr__lvl" style="--w:100%">
1131
+ <div class="pyr__t">问答与检索</div>
1132
+ <div class="pyr__d">知识问答、找数问数,替换成本最低</div>
1133
+ </div>
1134
+ </div>
1135
+ <div class="sowhat rv">
1136
+ <span class="sowhat__k">So what</span>
1137
+ <span class="sowhat__v">当前主力仍在第二级:把副驾协同做厚,比抢跑自主决策更能兑现价值。</span>
1138
+ </div>
1139
+ <div class="footnote">注:台阶高度不代表难度,仅表示覆盖范围;accent 层为当前主力形态<a class="cite" href="#ref-1">[1]</a>。</div>
1140
+ </div>
1141
+ </section>
1142
+
1143
+ <!-- ══ 原生图表技巧:瀑布图(增减归因) ══ -->
1144
+ <section class="band" id="s18">
1145
+ <div class="wrap">
1146
+ <div class="shead rv">
1147
+ <div class="t-eyebrow">03 · 域间差异</div>
1148
+ <h2 class="t-h1 shead__title">试点率增长归因:工具链补齐贡献过半</h2>
1149
+ </div>
1150
+ <div class="exhibit rv">
1151
+ <div class="exhibit__hd">
1152
+ <span class="exhibit__no">Exhibit 4</span>
1153
+ <span class="exhibit__t">试点率从 2025 基线到 2026 现值的增量归因(百分点)</span>
1154
+ </div>
1155
+ <svg class="chart" data-chart="waterfall" viewBox="0 0 900 300">
1156
+ <line x1="60" y1="250" x2="860" y2="250" class="s-bd"/>
1157
+ <rect x="100" y="92" width="70" height="158" class="f-acc"/>
1158
+ <text x="135" y="82" text-anchor="middle" class="f-txt" font-size="12" font-weight="600">38pt</text>
1159
+ <text x="135" y="272" text-anchor="middle" class="f-txt2" font-size="11">2025 基线</text>
1160
+ <rect x="230" y="54" width="70" height="38" class="f-acc"/>
1161
+ <text x="265" y="44" text-anchor="middle" class="f-txt" font-size="12" font-weight="600">+9pt</text>
1162
+ <text x="265" y="272" text-anchor="middle" class="f-txt2" font-size="11">工具链</text>
1163
+ <rect x="360" y="29" width="70" height="25" class="f-acc"/>
1164
+ <text x="395" y="19" text-anchor="middle" class="f-txt" font-size="12" font-weight="600">+6pt</text>
1165
+ <text x="395" y="272" text-anchor="middle" class="f-txt2" font-size="11">流程改造</text>
1166
+ <rect x="490" y="29" width="70" height="13" class="f-s3"/>
1167
+ <text x="525" y="19" text-anchor="middle" class="f-txt" font-size="12" font-weight="600">-3pt</text>
1168
+ <text x="525" y="272" text-anchor="middle" class="f-txt2" font-size="11">治理</text>
1169
+ <rect x="620" y="33" width="70" height="8" class="f-acc"/>
1170
+ <text x="655" y="23" text-anchor="middle" class="f-txt" font-size="12" font-weight="600">+2pt</text>
1171
+ <text x="655" y="272" text-anchor="middle" class="f-txt2" font-size="11">组织</text>
1172
+ <rect x="750" y="33" width="70" height="217" class="f-acc"/>
1173
+ <text x="785" y="23" text-anchor="middle" class="f-txt" font-size="12" font-weight="600">52pt</text>
1174
+ <text x="785" y="272" text-anchor="middle" class="f-txt2" font-size="11">2026 现值</text>
1175
+ </svg>
1176
+ <div class="exhibit__src">来源:企业智能体发展调研,2026-08;单位为百分点(pt),按增量归因分解</div>
1177
+ </div>
1178
+ <div class="sowhat rv">
1179
+ <span class="sowhat__k">So what</span>
1180
+ <span class="sowhat__v">九个百分点增量里工具链补齐贡献最大、治理不足拖累 3pt——补齐工具链的边际收益最高。</span>
1181
+ </div>
1182
+ <div class="footnote">注:归因分解基于 42 家访谈企业的自报增量与编码结果,合计等于两期试点率之差。</div>
1183
+ </div>
1184
+ </section>
1185
+
1186
+ <!-- ══ 信息图页:桑基图(流向与流量) ══ -->
1187
+ <section class="band" id="s19">
1188
+ <div class="wrap">
1189
+ <div class="shead rv">
1190
+ <div class="t-eyebrow">04 · 落地路径</div>
1191
+ <h2 class="t-h1 shead__title">线索转化流向:初筛环节流失占比近六成</h2>
1192
+ </div>
1193
+ <div class="exhibit rv">
1194
+ <div class="exhibit__hd">
1195
+ <span class="exhibit__no">Exhibit 5</span>
1196
+ <span class="exhibit__t">线索转化流向(带宽 ∝ 流量 · 单位:条)</span>
1197
+ </div>
1198
+ <svg class="chart" data-chart="sankey" viewBox="0 0 900 300">
1199
+ <g class="f-s2" opacity=".85">
1200
+ <path d="M140,40 C400,40 460,40 620,40 L620,74 C460,74 400,74 140,74 Z"/>
1201
+ <path d="M140,80 C400,80 460,150 620,150 L620,176 C460,176 400,110 140,110 Z"/>
1202
+ </g>
1203
+ <g class="f-s3" opacity=".85">
1204
+ <path d="M140,116 C400,116 460,210 620,210 L620,244 C460,244 400,150 140,150 Z"/>
1205
+ </g>
1206
+ <g class="f-s1" opacity=".85">
1207
+ <path d="M620,40 C740,40 780,60 830,60 L830,150 C780,150 740,74 620,74 Z"/>
1208
+ </g>
1209
+ <g class="f-acc">
1210
+ <rect x="120" y="34" width="18" height="118"/>
1211
+ <rect x="620" y="34" width="18" height="216"/>
1212
+ <rect x="830" y="52" width="18" height="104"/>
1213
+ </g>
1214
+ <g class="f-txt2" font-size="12" font-weight="600">
1215
+ <text x="112" y="98" text-anchor="end">线索</text>
1216
+ <text x="648" y="70">初筛</text>
1217
+ <text x="856" y="110">签约</text>
1218
+ </g>
1219
+ <g class="f-txt3" font-size="11" text-anchor="middle">
1220
+ <text x="380" y="52">1,000</text><text x="380" y="122">420</text><text x="380" y="196">580</text>
1221
+ </g>
1222
+ </svg>
1223
+ <div class="exhibit__src">来源:企业智能体发展调研,2026-08;单位:条,自然月去重线索</div>
1224
+ </div>
1225
+ <div class="sowhat rv">
1226
+ <span class="sowhat__k">So what</span>
1227
+ <span class="sowhat__v">初筛环节流失 580 条、占全链路 58%——先修初筛判定规则,比加大线索投放更快见效。</span>
1228
+ </div>
1229
+ <div class="footnote">注:流带宽度按流量线性编码,明细数据随页附数据表(PPTX 演讲者备注或页内表格)。</div>
1230
+ </div>
1231
+ </section>
1232
+
1233
+ <!-- ══ 信息图页:树图(面积编码) ══ -->
1234
+ <section class="band" id="s20">
1235
+ <div class="wrap">
1236
+ <div class="shead rv">
1237
+ <div class="t-eyebrow">06 · 行业对标</div>
1238
+ <h2 class="t-h1 shead__title">规模化企业行业构成:制造与金融合计过半</h2>
1239
+ </div>
1240
+ <div class="exhibit rv">
1241
+ <div class="exhibit__hd">
1242
+ <span class="exhibit__no">Exhibit 6</span>
1243
+ <span class="exhibit__t">9 家规模化成功企业的行业构成(面积 ∝ 家数)</span>
1244
+ </div>
1245
+ <svg class="chart" data-chart="treemap" viewBox="0 0 900 300">
1246
+ <rect x="1" y="1" width="470" height="298" class="f-acc"/>
1247
+ <text x="20" y="34" class="t-on-inv" font-size="15" font-weight="600">制造 3 家</text>
1248
+ <text x="20" y="58" class="t-on-inv" font-size="12">33%</text>
1249
+ <rect x="475" y="1" width="310" height="298" class="f-s2"/>
1250
+ <text x="494" y="34" class="f-txt" font-size="14" font-weight="600">金融 2 家</text>
1251
+ <rect x="789" y="1" width="110" height="298" class="f-s3"/>
1252
+ <text x="800" y="28" class="f-txt" font-size="12">互联网 2 家</text>
1253
+ </svg>
1254
+ <div class="exhibit__src">注:行业构成基于 9 家规模化成功企业(N=42 访谈样本),能源与医疗各 1 家合并显示</div>
1255
+ </div>
1256
+ <div class="sowhat rv">
1257
+ <span class="sowhat__k">So what</span>
1258
+ <span class="sowhat__v">制造与金融合计 5 家、占 55%——共同点是流程标准、容错边界清晰,可直接复制。</span>
1259
+ </div>
1260
+ <div class="footnote">注:面积与家数严格成比例;小于 2 家的行业合并为「其他」以保证可读性。</div>
1261
+ </div>
1262
+ </section>
1263
+
1264
+ <!-- ══ 信息图页:箱线图(分布对比) ══ -->
1265
+ <section class="band" id="s11">
1266
+ <div class="wrap">
1267
+ <div class="shead rv">
1268
+ <div class="t-eyebrow">05 · 风险与治理</div>
1269
+ <h2 class="t-h1 shead__title">各域就绪度分布:金融客服中位最高、离散最小</h2>
1270
+ </div>
1271
+ <div class="exhibit rv">
1272
+ <div class="exhibit__hd">
1273
+ <span class="exhibit__no">Exhibit 7</span>
1274
+ <span class="exhibit__t">四类场景就绪度分布(箱体 = Q1–Q3,中线 = 中位,须 = 极值)</span>
1275
+ </div>
1276
+ <svg class="chart" data-chart="boxplot" viewBox="0 0 900 300">
1277
+ <line x1="70" y1="250" x2="860" y2="250" class="s-bd"/>
1278
+ <g class="s-txt3" stroke-width="1.5">
1279
+ <line x1="180" y1="42" x2="180" y2="228"/><line x1="150" y1="42" x2="210" y2="42"/>
1280
+ <line x1="150" y1="228" x2="210" y2="228"/>
1281
+ </g>
1282
+ <rect x="140" y="66" width="80" height="110" class="f-s2 s-acc"/>
1283
+ <line x1="140" y1="100" x2="220" y2="100" class="s-acc" stroke-width="3"/>
1284
+ <text x="180" y="272" class="f-txt2" font-size="12" text-anchor="middle">金融客服</text>
1285
+ <text x="180" y="92" class="f-acc" font-size="12" font-weight="600" text-anchor="middle">81</text>
1286
+ <g class="s-txt3" stroke-width="1.5">
1287
+ <line x1="400" y1="86" x2="400" y2="222"/><line x1="370" y1="86" x2="430" y2="86"/>
1288
+ <line x1="370" y1="222" x2="430" y2="222"/>
1289
+ </g>
1290
+ <rect x="360" y="120" width="80" height="76" class="f-s2 s-acc"/>
1291
+ <line x1="360" y1="152" x2="440" y2="152" class="s-acc" stroke-width="3"/>
1292
+ <text x="400" y="272" class="f-txt2" font-size="12" text-anchor="middle">制造研发</text>
1293
+ <text x="400" y="144" class="f-acc" font-size="12" font-weight="600" text-anchor="middle">49</text>
1294
+ <g class="s-txt3" stroke-width="1.5">
1295
+ <line x1="620" y1="62" x2="620" y2="212"/><line x1="590" y1="62" x2="650" y2="62"/>
1296
+ <line x1="590" y1="212" x2="650" y2="212"/>
1297
+ </g>
1298
+ <rect x="580" y="94" width="80" height="90" class="f-s2 s-acc"/>
1299
+ <line x1="580" y1="130" x2="660" y2="130" class="s-acc" stroke-width="3"/>
1300
+ <text x="620" y="272" class="f-txt2" font-size="12" text-anchor="middle">互联网营销</text>
1301
+ <text x="620" y="122" class="f-acc" font-size="12" font-weight="600" text-anchor="middle">62</text>
1302
+ </svg>
1303
+ <div class="exhibit__src">注:就绪度 = 场景 × 行业维度的能力自评加权得分(0–100),N=42 深度访谈</div>
1304
+ </div>
1305
+ <div class="sowhat rv">
1306
+ <span class="sowhat__k">So what</span>
1307
+ <span class="sowhat__v">金融客服中位 81 分且四分位区间最窄——标准化程度高的场景,就绪度稳定且可复制。</span>
1308
+ </div>
1309
+ <div class="footnote">注:分布基于各场景 8–12 个样本点;能源财务组样本最少(n=8),区间仅供参考。</div>
1310
+ </div>
1311
+ </section>
1312
+
1313
+ <!-- ══ 信息图页:关系网络(节点-边拓扑) ══ -->
1314
+ <section class="band" id="s12">
1315
+ <div class="wrap">
1316
+ <div class="shead rv">
1317
+ <div class="t-eyebrow">05 · 风险与治理</div>
1318
+ <h2 class="t-h1 shead__title">平台组件依赖拓扑:编排层为单点枢纽</h2>
1319
+ </div>
1320
+ <div class="exhibit rv">
1321
+ <div class="exhibit__hd">
1322
+ <span class="exhibit__no">Exhibit 8</span>
1323
+ <span class="exhibit__t">平台五组件依赖关系(节点大小 ∝ 连接度)</span>
1324
+ </div>
1325
+ <svg class="chart" data-chart="network" viewBox="0 0 900 300">
1326
+ <g class="s-bd" stroke-width="1.2">
1327
+ <line x1="450" y1="60" x2="180" y2="190"/><line x1="450" y1="60" x2="450" y2="240"/>
1328
+ <line x1="450" y1="60" x2="720" y2="190"/><line x1="180" y1="190" x2="450" y2="240"/>
1329
+ <line x1="720" y1="190" x2="450" y2="240"/>
1330
+ </g>
1331
+ <circle cx="450" cy="60" r="34" class="f-acc"/>
1332
+ <text x="450" y="64" class="t-on-inv" font-size="12" text-anchor="middle">统一编排</text>
1333
+ <circle cx="180" cy="190" r="24" class="f-acc"/>
1334
+ <text x="180" y="194" class="t-on-inv" font-size="11" text-anchor="middle">工具网关</text>
1335
+ <circle cx="720" cy="190" r="24" class="f-acc"/>
1336
+ <text x="720" y="194" class="t-on-inv" font-size="11" text-anchor="middle">权限中心</text>
1337
+ <circle cx="450" cy="240" r="20" class="f-s3"/>
1338
+ <text x="450" y="244" class="f-txt" font-size="11" text-anchor="middle">审计日志</text>
1339
+ </svg>
1340
+ <div class="exhibit__src">注:依赖关系取自 9 家规模化企业的平台架构文档(2026-08)</div>
1341
+ </div>
1342
+ <div class="sowhat rv">
1343
+ <span class="sowhat__k">So what</span>
1344
+ <span class="sowhat__v">编排层连接度最高——它一旦不可用,工具、记忆、权限三条链路同时中断,须优先做冗余。</span>
1345
+ </div>
1346
+ <div class="footnote">注:布局为确定性环形排布(同输入必同输出),不使用随机力导向。</div>
1347
+ </div>
1348
+ </section>
1349
+
1350
+ <!-- ══ 信息图页:马赛克图(双重编码) ══ -->
1351
+ <section class="band" id="s13">
1352
+ <div class="wrap">
1353
+ <div class="shead rv">
1354
+ <div class="t-eyebrow">04 · 落地路径</div>
1355
+ <h2 class="t-h1 shead__title">渠道结构演变:线上占比三年提升 21 个百分点</h2>
1356
+ </div>
1357
+ <div class="exhibit rv">
1358
+ <div class="exhibit__hd">
1359
+ <span class="exhibit__no">Exhibit 9</span>
1360
+ <span class="exhibit__t">渠道结构演变(列宽 ∝ 总规模,列高 = 构成占比)</span>
1361
+ </div>
1362
+ <svg class="chart" data-chart="marimekko" viewBox="0 0 900 300">
1363
+ <rect x="70" y="40" width="180" height="90" class="f-acc"/>
1364
+ <rect x="70" y="130" width="180" height="110" class="f-s2"/>
1365
+ <text x="160" y="90" class="t-on-inv" font-size="12" text-anchor="middle">40%</text>
1366
+ <text x="160" y="190" class="f-txt" font-size="12" text-anchor="middle">60%</text>
1367
+ <text x="160" y="262" class="f-txt" font-size="12" font-weight="600" text-anchor="middle">2023</text>
1368
+ <rect x="256" y="34" width="234" height="117" class="f-acc"/>
1369
+ <rect x="256" y="151" width="234" height="89" class="f-s2"/>
1370
+ <text x="373" y="90" class="t-on-inv" font-size="12" text-anchor="middle">52%</text>
1371
+ <text x="373" y="200" class="f-txt" font-size="12" text-anchor="middle">48%</text>
1372
+ <text x="373" y="262" class="f-txt" font-size="12" font-weight="600" text-anchor="middle">2024</text>
1373
+ <rect x="496" y="28" width="297" height="141" class="f-acc"/>
1374
+ <rect x="496" y="169" width="297" height="71" class="f-s2"/>
1375
+ <text x="644" y="90" class="t-on-inv" font-size="12" text-anchor="middle">61%</text>
1376
+ <text x="644" y="210" class="f-txt" font-size="12" text-anchor="middle">39%</text>
1377
+ <text x="644" y="262" class="f-txt" font-size="12" font-weight="600" text-anchor="middle">2025</text>
1378
+ <rect x="70" y="278" width="12" height="12" class="f-acc"/>
1379
+ <text x="88" y="288" class="f-txt2" font-size="11">线上</text>
1380
+ <rect x="140" y="278" width="12" height="12" class="f-s2"/>
1381
+ <text x="158" y="288" class="f-txt2" font-size="11">线下</text>
1382
+ </svg>
1383
+ <div class="exhibit__src">注:列宽 ∝ 当年总规模(2023 = 100),列高 = 渠道构成占比</div>
1384
+ </div>
1385
+ <div class="sowhat rv">
1386
+ <span class="sowhat__k">So what</span>
1387
+ <span class="sowhat__v">总量三年增长 65%,线上占比从 40% 升到 61%——线上承载能力已成为规模化的前置条件。</span>
1388
+ </div>
1389
+ <div class="footnote">注:双重编码缺一不可——只画占比会丢掉规模差异,只画规模会丢掉结构变化。</div>
1390
+ </div>
1391
+ </section>
1392
+
1393
+ <!-- ══ 信息图页:流带图(构成演变) ══ -->
1394
+ <section class="band" id="s14">
1395
+ <div class="wrap">
1396
+ <div class="shead rv">
1397
+ <div class="t-eyebrow">07 · 价值阶梯</div>
1398
+ <h2 class="t-h1 shead__title">价值兑现结构演变:副驾协同持续做厚</h2>
1399
+ </div>
1400
+ <div class="exhibit rv">
1401
+ <div class="exhibit__hd">
1402
+ <span class="exhibit__no">Exhibit 10</span>
1403
+ <span class="exhibit__t">价值兑现结构演变(基线居中 · 带宽 ∝ 场景数)</span>
1404
+ </div>
1405
+ <svg class="chart" data-chart="streamgraph" viewBox="0 0 900 300">
1406
+ <path class="f-acc" opacity=".9"
1407
+ d="M60,118 C220,106 380,86 540,72 C660,62 780,56 860,54 L860,94 C780,98 660,108 540,122 C380,138 220,150 60,158 Z"/>
1408
+ <path class="f-s2" opacity=".9"
1409
+ d="M60,158 C220,150 380,138 540,122 C660,108 780,98 860,94 L860,130 C780,136 660,148 540,162 C380,178 220,188 60,194 Z"/>
1410
+ <path class="f-s3" opacity=".9"
1411
+ d="M60,194 C220,188 380,178 540,162 C660,148 780,136 860,130 L860,194 C780,202 660,212 540,224 C380,238 220,246 60,250 Z"/>
1412
+ <g class="f-txt2" font-size="11" text-anchor="middle">
1413
+ <text x="60" y="284">2023</text><text x="260" y="284">2024</text>
1414
+ <text x="460" y="284">2025</text><text x="660" y="284">2026</text><text x="860" y="284">2027</text>
1415
+ </g>
1416
+ </svg>
1417
+ <div class="exhibit__src">注:占比为各形态场景数占当年总量;带宽 ∝ 场景数,基线居中展开</div>
1418
+ </div>
1419
+ <div class="sowhat rv">
1420
+ <span class="sowhat__k">So what</span>
1421
+ <span class="sowhat__v">问答检索的占比从 52% 降到 18%,价值重心持续向副驾协同与端到端交付迁移。</span>
1422
+ </div>
1423
+ <div class="footnote">注:带边界上下分别采样(≥24 点),不使用预设形状替代曲线语义。</div>
1424
+ </div>
1425
+ </section>
1426
+
1427
+ <!-- ══ 形状通道图表:甘特(排期;回归覆盖 shapeGantt 的 start/span 计算) ══ -->
1428
+ <section class="band" id="s15">
1429
+ <div class="wrap">
1430
+ <div class="shead rv">
1431
+ <div class="t-eyebrow">01 · 范式与分水岭</div>
1432
+ <h2 class="t-h1 shead__title">实施排期:四阶段串行推进共 18 周</h2>
1433
+ </div>
1434
+ <div class="exhibit rv">
1435
+ <div class="exhibit__hd">
1436
+ <span class="exhibit__no">Exhibit 11</span>
1437
+ <span class="exhibit__t">四阶段实施排期(条形长度 = 时长,起点 = 阶段起始周)</span>
1438
+ </div>
1439
+ <svg class="chart" data-chart="gantt" viewBox="0 0 900 220">
1440
+ <text x="0" y="34" class="f-txt2" font-size="12">调研</text>
1441
+ <rect x="90" y="20" width="760" height="20" rx="10" class="f-s2"/>
1442
+ <rect x="90" y="20" width="127" height="20" rx="10" class="f-acc"/>
1443
+ <text x="890" y="35" text-anchor="end" class="f-txt" font-size="12" font-weight="600">3 周</text>
1444
+ <text x="0" y="84" class="f-txt2" font-size="12">设计</text>
1445
+ <rect x="90" y="70" width="760" height="20" rx="10" class="f-s2"/>
1446
+ <rect x="217" y="70" width="169" height="20" rx="10" class="f-acc"/>
1447
+ <text x="890" y="85" text-anchor="end" class="f-txt" font-size="12" font-weight="600">4 周</text>
1448
+ <text x="0" y="134" class="f-txt2" font-size="12">开发</text>
1449
+ <rect x="90" y="120" width="760" height="20" rx="10" class="f-s2"/>
1450
+ <rect x="386" y="120" width="338" height="20" rx="10" class="f-acc"/>
1451
+ <text x="890" y="135" text-anchor="end" class="f-txt" font-size="12" font-weight="600">8 周</text>
1452
+ <text x="0" y="184" class="f-txt2" font-size="12">试点</text>
1453
+ <rect x="90" y="170" width="760" height="20" rx="10" class="f-s2"/>
1454
+ <rect x="724" y="170" width="126" height="20" rx="10" class="f-acc"/>
1455
+ <text x="890" y="185" text-anchor="end" class="f-txt" font-size="12" font-weight="600">3 周</text>
1456
+ </svg>
1457
+ <div class="exhibit__src">来源:项目排期基线,2026-08;时间轴跨度 = 各阶段「起点 + 时长」最大值(18 周)</div>
1458
+ </div>
1459
+ <div class="sowhat rv">
1460
+ <span class="sowhat__k">So what</span>
1461
+ <span class="sowhat__v">开发阶段独占 8 周、占总工期 44%——压缩工期的杠杆在开发,不在调研与设计。</span>
1462
+ </div>
1463
+ <div class="footnote">注:条形长度按周线性编码,起点为阶段起始周;「起点 + 时长」最大值决定时间轴跨度。</div>
1464
+ </div>
1465
+ </section>
1466
+
1467
+ <!-- ══ 形状通道图表:玫瑰图(回归覆盖 shapeRose 的扇区采样) ══ -->
1468
+ <section class="band" id="s16">
1469
+ <div class="wrap">
1470
+ <div class="shead rv">
1471
+ <div class="t-eyebrow">05 · 风险与治理</div>
1472
+ <h2 class="t-h1 shead__title">能力半径:技术可控一枝独秀</h2>
1473
+ </div>
1474
+ <div class="exhibit rv">
1475
+ <div class="exhibit__hd">
1476
+ <span class="exhibit__no">Exhibit 12</span>
1477
+ <span class="exhibit__t">五维能力半径(扇区半径 ∝ 得分 · 单位:分)</span>
1478
+ </div>
1479
+ <svg class="chart" data-chart="rose" viewBox="0 0 220 220" style="width:210px;margin-inline:auto">
1480
+ <path class="f-acc" d="M110,110 L110,35.4 A74.6,74.6 0 0,1 179.2,82.1 Z"/>
1481
+ <path class="f-s2" d="M110,110 L169.6,90.6 A62.7,62.7 0 0,1 150.3,158.0 Z"/>
1482
+ <path class="f-s3" d="M110,110 L144.4,157.3 A58.5,58.5 0 0,1 79.0,159.6 Z"/>
1483
+ <path class="f-s4" d="M110,110 L81.0,150.0 A49.4,49.4 0 0,1 62.1,98.0 Z"/>
1484
+ <path class="f-s2" d="M110,110 L47.0,89.5 A66.2,66.2 0 0,1 105.4,43.9 Z"/>
1485
+ <circle cx="110" cy="110" r="6" class="f-s3"/>
1486
+ </svg>
1487
+ <div class="t-xs" style="text-align:center;color:var(--text-3);margin-top:var(--sp-2)">
1488
+ 技术可控 78 分 · 合规完备 66 分 · 组织就绪 61 分 · 数据就绪 55 分 · 经济可行 42 分
1489
+ </div>
1490
+ <div class="exhibit__src">注:扇区半径按得分线性映射(0–100 分);每扇区 ≥16 段采样,不使用预设形状替代曲线语义</div>
1491
+ </div>
1492
+ <div class="sowhat rv">
1493
+ <span class="sowhat__k">So what</span>
1494
+ <span class="sowhat__v">技术可控 78 分领先 36 分,而经济可行 42 分垫底——能力建设的短板不在技术,在算得过来账。</span>
1495
+ </div>
1496
+ <div class="footnote">注:五维得分来自 42 家访谈企业的能力自评加权(0–100 分),维度定义见参考资料 [1]。</div>
1497
+ </div>
1498
+ </section>
1499
+
1500
+ <!-- ══ 形状通道图表:K 线(回归覆盖 shapeCandlestick 与 appendix→inline 数据表) ══ -->
1501
+ <section class="band" id="s17">
1502
+ <div class="wrap">
1503
+ <div class="shead rv">
1504
+ <div class="t-eyebrow">06 · 行业对标</div>
1505
+ <h2 class="t-h1 shead__title">八期评分波动:区间震荡后温和上行</h2>
1506
+ </div>
1507
+ <div class="exhibit rv">
1508
+ <div class="exhibit__hd">
1509
+ <span class="exhibit__no">Exhibit 13</span>
1510
+ <span class="exhibit__t">八期就绪度评分波动(实体 = 开收,须 = 高低 · 单位:分)</span>
1511
+ </div>
1512
+ <svg class="chart" data-chart="candlestick" viewBox="0 0 900 240">
1513
+ <line x1="30" y1="200" x2="870" y2="200" class="s-bd"/>
1514
+ <g class="s-txt3" stroke-width="2">
1515
+ <line x1="53" y1="86" x2="53" y2="200"/><line x1="158" y1="67" x2="158" y2="143"/>
1516
+ <line x1="263" y1="96" x2="263" y2="186"/><line x1="368" y1="120" x2="368" y2="172"/>
1517
+ <line x1="473" y1="44" x2="473" y2="153"/><line x1="578" y1="30" x2="578" y2="96"/>
1518
+ <line x1="683" y1="53" x2="683" y2="120"/><line x1="788" y1="20" x2="788" y2="115"/>
1519
+ </g>
1520
+ <g class="f-acc">
1521
+ <rect x="40" y="105" width="26" height="67"/><rect x="355" y="134" width="26" height="24"/>
1522
+ <rect x="460" y="58" width="26" height="76"/><rect x="775" y="34" width="26" height="71"/>
1523
+ </g>
1524
+ <g class="f-s3">
1525
+ <rect x="145" y="105" width="26" height="19"/><rect x="250" y="124" width="26" height="33"/>
1526
+ <rect x="565" y="58" width="26" height="24"/><rect x="670" y="82" width="26" height="24"/>
1527
+ </g>
1528
+ <g class="f-txt3" font-size="11" text-anchor="middle">
1529
+ <text x="53" y="218">1</text><text x="158" y="218">2</text><text x="263" y="218">3</text>
1530
+ <text x="368" y="218">4</text><text x="473" y="218">5</text><text x="578" y="218">6</text>
1531
+ <text x="683" y="218">7</text><text x="788" y="218">8</text>
1532
+ </g>
1533
+ </svg>
1534
+ <div class="exhibit__src">来源:季度就绪度评分序列,2025Q1–2026Q4;单位:分(0–100)</div>
1535
+ </div>
1536
+ <div class="sowhat rv">
1537
+ <span class="sowhat__k">So what</span>
1538
+ <span class="sowhat__v">八期振幅收窄后连拉两根阳线——就绪度进入温和上行段,治理投入开始显效。</span>
1539
+ </div>
1540
+ <div class="footnote">注:上涨用 accent 实体、下跌用中性色实体(不引入红绿第二色相);明细数据随页附数据表。</div>
1541
+ </div>
1542
+ </section>
1543
+
1544
+ <!-- ══ 素材图片页(image 页型 · grid 多图网格 + 配图占位) ══ -->
1545
+ <section class="band" id="s-photos">
1546
+ <div class="wrap">
1547
+ <div class="shead rv">
1548
+ <div class="t-eyebrow">08 · 现场素材</div>
1549
+ <h2 class="t-h1 shead__title">三家样板企业的产线现场:同一套护栏,不同业务形态</h2>
1550
+ <p class="t-lead shead__desc">四张现场照并排互证;无图时先出等比例占位,交付前替换 src 即可。</p>
1551
+ </div>
1552
+ <div class="media-grid media-grid--4 rv">
1553
+ <figure class="media media--r4-3 media--ph">
1554
+ <div class="media__ph">
1555
+ <svg viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="4" width="18" height="16" rx="2"/><circle cx="9" cy="10" r="1.6"/><path d="m3 18 5-5 4 3.4 3-2.6 6 5.2"/></svg>
1556
+ <b>配图占位</b>
1557
+ </div>
1558
+ <figcaption class="media__cap--below">制造 · 质检工位</figcaption>
1559
+ </figure>
1560
+ <figure class="media media--r4-3 media--ph">
1561
+ <div class="media__ph">
1562
+ <svg viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="4" width="18" height="16" rx="2"/><circle cx="9" cy="10" r="1.6"/><path d="m3 18 5-5 4 3.4 3-2.6 6 5.2"/></svg>
1563
+ <b>配图占位</b>
1564
+ </div>
1565
+ <figcaption class="media__cap--below">金融 · 风控坐席</figcaption>
1566
+ </figure>
1567
+ <figure class="media media--r4-3 media--ph">
1568
+ <div class="media__ph">
1569
+ <svg viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="4" width="18" height="16" rx="2"/><circle cx="9" cy="10" r="1.6"/><path d="m3 18 5-5 4 3.4 3-2.6 6 5.2"/></svg>
1570
+ <b>配图占位</b>
1571
+ </div>
1572
+ <figcaption class="media__cap--below">互联网 · 研发流水线</figcaption>
1573
+ </figure>
1574
+ <figure class="media media--r4-3 media--ph">
1575
+ <div class="media__ph">
1576
+ <svg viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="4" width="18" height="16" rx="2"/><circle cx="9" cy="10" r="1.6"/><path d="m3 18 5-5 4 3.4 3-2.6 6 5.2"/></svg>
1577
+ <b>配图占位</b>
1578
+ </div>
1579
+ <figcaption class="media__cap--below">制造 · 设备巡检</figcaption>
1580
+ </figure>
1581
+ </div>
1582
+ <p class="media__src">图 2–5:现场素材占位(建议 900×675px · 4:3;替换 image.items[].src 即可)<a class="cite" href="#ref-2">[2]</a></p>
1583
+ </div>
1584
+ </section>
1585
+
1586
+ <!-- ══ 结论页(深色收尾) ══ -->
1587
+ <section class="band band--accent band--fit" id="next">
1588
+ <div class="wrap">
1589
+ <div class="shead shead--center rv">
1590
+ <div class="t-eyebrow">结论</div>
1591
+ <h2 class="t-h1 shead__title">平台化穿越分水岭,分级放量兑现价值</h2>
1592
+ <p class="t-lead shead__desc">三条核心结论的浓缩陈述。</p>
1593
+ </div>
1594
+ <div class="grid g-3 rv">
1595
+ <div class="card">
1596
+ <h3 class="t-h3" style="margin-bottom:var(--sp-2)">平台先行</h3>
1597
+ <p class="t-body">
1598
+ 统一编排与护栏到位,场景再分层放量。</p>
1599
+ </div>
1600
+ <div class="card">
1601
+ <h3 class="t-h3" style="margin-bottom:var(--sp-2)">场景分级</h3>
1602
+ <p class="t-body">
1603
+ 三重门槛齐备的场景优先,不足两成。</p>
1604
+ </div>
1605
+ <div class="card">
1606
+ <h3 class="t-h3" style="margin-bottom:var(--sp-2)">治理闭环</h3>
1607
+ <p class="t-body">
1608
+ 权限、审计、回退全链路内嵌平台层。</p>
1609
+ </div>
1610
+ </div>
1611
+ <div class="row" style="justify-content:center;gap:var(--sp-3);
1612
+ margin-top:clamp(28px,3.4vh,44px);flex-wrap:wrap">
1613
+ <a class="btn btn--primary" href="#s1">返回阅读</a>
1614
+ <a class="btn btn--ghost" href="#refs"
1615
+ style="border-color:color-mix(in srgb,var(--text-inv) 30%,transparent)">
1616
+ 参考资料</a>
1617
+ </div>
1618
+ </div>
1619
+ </section>
1620
+
1621
+ <!-- ══ 参考资料 ══ -->
1622
+ <section class="band band--tint" id="refs">
1623
+ <div class="wrap">
1624
+ <div class="shead rv">
1625
+ <div class="t-eyebrow">参考资料</div>
1626
+ <h2 class="t-h1 shead__title">数据来源与口径说明</h2>
1627
+ </div>
1628
+ <div class="tbl-wrap rv">
1629
+ <table>
1630
+ <thead><tr><th style="width:6%">编号</th><th style="width:26%">来源</th>
1631
+ <th style="width:14%">时间</th><th>口径说明</th></tr></thead>
1632
+ <tbody>
1633
+ <tr id="ref-1"><td class="k">[1]</td>
1634
+ <td><a class="ref-link" href="https://example.com/gartner-agentic-ai" target="_blank" rel="noopener">Gartner:Agentic AI 技术成熟度曲线
1635
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><path d="M15 3h6v6M10 14 21 3"/></svg></a></td>
1636
+ <td>2026-06</td><td>试点率 / 采纳率 / 形态成熟度判定</td></tr>
1637
+ <tr id="ref-2"><td class="k">[2]</td><td>企业智能体发展调研(内部,N=42)</td>
1638
+ <td>2026-08</td><td>域间数据 / 规模化占比 / 访谈结论,2026-07 至 2026-08</td></tr>
1639
+ </tbody>
1640
+ </table>
1641
+ </div>
1642
+ </div>
1643
+ </section>
1644
+
1645
+ <!-- ══ 页脚 ══ -->
1646
+ <footer class="foot">
1647
+ <div class="wrap foot__in">
1648
+ <div class="brand">
1649
+ <div class="brand__mark">AI</div>
1650
+ <div class="brand__txt">
1651
+ <div class="brand__title">2026 AI 智能体发展研究报告</div>
1652
+ <div class="brand__sub">研究报告 · ''' + DATE + '''</div>
1653
+ </div>
1654
+ </div>
1655
+ <div class="t-xs">内部研究资料 · 请勿外传</div>
1656
+ </div>
1657
+ </footer>'''
1658
+
1659
+ R_MODEL = {
1660
+ "mode": "research", "style": "mckinsey",
1661
+ "title": "2026 AI 智能体发展研究报告",
1662
+ "subtitle": "规模化前夜的治理与集成研究",
1663
+ "meta": "内部研究资料 · " + DATE,
1664
+ "agenda": [
1665
+ ["01", "范式与分水岭", "从 Chatbot 到 Autonomous Agent"],
1666
+ ["02", "形态与边界", "三类形态与能力边界"],
1667
+ ["03", "域间差异", "试点率的行业分化与互证"],
1668
+ ["04", "落地路径", "平台化先行四步走"],
1669
+ ["05", "风险与治理", "三重门槛与优先级矩阵"],
1670
+ ["06", "参考资料", "数据来源与口径说明"],
1671
+ ],
1672
+ "sections": [
1673
+ {"type": "twocol", "eyebrow": "01 · 范式与分水岭",
1674
+ "title": "六成企业试点卡在治理与集成——规模化分水岭已经出现",
1675
+ "paragraphs": [["发现", "2025 年全球企业智能体试点率 61%,规模化运行仅 18%,相差 43 个百分点。"],
1676
+ ["证据", "42 家深度访谈企业中,37 家把「权限不清、系统难接」列为放弃规模化的首因。"],
1677
+ ["含义", "瓶颈不在模型能力,而在治理、权限与系统集成。"],
1678
+ ["推论", "平台化先行:统一编排与护栏到位后,场景再分层放量。"]],
1679
+ "soWhat": "先建平台与护栏,再放场景——顺序反了会被治理拖死。",
1680
+ "footnote": "注:试点率 = 已进入试点及以上的企业占比;规模化 = 3 个以上场景稳定运行。"},
1681
+ {"type": "table", "eyebrow": "02 · 形态与边界",
1682
+ "title": "三类形态能力边界分明,同事级智能体尚在早期",
1683
+ "table": {"head": ["形态", "自主性", "工具生态", "成熟度", "结论"],
1684
+ "rows": [["助理级", "单轮任务,人逐步驱动", "少量插件", "规模可用", "当前主力"],
1685
+ ["流程级", "固定流程多步执行", "数十工具编排", "试点爬坡", "2026 焦点"],
1686
+ ["同事级", "目标驱动,端到端", "千级工具生态", "早期验证", "三年后"]]},
1687
+ "flags": ["同事级成熟度评分口径待确认,正式版请替换 xx%",
1688
+ "「三年后」时间窗来自访谈主观判断,需以官方路线图数据复核"],
1689
+ "footnote": "注:形态判定口径见参考资料 [1];同事级判定基于访谈专家评分(N=42)。"},
1690
+ {"type": "exhibit", "eyebrow": "03 · 域间差异",
1691
+ "title": "客服域一马当先,研发域势能最大——域间分化明显",
1692
+ "exhibitNo": "Exhibit 1",
1693
+ "chart": {"type": "hbar", "labels": ["客服", "财务", "营销", "研发"],
1694
+ "values": [72, 57, 48, 38], "max": 100, "unit": "%"},
1695
+ "soWhat": "研发域渗透最浅但势能最大,工具链成熟后有望一年内反超客服域。",
1696
+ "footnote": "来源:企业智能体发展调研,2026-08;试点率 = 已进入试点及以上的企业占比"},
1697
+ {"type": "halftable", "eyebrow": "03 · 域间差异",
1698
+ "title": "试点率与增幅互证:研发域一年内有望反超",
1699
+ "table": {"head": ["业务域", "试点率", "同比增幅"],
1700
+ "rows": [["客服", "72%", "+9pt"], ["财务", "57%", "+11pt"],
1701
+ ["营销", "48%", "+13pt"], ["研发", "38%", "+15pt"]]},
1702
+ "chart": {"type": "bar", "labels": ["客服", "财务", "营销", "研发"],
1703
+ "values": [9, 11, 13, 15], "max": 16, "unit": "pt"},
1704
+ "soWhat": "增幅与基数负相关,研发域工具链补齐后将进入陡峭爬坡段。"},
1705
+ {"type": "comparison", "eyebrow": "04 · 落地路径",
1706
+ "title": "堆场景与平台化两条路径的结局分野",
1707
+ "left": {"title": "堆场景路径(n=23)",
1708
+ "points": [["接入慢", "每场景重复对接,平均 11 周上线"],
1709
+ ["治理弱", "事后审计,回退靠人工"],
1710
+ ["结局", "19 家半年内退回试点"]]},
1711
+ "right": {"title": "平台化路径(n=9)",
1712
+ "points": [["接入快", "统一编排,平均 3 周上线"],
1713
+ ["治理内嵌", "权限、审计、回退进平台层"],
1714
+ ["结局", "全部穿越分水岭进入放量"]]},
1715
+ "soWhat": "平台化把场景接入周期从 11 周压到 3 周,是穿越分水岭的唯一共同路径。"},
1716
+ {"type": "donut", "eyebrow": "04 · 落地路径",
1717
+ "title": "规模化企业行业分布:制造与金融领跑",
1718
+ "chart": {"labels": ["制造", "金融", "互联网及其他"], "values": [3, 2, 4], "centerLabel": "家"},
1719
+ "note": "注:行业构成基于 9 家规模化成功企业(N=42 访谈样本)。"},
1720
+ {"type": "metrics", "eyebrow": "04 · 落地路径",
1721
+ "title": "四组基线数字勾勒出规模化落地现状",
1722
+ "metrics": [["61%", "企业试点率,2025 年基线"], ["18%", "规模化占比,3 场景以上"],
1723
+ ["9 家", "规模化成功企业,全部先建平台层"], ["60%", "2027Q2 采纳率目标"]]},
1724
+ {"type": "split", "eyebrow": "04 · 落地路径",
1725
+ "title": "平台化先行是穿越分水岭的共同路径",
1726
+ "left": {"points": [["路径", "规模化成功的 9 家企业全部先建平台层再放场景。"],
1727
+ ["机制", "统一编排收敛工具、记忆、权限,接入成本降一个量级。"],
1728
+ ["反例", "跳过平台直接堆场景,23 家中 19 家半年内回退试点。"]]},
1729
+ "right": {"type": "bar", "cap": "采纳率爬坡(%)",
1730
+ "labels": ["2026Q3", "Q4", "2027Q1", "Q2"], "values": [30, 45, 55, 60], "max": 100},
1731
+ "soWhat": "平台层的投入在四个季度内由采纳率爬坡兑回,不是纯成本。"},
1732
+ {"type": "threecol", "eyebrow": "05 · 风险与治理",
1733
+ "title": "规模化三重门槛:技术可控、组织就绪、经济可行",
1734
+ "paragraphs": [["技术可控", "幻觉率与工具调用成功率决定场景上限,需评测门禁。"],
1735
+ ["组织就绪", "流程负责人须会拆任务、定验收;缺位场景一律降级试点。"],
1736
+ ["经济可行", "单任务成本须低于人工基线 30% 以上,否则不可放量。"],
1737
+ ["佐证", "成功企业按三重门槛给场景分级放量。"],
1738
+ ["顺序", "先算经济账再上技术平台——多数失败案例顺序相反。"],
1739
+ ["结论", "三门槛齐备的场景不足两成,分级放量是唯一理性路径。"]],
1740
+ "footnote": "注:三重门槛口径来自访谈编码(N=42),编码一致性 Kappa=0.81。"},
1741
+ {"type": "matrix", "eyebrow": "05 · 风险与治理",
1742
+ "title": "高价值低难度场景优先——矩阵给出放量顺序",
1743
+ "rowHeads": ["业务价值 · 高", "业务价值 · 中"],
1744
+ "colHeads": ["实施难度 · 低", "实施难度 · 中", "实施难度 · 高"],
1745
+ "cells": [[{"t": "客服问数:首批放量", "accent": True},
1746
+ {"t": "研发副驾:二批放量", "accent": False},
1747
+ {"t": "端到端交付:暂缓", "accent": False}],
1748
+ [{"t": "知识检索:常规推进", "accent": False},
1749
+ {"t": "经营预警:常规推进", "accent": False},
1750
+ {"t": "自主决策:护栏试点", "accent": True}]]},
1751
+ {"type": "heatmap", "eyebrow": "06 · 行业对标",
1752
+ "title": "行业就绪度差异显著——金融客服先行,制造研发滞后",
1753
+ "rowHeads": ["金融", "制造", "互联网"],
1754
+ "colHeads": ["客服", "研发", "营销", "供应链", "财务"],
1755
+ "cells": [[78, 46, 63, 38, 61], [44, 29, 33, 57, 31], [71, 82, 68, 49, 52]],
1756
+ "unit": "", "scaleLabel": ["低", "高"],
1757
+ "soWhat": "金融客服与互联网研发是两个可复制样板,制造研发域需先补工具链再谈放量。",
1758
+ "footnote": "注:就绪度 = 场景 × 行业维度的能力自评加权得分(0–100),N=42 深度访谈 + 行业抽样[2]。"},
1759
+ {"type": "pyramid", "eyebrow": "07 · 价值阶梯",
1760
+ "title": "价值兑现四级台阶:越往上,组织变革成本越高",
1761
+ "levels": [["自主决策", "自动执行"],
1762
+ ["端到端交付", "跨系统串联多步任务,交付质量可回退"],
1763
+ {"t": "副驾协同", "d": "人机分工明确,效率提升可度量(当前主力)", "accent": True},
1764
+ ["问答与检索", "知识问答、找数问数,替换成本最低"]],
1765
+ "soWhat": "当前主力仍在第二级:把副驾协同做厚,比抢跑自主决策更能兑现价值。",
1766
+ "footnote": "注:台阶高度不代表难度,仅表示覆盖范围;accent 层为当前主力形态[1]。"},
1767
+ # ── 原生图表技巧(waterfall)+ 六类复杂信息图页型 ──
1768
+ {"type": "bar", "eyebrow": "03 · 域间差异", "exhibitNo": "Exhibit 4",
1769
+ "title": "试点率增长归因:工具链补齐贡献过半",
1770
+ "chart": {"type": "waterfall",
1771
+ "labels": ["2025 基线", "工具链", "流程改造", "治理", "组织", "2026 现值"],
1772
+ "values": [38, 9, 6, -3, 2, 52], "unit": "pt"},
1773
+ "soWhat": "九个百分点增量里工具链补齐贡献最大、治理不足拖累 3pt——补齐工具链的边际收益最高。",
1774
+ "footnote": "来源:企业智能体发展调研,2026-08;单位为百分点(pt),按增量归因分解"},
1775
+ {"type": "sankey", "eyebrow": "04 · 落地路径", "exhibitNo": "Exhibit 5",
1776
+ "title": "线索转化流向:初筛环节流失占比近六成",
1777
+ "unit": "条",
1778
+ "flows": [["线索", "初筛", 1000], ["初筛", "商机", 420], ["商机", "报价", 260],
1779
+ ["报价", "签约", 120], ["初筛", "流失", 580], ["商机", "流失", 160]],
1780
+ "chart": {"dataTable": "inline"},
1781
+ "soWhat": "初筛环节流失 580 条、占全链路 58%——先修初筛判定规则,比加大线索投放更快见效。",
1782
+ "footnote": "来源:企业智能体发展调研,2026-08;单位:条,自然月去重线索"},
1783
+ {"type": "treemap", "eyebrow": "06 · 行业对标", "exhibitNo": "Exhibit 6",
1784
+ "title": "规模化企业行业构成:制造与金融合计过半",
1785
+ "unit": "家",
1786
+ "items": [["制造", 3], ["金融", 2], ["互联网", 2], ["能源", 1], ["医疗", 1]],
1787
+ "soWhat": "制造与金融合计 5 家、占 55%——共同点是流程标准、容错边界清晰,可直接复制。",
1788
+ "footnote": "注:行业构成基于 9 家规模化成功企业(N=42 访谈样本)"},
1789
+ {"type": "boxplot", "eyebrow": "05 · 风险与治理", "exhibitNo": "Exhibit 7",
1790
+ "title": "各域就绪度分布:金融客服中位最高、离散最小",
1791
+ "unit": "分",
1792
+ "groups": [["金融客服", 62, 74, 81, 86, 93], ["制造研发", 31, 42, 49, 57, 68],
1793
+ ["互联网营销", 44, 55, 62, 70, 79]],
1794
+ "soWhat": "金融客服中位 81 分且四分位区间最窄——标准化程度高的场景,就绪度稳定且可复制。",
1795
+ "footnote": "注:就绪度 = 场景 × 行业维度的能力自评加权得分(0–100),N=42 深度访谈"},
1796
+ {"type": "network", "eyebrow": "05 · 风险与治理", "exhibitNo": "Exhibit 8",
1797
+ "title": "平台组件依赖拓扑:编排层为单点枢纽",
1798
+ "nodes": [["n1", "统一编排"], ["n2", "工具网关"], ["n3", "记忆库"],
1799
+ ["n4", "权限中心"], ["n5", "审计日志"]],
1800
+ "edges": [["n1", "n2"], ["n1", "n3"], ["n1", "n4"], ["n2", "n5"], ["n3", "n5"], ["n4", "n5"]],
1801
+ "soWhat": "编排层连接度最高——它一旦不可用,工具、记忆、权限三条链路同时中断,须优先做冗余。",
1802
+ "footnote": "注:依赖关系取自 9 家规模化企业的平台架构文档(2026-08)"},
1803
+ {"type": "marimekko", "eyebrow": "04 · 落地路径", "exhibitNo": "Exhibit 9",
1804
+ "title": "渠道结构演变:线上占比三年提升 21 个百分点",
1805
+ "unit": "%",
1806
+ "cols": [["2023", 100], ["2024", 130], ["2025", 165]],
1807
+ "cells": [[40, 60], [52, 48], [61, 39]],
1808
+ "legend": ["线上", "线下"],
1809
+ "soWhat": "总量三年增长 65%,线上占比从 40% 升到 61%——线上承载能力已成为规模化的前置条件。",
1810
+ "footnote": "注:列宽 ∝ 当年总规模,列高 = 渠道构成占比"},
1811
+ {"type": "streamgraph", "eyebrow": "07 · 价值阶梯", "exhibitNo": "Exhibit 10",
1812
+ "title": "价值兑现结构演变:副驾协同持续做厚",
1813
+ "labels": ["2023", "2024", "2025", "2026", "2027"],
1814
+ "series": [{"name": "问答检索", "values": [52, 44, 34, 26, 18]},
1815
+ {"name": "副驾协同", "values": [30, 34, 36, 40, 44]},
1816
+ {"name": "端到端交付", "values": [18, 22, 30, 34, 38]}],
1817
+ "soWhat": "问答检索的占比从 52% 降到 18%,价值重心持续向副驾协同与端到端交付迁移。",
1818
+ "footnote": "注:占比为各形态场景数占当年总量;带宽 ∝ 场景数"},
1819
+ # ── 形状通道图表(chart.type 承载;永久回归覆盖 gantt / rose / candlestick)──
1820
+ {"type": "bar", "eyebrow": "01 · 范式与分水岭", "exhibitNo": "Exhibit 11",
1821
+ "title": "实施排期:四阶段串行推进共 18 周",
1822
+ "chart": {"type": "gantt", "labels": ["调研", "设计", "开发", "试点"],
1823
+ "values": [3, 4, 8, 3], "start": [0, 3, 7, 15], "unit": "周"},
1824
+ "soWhat": "开发阶段独占 8 周、占总工期 44%——压缩工期的杠杆在开发,不在调研与设计。",
1825
+ "footnote": "来源:项目排期基线,2026-08;时间轴跨度 = 各阶段「起点 + 时长」最大值(18 周)"},
1826
+ {"type": "bar", "eyebrow": "05 · 风险与治理", "exhibitNo": "Exhibit 12",
1827
+ "title": "能力半径:技术可控一枝独秀",
1828
+ "chart": {"type": "rose", "labels": ["技术可控", "合规完备", "组织就绪", "数据就绪", "经济可行"],
1829
+ "values": [78, 66, 61, 55, 42], "max": 100, "unit": "分"},
1830
+ "soWhat": "技术可控 78 分领先 36 分,而经济可行 42 分垫底——能力建设的短板不在技术,在算得过来账。",
1831
+ "footnote": "注:五维得分来自 42 家访谈企业的能力自评加权(0–100 分),维度定义见参考资料 [1]"},
1832
+ {"type": "bar", "eyebrow": "06 · 行业对标", "exhibitNo": "Exhibit 13",
1833
+ "title": "八期评分波动:区间震荡后温和上行",
1834
+ "chart": {"type": "candlestick", "labels": ["1", "2", "3", "4", "5", "6", "7", "8"],
1835
+ "values": [[44, 62, 38, 58], [58, 66, 50, 54], [54, 60, 41, 47], [47, 55, 44, 52],
1836
+ [52, 71, 48, 68], [68, 74, 60, 63], [63, 69, 55, 58], [58, 76, 56, 73]],
1837
+ "unit": "分"},
1838
+ "soWhat": "八期振幅收窄后连拉两根阳线——就绪度进入温和上行段,治理投入开始显效。",
1839
+ "footnote": "来源:季度就绪度评分序列,2025Q1–2026Q4;单位:分(0–100)"},
1840
+ {"type": "image", "eyebrow": "08 · 现场素材",
1841
+ "title": "三家样板企业的产线现场:同一套护栏,不同业务形态",
1842
+ "lead": "四张现场照并排互证;无图时先出等比例占位,交付前替换 src 即可。",
1843
+ "image": {"layout": "grid", "fit": "cover",
1844
+ "items": [{"placeholder": True, "caption": "制造 · 质检工位"},
1845
+ {"placeholder": True, "caption": "金融 · 风控坐席"},
1846
+ {"placeholder": True, "caption": "互联网 · 研发流水线"},
1847
+ {"placeholder": True, "caption": "制造 · 设备巡检"}],
1848
+ "caption": "图 2–5:现场素材占位(建议 900×675px · 4:3)"},
1849
+ "footnote": "来源:企业走访现场素材,2026-07 至 2026-08[2]"},
1850
+ ],
1851
+ "closing": {"title": "平台化穿越分水岭,分级放量兑现价值",
1852
+ "points": [["平台先行", "统一编排与护栏到位,场景再分层放量。"],
1853
+ ["场景分级", "三重门槛齐备的场景优先,不足两成。"],
1854
+ ["治理闭环", "权限、审计、回退全链路内嵌平台层。"]]},
1855
+ }
1856
+
1857
+ # ══════════════════════════════════════════════════════════════════════════
1858
+ # 内容包 · 信息架构图(architecture)《企业智能体平台总体架构》
1859
+ # ══════════════════════════════════════════════════════════════════════════
1860
+ A_CONTENT = '''<!-- ══ 封面页(架构版) ══ -->
1861
+ <section class="band band--fit">
1862
+ <div class="wrap">
1863
+ <div class="stack gap-5 rv" style="max-width:920px">
1864
+ <div class="row row-wrap" style="gap:var(--sp-3)">
1865
+ <span class="chip chip--accent">方案架构</span>
1866
+ <span class="chip chip--line">评审版</span>
1867
+ </div>
1868
+ <h1 class="t-display">企业智能体平台<br>三层解耦架构</h1>
1869
+ <p class="t-lead" style="max-width:680px">模型、编排、应用三层解耦,统一护栏内让智能体安全地干活。</p>
1870
+ <div class="row row-wrap" style="gap:var(--sp-4)">
1871
+ <span class="chip">分层 × 3</span>
1872
+ <span class="chip">核心节点 × 8</span>
1873
+ <span class="chip">内部资料 · ''' + DATE + '''</span>
1874
+ </div>
1875
+ </div>
1876
+ </div>
1877
+ </section>
1878
+
1879
+ <!-- ══ A1 分层带页(图为王) ══ -->
1880
+ <section class="band band--fit" id="arch1">
1881
+ <div class="wrap">
1882
+ <div class="shead rv">
1883
+ <div class="t-eyebrow">01 · 总体架构</div>
1884
+ <h2 class="t-h1 shead__title">三层解耦:模型、编排、应用各司其职</h2>
1885
+ </div>
1886
+ <div class="arch rv">
1887
+ <div class="arch__layer arch__layer--focus">
1888
+ <div class="arch__lname">应用层</div>
1889
+ <div class="arch__nodes">
1890
+ <div class="arch__node arch__node--accent"><div class="arch__nt">智能客服</div><div class="arch__nd">7×24 自主应答</div></div>
1891
+ <div class="arch__node"><div class="arch__nt">研发副驾</div><div class="arch__nd">代码与知识库操作</div></div>
1892
+ <div class="arch__node"><div class="arch__nt">数据管家</div><div class="arch__nd">口径自动核验</div></div>
1893
+ </div>
1894
+ </div>
1895
+ <div class="arch__conn"><svg width="16" height="20" viewBox="0 0 16 20" fill="none"
1896
+ stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M8 1v14M3 11l5 5 5-5"/></svg></div>
1897
+ <div class="arch__layer">
1898
+ <div class="arch__lname">编排层</div>
1899
+ <div class="arch__nodes">
1900
+ <div class="arch__node"><div class="arch__nt">任务规划</div><div class="arch__nd">目标拆解与分派</div></div>
1901
+ <div class="arch__node"><div class="arch__nt">工具调度</div><div class="arch__nd">千级工具统一注册</div></div>
1902
+ <div class="arch__node"><div class="arch__nt">记忆检索</div><div class="arch__nd">任务级长期记忆</div></div>
1903
+ </div>
1904
+ </div>
1905
+ <div class="arch__conn"><svg width="16" height="20" viewBox="0 0 16 20" fill="none"
1906
+ stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M8 1v14M3 11l5 5 5-5"/></svg></div>
1907
+ <div class="arch__layer">
1908
+ <div class="arch__lname">模型层</div>
1909
+ <div class="arch__nodes">
1910
+ <div class="arch__node"><div class="arch__nt">多模型接入</div><div class="arch__nd">按场景路由</div></div>
1911
+ <div class="arch__node"><div class="arch__nt">统一网关</div><div class="arch__nd">配额与降级</div></div>
1912
+ </div>
1913
+ </div>
1914
+ </div>
1915
+ <div class="arch__legend rv">
1916
+ <span class="chip chip--accent">当前建设焦点</span>
1917
+ <span class="chip">已有能力</span>
1918
+ </div>
1919
+ <div class="t-xs rv" style="margin-top:var(--sp-3);color:var(--text-3)">分层与命名依据 <a class="cite" href="#ref-1">[1]</a></div>
1920
+ </div>
1921
+ </section>
1922
+
1923
+ <!-- ══ A2 泳道页 ══ -->
1924
+ <section class="band band--fit" id="arch2">
1925
+ <div class="wrap">
1926
+ <div class="shead rv">
1927
+ <div class="t-eyebrow">02 · 协作流程</div>
1928
+ <h2 class="t-h1 shead__title">一次任务请求的五步闭环</h2>
1929
+ </div>
1930
+ <div class="stack rv">
1931
+ <div class="lane">
1932
+ <div class="lane__hd">业务方</div>
1933
+ <div class="lane__body">
1934
+ <span class="lane__step">下达目标</span><span class="lane__arr" aria-hidden="true"></span>
1935
+ <span class="lane__step">拆任务</span><span class="lane__arr" aria-hidden="true"></span>
1936
+ <span class="lane__step lane__step--a">人审核</span>
1937
+ </div>
1938
+ </div>
1939
+ <div class="lane">
1940
+ <div class="lane__hd">编排层</div>
1941
+ <div class="lane__body">
1942
+ <span class="lane__step lane__step--a">规划校验</span><span class="lane__arr" aria-hidden="true"></span>
1943
+ <span class="lane__step">工具调用</span><span class="lane__arr" aria-hidden="true"></span>
1944
+ <span class="lane__step">全程留痕</span>
1945
+ </div>
1946
+ </div>
1947
+ <div class="lane">
1948
+ <div class="lane__hd">执行层</div>
1949
+ <div class="lane__body">
1950
+ <span class="lane__step">调用模型</span><span class="lane__arr" aria-hidden="true"></span>
1951
+ <span class="lane__step">产出结果</span><span class="lane__arr" aria-hidden="true"></span>
1952
+ <span class="lane__step">回写记忆</span>
1953
+ </div>
1954
+ </div>
1955
+ </div>
1956
+ <div class="arch__legend rv">
1957
+ <span class="chip chip--accent">关键步骤</span>
1958
+ <span class="chip">常规步骤</span>
1959
+ </div>
1960
+ </div>
1961
+ </section>
1962
+
1963
+ <!-- ══ A3 管线页(全宽 SVG) ══ -->
1964
+ <section class="band band--fit" id="arch3">
1965
+ <div class="wrap">
1966
+ <div class="shead rv">
1967
+ <div class="t-eyebrow">03 · 端到端链路</div>
1968
+ <h2 class="t-h1 shead__title">请求到交付:五段管线全程可审计</h2>
1969
+ </div>
1970
+ <figure class="fig fig--full rv">
1971
+ <svg class="chart" data-chart="gantt" viewBox="0 0 900 240" style="width:100%">
1972
+ <rect data-anim="fade" x="20" y="80" width="150" height="52" rx="10" class="f-acc"/>
1973
+ <text x="95" y="103" text-anchor="middle" class="t-on-inv" font-size="14" font-weight="600">受理</text>
1974
+ <text x="95" y="122" text-anchor="middle" class="t-on-inv" font-size="11">目标与约束</text>
1975
+ <path d="M170 106 L200 106" class="s-txt3" stroke-width="2" stroke-dasharray="4 4"/>
1976
+ <polygon points="200,101 210,106 200,111" class="f-txt3"/>
1977
+ <rect data-anim="fade" x="210" y="80" width="150" height="52" rx="10" class="f-s2"/>
1978
+ <text x="285" y="103" text-anchor="middle" class="f-txt" font-size="14" font-weight="600">规划</text>
1979
+ <text x="285" y="122" text-anchor="middle" class="f-txt3" font-size="11">任务拆解</text>
1980
+ <path d="M360 106 L390 106" class="s-txt3" stroke-width="2" stroke-dasharray="4 4"/>
1981
+ <polygon points="390,101 400,106 390,111" class="f-txt3"/>
1982
+ <rect data-anim="fade" x="400" y="80" width="150" height="52" rx="10" class="f-s2"/>
1983
+ <text x="475" y="103" text-anchor="middle" class="f-txt" font-size="14" font-weight="600">执行</text>
1984
+ <text x="475" y="122" text-anchor="middle" class="f-txt3" font-size="11">工具调用</text>
1985
+ <path d="M550 106 L580 106" class="s-txt3" stroke-width="2" stroke-dasharray="4 4"/>
1986
+ <polygon points="580,101 590,106 580,111" class="f-txt3"/>
1987
+ <rect data-anim="fade" x="590" y="80" width="150" height="52" rx="10" class="f-s2"/>
1988
+ <text x="665" y="103" text-anchor="middle" class="f-txt" font-size="14" font-weight="600">核验</text>
1989
+ <text x="665" y="122" text-anchor="middle" class="f-txt3" font-size="11">护栏与审计</text>
1990
+ <path d="M740 106 L770 106" class="s-txt3" stroke-width="2" stroke-dasharray="4 4"/>
1991
+ <polygon points="770,101 780,106 770,111" class="f-txt3"/>
1992
+ <rect data-anim="fade" x="780" y="80" width="100" height="52" rx="10" class="f-acc"/>
1993
+ <text x="830" y="103" text-anchor="middle" class="t-on-inv" font-size="14" font-weight="600">交付</text>
1994
+ <text x="830" y="122" text-anchor="middle" class="t-on-inv" font-size="11">回写记忆</text>
1995
+ </svg>
1996
+ <figcaption class="fig__cap" style="margin-top:var(--sp-4)">数据全链路:五段管线,每段留痕可回溯</figcaption>
1997
+ </figure>
1998
+ </div>
1999
+ </section>
2000
+
2001
+ <!-- ══ 金字塔页(pyramid):平台建设的三级递进 ══ -->
2002
+ <section class="band band--fit" id="arch4">
2003
+ <div class="wrap">
2004
+ <div class="shead rv">
2005
+ <div class="t-eyebrow">04 · 建设递进</div>
2006
+ <h2 class="t-h1 shead__title">三级递进:先接得进来,再管得住,最后放得开</h2>
2007
+ </div>
2008
+ <div class="pyr rv">
2009
+ <div class="pyr__lvl" style="--w:46%">
2010
+ <div class="pyr__t">放得开</div>
2011
+ <div class="pyr__d">自动执行</div>
2012
+ </div>
2013
+ <div class="pyr__lvl pyr__lvl--a" style="--w:72%">
2014
+ <div class="pyr__t">管得住</div>
2015
+ <div class="pyr__d">权限、审计、回退内嵌平台层(当前焦点)</div>
2016
+ </div>
2017
+ <div class="pyr__lvl" style="--w:100%">
2018
+ <div class="pyr__t">接得进来</div>
2019
+ <div class="pyr__d">统一编排收敛工具、记忆与模型接入</div>
2020
+ </div>
2021
+ </div>
2022
+ <div class="t-xs rv" style="margin-top:var(--sp-5);color:var(--text-3)">递进依据:节点命名与分层口径见 <a class="cite" href="#ref-1">[1]</a></div>
2023
+ </div>
2024
+ </section>
2025
+
2026
+ <!-- ══ 收尾页(极简) ══ -->
2027
+ <section class="band band--accent band--fit" id="next">
2028
+ <div class="wrap">
2029
+ <div class="shead shead--center rv">
2030
+ <div class="t-eyebrow">结论</div>
2031
+ <h2 class="t-h1 shead__title">让智能体在护栏内真正干活</h2>
2032
+ <p class="t-lead shead__desc">三层解耦 + 统一编排 + 全程审计。</p>
2033
+ </div>
2034
+ <div class="row row-wrap rv" style="justify-content:center;gap:var(--sp-4);margin-top:var(--sp-5)">
2035
+ <span class="chip chip--accent">三层解耦</span>
2036
+ <span class="chip" style="background:color-mix(in srgb,var(--surface) 10%,transparent)">统一护栏</span>
2037
+ <span class="chip" style="background:color-mix(in srgb,var(--surface) 10%,transparent)">全程留痕</span>
2038
+ </div>
2039
+ <div class="row" style="justify-content:center;gap:var(--sp-3);margin-top:clamp(28px,3.4vh,44px)">
2040
+ <a class="btn btn--primary" href="#arch1">返回看图</a>
2041
+ </div>
2042
+ </div>
2043
+ </section>
2044
+
2045
+ <!-- ══ 参考资料 ══ -->
2046
+ <section class="band band--tint" id="refs">
2047
+ <div class="wrap">
2048
+ <div class="shead rv">
2049
+ <div class="t-eyebrow">参考资料</div>
2050
+ <h2 class="t-h1 shead__title">依据与口径说明</h2>
2051
+ </div>
2052
+ <div class="tbl-wrap rv">
2053
+ <table>
2054
+ <thead><tr><th style="width:6%">编号</th><th style="width:26%">来源</th>
2055
+ <th style="width:14%">时间</th><th>口径说明</th></tr></thead>
2056
+ <tbody>
2057
+ <tr id="ref-1"><td class="k">[1]</td>
2058
+ <td><a class="ref-link" href="https://example.com/agent-platform-whitepaper" target="_blank" rel="noopener">企业智能体平台架构白皮书(内部)
2059
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><path d="M15 3h6v6M10 14 21 3"/></svg></a></td>
2060
+ <td>2026-08</td><td>分层与节点命名依据</td></tr>
2061
+ </tbody>
2062
+ </table>
2063
+ </div>
2064
+ </div>
2065
+ </section>
2066
+
2067
+ <!-- ══ 页脚 ══ -->
2068
+ <footer class="foot">
2069
+ <div class="wrap foot__in">
2070
+ <div class="brand">
2071
+ <div class="brand__mark">AI</div>
2072
+ <div class="brand__txt">
2073
+ <div class="brand__title">企业智能体平台总体架构</div>
2074
+ <div class="brand__sub">方案架构 · ''' + DATE + '''</div>
2075
+ </div>
2076
+ </div>
2077
+ <div class="t-xs">内部资料 · 请勿外传</div>
2078
+ </div>
2079
+ </footer>'''
2080
+
2081
+ A_MODEL = {
2082
+ "mode": "architecture", "style": "graphite-dark",
2083
+ "title": "企业智能体平台总体架构",
2084
+ "subtitle": "三层解耦 · 统一护栏",
2085
+ "meta": "方案评审材料 · " + DATE,
2086
+ "sections": [
2087
+ {"type": "diagram", "eyebrow": "01 · 总体架构", "title": "三层解耦:模型、编排、应用各司其职",
2088
+ "layers": [["应用层", [{"t": "智能客服", "d": "7×24 自主应答", "accent": True},
2089
+ {"t": "研发副驾", "d": "代码与知识库操作"},
2090
+ {"t": "数据管家", "d": "口径自动核验"}], "focus"],
2091
+ ["编排层", [{"t": "任务规划", "d": "目标拆解与分派"},
2092
+ {"t": "工具调度", "d": "千级工具统一注册"},
2093
+ {"t": "记忆检索", "d": "任务级长期记忆"}]],
2094
+ ["模型层", [{"t": "多模型接入", "d": "按场景路由"},
2095
+ {"t": "统一网关", "d": "配额与降级"}]]],
2096
+ "legend": ["当前建设焦点", "已有能力"]},
2097
+ {"type": "lane", "eyebrow": "02 · 协作流程", "title": "一次任务请求的五步闭环",
2098
+ "lanes": [["业务方", ["下达目标", "拆任务", {"t": "人审核", "accent": True}]],
2099
+ ["编排层", [{"t": "规划校验", "accent": True}, "工具调用", "全程留痕"]],
2100
+ ["执行层", ["调用模型", "产出结果", "回写记忆"]]]},
2101
+ {"type": "lane", "eyebrow": "03 · 端到端链路", "title": "请求到交付:五段管线全程可审计",
2102
+ "lanes": [["数据流", [{"t": "受理", "accent": True}, "规划", "执行", "核验", {"t": "交付", "accent": True}]]]},
2103
+ {"type": "pyramid", "eyebrow": "04 · 建设递进", "title": "三级递进:先接得进来,再管得住,最后放得开",
2104
+ "levels": [["放得开", "自动执行"],
2105
+ {"t": "管得住", "d": "权限、审计、回退内嵌平台层(当前焦点)", "accent": True},
2106
+ ["接得进来", "统一编排收敛工具、记忆与模型接入"]],
2107
+ "footnote": "递进依据:节点命名与分层口径见[1]"},
2108
+ ],
2109
+ "closing": {"title": "让智能体在护栏内真正干活",
2110
+ "points": [["三层解耦", "模型 / 编排 / 应用各司其职"],
2111
+ ["统一护栏", "权限与审计内嵌每一层"],
2112
+ ["全程留痕", "每段管线可回溯可回退"]]},
2113
+ }
2114
+
2115
+ # ══════════════════════════════════════════════════════════════════════════
2116
+ # 示例矩阵定义
2117
+ # ══════════════════════════════════════════════════════════════════════════
2118
+ EXAMPLES = [
2119
+ # presentation × 2
2120
+ dict(mode='presentation', style='business-blue',
2121
+ fname=f'{DATE}-presentation-business-blue.html',
2122
+ title_tag='AI 智能体:从工具到同事 · TopPPT HTML 演示模式样例',
2123
+ nav_swaps=[('>章节一</a>', '>范式跃迁</a>'), ('>章节二</a>', '>形态边界</a>')],
2124
+ content=P_CONTENT, model=P_MODEL,
2125
+ probes=['id="agenda"', 'data-chart="donut"', 'data-chart="bar"', 'class="cite"',
2126
+ 'class="steps', 'class="bul', 'band--accent',
2127
+ 'class="media media--r3-1 media--ph', 'class="media__ph']),
2128
+ dict(mode='presentation', style='apple-mono',
2129
+ fname=f'{DATE}-presentation-apple-mono.html',
2130
+ title_tag='AI 智能体:从工具到同事 · TopPPT HTML 演示模式样例(优雅黑白)',
2131
+ nav_swaps=[('>章节一</a>', '>范式跃迁</a>'), ('>章节二</a>', '>形态边界</a>')],
2132
+ content=P_CONTENT, model=P_MODEL,
2133
+ probes=['id="agenda"', 'data-chart="donut"', 'data-chart="bar"', 'class="cite"',
2134
+ 'class="steps', 'class="bul', 'band--accent',
2135
+ 'class="media media--r3-1 media--ph', 'class="media__ph']),
2136
+ dict(mode='presentation', style='brand-red',
2137
+ fname=f'{DATE}-presentation-brand-red.html',
2138
+ title_tag='AI 智能体:从工具到同事 · TopPPT HTML 演示模式样例(品牌红)',
2139
+ nav_swaps=[('>章节一</a>', '>范式跃迁</a>'), ('>章节二</a>', '>形态边界</a>')],
2140
+ content=P_CONTENT, model=P_MODEL,
2141
+ probes=['id="agenda"', 'data-chart="donut"', 'data-chart="bar"', 'class="cite"',
2142
+ 'class="steps', 'class="bul', 'band--accent',
2143
+ 'class="media media--r3-1 media--ph', 'class="media__ph']),
2144
+ # research × 3
2145
+ dict(mode='research', style='mckinsey',
2146
+ fname=f'{DATE}-research-mckinsey.html',
2147
+ title_tag='2026 AI 智能体发展研究报告 · TopPPT HTML 研究模式样例',
2148
+ nav_swaps=[('>章节一</a>', '>范式分水岭</a>'), ('>章节二</a>', '>形态边界</a>')],
2149
+ content=R_CONTENT, model=R_MODEL,
2150
+ probes=['class="exhibit__no"', 'class="cols-2', 'class="cols-3', 'g-half',
2151
+ 'class="matrix__grid"', 'class="sowhat', 'id="refs"',
2152
+ 'class="heat', 'class="pyr', 'class="flagbar', 'class="tbd', 'band--accent',
2153
+ 'data-chart="waterfall"', 'data-chart="sankey"', 'data-chart="treemap"',
2154
+ 'data-chart="boxplot"', 'data-chart="network"', 'data-chart="marimekko"',
2155
+ 'data-chart="streamgraph"', 'data-chart="gantt"', 'data-chart="rose"',
2156
+ 'data-chart="candlestick"',
2157
+ 'class="media-grid media-grid--4', 'class="media media--r4-3 media--ph']),
2158
+ dict(mode='research', style='deep-teal',
2159
+ fname=f'{DATE}-research-deep-teal.html',
2160
+ title_tag='2026 AI 智能体发展研究报告 · TopPPT HTML 研究模式样例(墨绿)',
2161
+ nav_swaps=[('>章节一</a>', '>范式分水岭</a>'), ('>章节二</a>', '>形态边界</a>')],
2162
+ content=R_CONTENT, model=R_MODEL,
2163
+ probes=['class="exhibit__no"', 'class="cols-2', 'class="cols-3', 'g-half',
2164
+ 'class="matrix__grid"', 'class="sowhat', 'id="refs"',
2165
+ 'class="heat', 'class="pyr', 'class="flagbar', 'class="tbd', 'band--accent',
2166
+ 'data-chart="waterfall"', 'data-chart="sankey"', 'data-chart="treemap"',
2167
+ 'data-chart="boxplot"', 'data-chart="network"', 'data-chart="marimekko"',
2168
+ 'data-chart="streamgraph"', 'data-chart="gantt"', 'data-chart="rose"',
2169
+ 'data-chart="candlestick"',
2170
+ 'class="media-grid media-grid--4', 'class="media media--r4-3 media--ph']),
2171
+ dict(mode='research', style='warm-sand',
2172
+ fname=f'{DATE}-research-warm-sand.html',
2173
+ title_tag='2026 AI 智能体发展研究报告 · TopPPT HTML 研究模式样例(暖沙金)',
2174
+ nav_swaps=[('>章节一</a>', '>范式分水岭</a>'), ('>章节二</a>', '>形态边界</a>')],
2175
+ content=R_CONTENT, model=R_MODEL,
2176
+ probes=['class="exhibit__no"', 'class="cols-2', 'class="cols-3', 'g-half',
2177
+ 'class="matrix__grid"', 'class="sowhat', 'id="refs"',
2178
+ 'class="heat', 'class="pyr', 'class="flagbar', 'class="tbd', 'band--accent',
2179
+ 'data-chart="waterfall"', 'data-chart="sankey"', 'data-chart="treemap"',
2180
+ 'data-chart="boxplot"', 'data-chart="network"', 'data-chart="marimekko"',
2181
+ 'data-chart="streamgraph"', 'data-chart="gantt"', 'data-chart="rose"',
2182
+ 'data-chart="candlestick"',
2183
+ 'class="media-grid media-grid--4', 'class="media media--r4-3 media--ph']),
2184
+ dict(mode='research', style='indigo-violet',
2185
+ fname=f'{DATE}-research-indigo-violet.html',
2186
+ title_tag='2026 AI 智能体发展研究报告 · TopPPT HTML 研究模式样例(靛紫)',
2187
+ nav_swaps=[('>章节一</a>', '>范式分水岭</a>'), ('>章节二</a>', '>形态边界</a>')],
2188
+ content=R_CONTENT, model=R_MODEL,
2189
+ probes=['class="exhibit__no"', 'class="cols-2', 'class="cols-3', 'g-half',
2190
+ 'class="matrix__grid"', 'class="sowhat', 'id="refs"',
2191
+ 'class="heat', 'class="pyr', 'class="flagbar', 'class="tbd', 'band--accent',
2192
+ 'data-chart="waterfall"', 'data-chart="sankey"', 'data-chart="treemap"',
2193
+ 'data-chart="boxplot"', 'data-chart="network"', 'data-chart="marimekko"',
2194
+ 'data-chart="streamgraph"', 'data-chart="gantt"', 'data-chart="rose"',
2195
+ 'data-chart="candlestick"',
2196
+ 'class="media-grid media-grid--4', 'class="media media--r4-3 media--ph']),
2197
+ # architecture × 2(graphite 出厂 dark · 深色优先;spectrum light)
2198
+ dict(mode='architecture', style='graphite-dark', theme='dark',
2199
+ fname=f'{DATE}-architecture-graphite-dark.html',
2200
+ title_tag='企业智能体平台总体架构 · TopPPT HTML 架构模式样例(石墨深灰 · 深色优先)',
2201
+ nav_swaps=[],
2202
+ content=A_CONTENT, model=A_MODEL,
2203
+ probes=['class="arch__layer', 'class="lane__step', 'data-chart="gantt"', 'id="refs"',
2204
+ 'class="pyr', 'band--accent',
2205
+ 'data-mode="architecture" data-style="graphite-dark" data-theme="dark"']),
2206
+ dict(mode='architecture', style='spectrum', theme='light',
2207
+ fname=f'{DATE}-architecture-spectrum.html',
2208
+ title_tag='企业智能体平台总体架构 · TopPPT HTML 架构模式样例(彩色)',
2209
+ nav_swaps=[],
2210
+ content=A_CONTENT, model=A_MODEL,
2211
+ probes=['class="arch__layer', 'class="lane__step', 'data-chart="gantt"', 'id="refs"',
2212
+ 'class="pyr', 'band--accent',
2213
+ 'data-mode="architecture" data-style="spectrum" data-theme="light"']),
2214
+ ]
2215
+
2216
+ TPL_DEFAULT_STYLE = {'presentation': 'business-blue', 'research': 'mckinsey',
2217
+ 'architecture': 'graphite-dark'}
2218
+ TPL_TITLE_TAG = {'presentation': '报告标题', 'research': '研究报告标题', 'architecture': '架构标题'}
2219
+ TPL_BRAND = {
2220
+ 'presentation': [('主标题', 'AI 智能体发展研究'), ('副标题 / 专题名', '从工具到同事')],
2221
+ 'research': [('报告标题', 'AI 智能体发展研究'), ('研究报告 · 专题名', '2026 年度研究报告')],
2222
+ 'architecture': [('架构标题', '智能体平台架构'), ('方案架构 · 专题名', '三层解耦 · 统一护栏')],
2223
+ }
2224
+
2225
+
2226
+ def build(ex):
2227
+ mode, style, fname = ex['mode'], ex['style'], ex['fname']
2228
+ tpl_path = TPL / f'{mode}.html'
2229
+ t = tpl_path.read_text(encoding='utf-8')
2230
+
2231
+ # 风格 / 标题 / 品牌 / 导航(均为首次出现替换;html 标签在各标记块之前)
2232
+ t = t.replace(f'data-style="{TPL_DEFAULT_STYLE[mode]}"', f'data-style="{style}"', 1)
2233
+ # 主题(architecture 模板出厂 dark;ex['theme'] 指定该示例的实际出厂主题)
2234
+ theme = ex.get('theme')
2235
+ if theme:
2236
+ t = re.sub(r'(<html[^>]*data-theme=")[^"]*(")', r'\g<1>' + theme + r'\g<2>', t, count=1)
2237
+ assert f'data-mode="{mode}" data-style="{style}" data-theme="{theme}"' in t, \
2238
+ f'{fname}: 主题注入失败(期望 {theme})'
2239
+ t = t.replace(f'<title>{TPL_TITLE_TAG[mode]}</title>', f'<title>{ex["title_tag"]}</title>', 1)
2240
+ for old, new in TPL_BRAND[mode]:
2241
+ t = t.replace(f'>{old}</div>', f'>{new}</div>', 1)
2242
+ for old, new in ex['nav_swaps']:
2243
+ t = t.replace(old, new, 1)
2244
+
2245
+ # 内容区整体替换(非贪婪 + 前置存在断言,防静默截断)
2246
+ assert CONTENT_RE.search(t), f'{tpl_path.name} 缺少 __TOPPPT_CONTENT__ 标记'
2247
+ t = CONTENT_RE.sub('<!-- __TOPPPT_CONTENT_START__ -->\n' + ex['content'] +
2248
+ '\n<!-- __TOPPPT_CONTENT_END__ -->', t, count=1)
2249
+ for probe in ex['probes']:
2250
+ assert probe in t, f'{fname}: 内容注入后缺少关键组件 {probe}'
2251
+
2252
+ # 模型注入(与正文同步;严格 JSON)
2253
+ assert MODEL_RE.search(t), f'{tpl_path.name} 缺少 REPORT_MODEL 块'
2254
+ model = dict(ex['model'])
2255
+ model['style'] = style
2256
+ model['theme'] = ex.get('theme', 'light') # 模型与页面 data-theme 同步(PPTX 按此导出亮/暗版)
2257
+ t = MODEL_RE.sub('window.REPORT_MODEL = ' +
2258
+ json.dumps(model, ensure_ascii=False, indent=2) + ';', t, count=1)
2259
+ # 注入后完整性断言:模型 mode 与 data-mode 一致 + 预览运行时 API 未被截断
2260
+ assert f'"mode": "{mode}"' in t and f'data-mode="{mode}"' in t, f'{fname}: mode 不一致'
2261
+ assert 'g.TopPptHtml = api' in t and 'function slidesXml' in t, f'{fname}: 预览运行时缺失'
2262
+
2263
+ (OUT / fname).write_text(t, encoding='utf-8')
2264
+ print(f'written: {fname} {len(t)} chars ({mode} x {style})')
2265
+
2266
+
2267
+ def main():
2268
+ OUT.mkdir(exist_ok=True)
2269
+ for ex in EXAMPLES:
2270
+ build(ex)
2271
+ print(f'完成:三模式示例矩阵(AI 智能体主题,{len(EXAMPLES)} 个)已刷新到 {OUT}')
2272
+ print('下一步回归:validate_report -> extract_model -> build_pptx -> validate_pptx --strict --model')
2273
+
2274
+
2275
+ if __name__ == '__main__':
2276
+ main()