@@ -18,6 +18,9 @@ Agent 框架和编排工具的模式分析。
1818| [ WebSocket 流式支持] ( ./streaming/websocket-streaming-support.md ) | WebSocket 流式设计模式 | P2 |
1919| [ AgentScope 实时语音] ( ./streaming/realtime-voice-agentscope.md ) | 统一事件驱动模型、多模型适配、语音聊天室广播机制 | P0 |
2020| [ Codex 流式处理] ( ./streaming/codex-streaming.md ) | WebSocket 实时对话、SSE 回退、增量请求优化 | P1 |
21+ | [ LiveKit Agents 双工管道] ( ./streaming/livekit-agents-duplex-pipeline.md ) | ASR→LLM→TTS 级联管道、打断处理、抢占生成、动态端点检测 | P0 |
22+ | [ FlushSentinel 与 PREFLIGHT 抢占机制] ( ./streaming/livekit-agents-preflight-flushsentinel.md ) | FlushSentinel 分段合成、PREFLIGHT 意图预判、抢占生成生命周期、EOU 检测 | P0 |
23+ | [ 实时语音对比] ( ./streaming/agentscope-realtime-vs-kosong.md ) | AgentScope 实时语音与 Kosong 方案对比 | P2 |
2124
2225### [ 错误处理] ( ./error-handling/ )
2326
@@ -72,6 +75,7 @@ Agent 框架和编排工具的模式分析。
7275| [ Republic Anchor 机制] ( ./architecture/republic-anchor-mechanism.md ) | Tape Anchor 上下文切片实现 | P2 |
7376| [ OpenClaw Opik 可观测性插件架构] ( ./architecture/openclaw-opik-observability-plugin.md ) | 事件投影式 tracing:hook、状态聚合、延迟 finalize、附件旁路上传 | P1 |
7477| [ Codex LLM 抽象层] ( ./architecture/codex-llm-abstraction.md ) | ModelClient/Session 设计、WebSocket 预热、流式回退 | P1 |
78+ | [ Slate 架构] ( ./architecture/slate-architecture.md ) | Slate 架构设计分析 | P2 |
7579
7680### [ 抽象层] ( ./abstractions/ )
7781
@@ -99,6 +103,15 @@ WebSocket 协议比较。
99103| ------| ------| --------|
100104| [ 分层运动系统] ( ./robotics/layered-motion-system.md ) | 主要动作与次要偏移的融合架构、100Hz 控制循环、线程安全状态管理 | P0 |
101105| [ 机器人情绪系统设计] ( ./robotics/emotion-system-design.md ) | 情绪/舞蹈/呼吸状态切换、语音同步摆动、产品鲜活感设计考量 | P0 |
106+ | [ Dimensional OS 架构] ( ./robotics/dimensional-os-architecture.md ) | Dimensional OS 机器人架构分析 | P2 |
107+
108+ ### [ Slate] ( ./ )
109+
110+ Slate 架构相关。
111+
112+ | 文档 | 描述 | 优先级 |
113+ | ------| ------| --------|
114+ | [ Slate 架构] ( ./slate-architecture.md ) | Slate 架构设计分析 | P2 |
102115
103116---
104117
@@ -111,6 +124,8 @@ WebSocket 协议比较。
111124| P0 | [ 分层运动系统] ( ./robotics/layered-motion-system.md ) | 机器人控制 |
112125| P0 | [ 机器人情绪系统设计] ( ./robotics/emotion-system-design.md ) | 机器人情绪 |
113126| P0 | [ AgentScope 实时语音] ( ./streaming/realtime-voice-agentscope.md ) | 实时交互 |
127+ | P0 | [ LiveKit Agents 双工管道] ( ./streaming/livekit-agents-duplex-pipeline.md ) | 实时语音管道 |
128+ | P0 | [ FlushSentinel 与 PREFLIGHT 抢占机制] ( ./streaming/livekit-agents-preflight-flushsentinel.md ) | 低延迟优化机制 |
114129| P1 | [ 结构化错误与重试] ( ./error-handling/structured-errors-retry.md ) | 生产健壮性 |
115130| P1 | [ 流式工具组装] ( ./streaming/streaming-tool-assembly.md ) | 流式处理 |
116131| P1 | [ Codex LLM 抽象层] ( ./architecture/codex-llm-abstraction.md ) | 架构设计 |
@@ -120,6 +135,19 @@ WebSocket 协议比较。
120135| P2 | [ 上下文管理双模式] ( ./context-management/context-management-dual-mode.md ) | 状态管理 |
121136| P2 | [ 中间件/回调系统] ( ./middleware/middleware-callback-system.md ) | 可扩展性 |
122137| P2 | [ 状态快照并发] ( ./concurrency/state-snapshot-concurrency.md ) | 并发 |
138+ | P2 | [ Kimi CLI 架构] ( ./architecture/kimi-cli-architecture.md ) | 架构设计 |
139+ | P2 | [ Republic Anchor 机制] ( ./architecture/republic-anchor-mechanism.md ) | 上下文切片 |
140+ | P2 | [ 流式比较] ( ./streaming/streaming-comparison.md ) | 流式对比 |
141+ | P2 | [ WebSocket 流式支持] ( ./streaming/websocket-streaming-support.md ) | WebSocket |
142+ | P2 | [ OpenAI WebSocket 比较] ( ./websocket/openai-websocket-comparison.md ) | WebSocket |
143+ | P2 | [ LLM 抽象比较] ( ./abstractions/llm-abstraction-comparison.md ) | 抽象设计 |
144+ | P2 | [ LLM 调用返回封装] ( ./abstractions/llm-call-return-encapsulation.md ) | SDK 模式 |
145+ | P2 | [ LLM 框架比较] ( ./abstractions/llm-framework-comparison.md ) | 框架对比 |
146+ | P2 | [ 上下文转换比较] ( ./context-management/context-transformation-comparison.md ) | 上下文转换 |
147+ | P2 | [ 会话历史管理] ( ./context-management/session-history-management.md ) | 会话管理 |
148+ | P2 | [ Slate 架构] ( ./slate-architecture.md ) | 架构 |
149+ | P2 | [ Dimensional OS 架构] ( ./robotics/dimensional-os-architecture.md ) | 机器人架构 |
150+ | P2 | [ 实时语音对比] ( ./streaming/agentscope-realtime-vs-kosong.md ) | 实时语音对比 |
123151
124152---
125153
@@ -134,4 +162,4 @@ WebSocket 协议比较。
134162
135163---
136164
137- * 最后更新:2026-03-10 *
165+ * 最后更新:2026-03-21 *
0 commit comments