docs: 会议室架构规划 + MSN hourlyforecast 端点更新
- 新增 docs/会议室架构计划书.md 完整架构方案(主持者+子Agent+task+cache+记忆) - 更新 taolun.md 追加 2026-05-11 讨论历史 - 更新 AGENTS.md 规范(type, cache 字段) - 更新 architecture.md 后续演进章节 - 更新 changelog.md 架构规划里程碑 - 修复 MSN 天气接口文档:新增 hourlyforecast,标记 weathertrends 已失效 - 更新 skills/msn-weather-api/SKILL.md 新增 hourlyforecast 端点 - 更新 agents/weather-agent.md 支持逐小时查询
This commit is contained in:
@@ -69,15 +69,47 @@ pkg/
|
||||
| geocode | 城市名 → 坐标 | Go(调 wttr.in) |
|
||||
| read-file | 读取文件 | Go |
|
||||
|
||||
## 当前 tools
|
||||
|
||||
| 工具名 | 作用 | 实现 |
|
||||
|--------|------|------|
|
||||
| http-get | HTTP GET 请求 | Go |
|
||||
| skill | 按需加载知识 | Go |
|
||||
| geocode | 城市名 → 坐标 | Go(调 wttr.in) |
|
||||
| read-file | 读取文件 | Go |
|
||||
| task | 调度子 Agent(含缓存管理) | Go(阶段一新增) |
|
||||
| memory.read | 读长期记忆 | Go(阶段一新增) |
|
||||
| memory.write | 写长期记忆 | Go(阶段一新增) |
|
||||
|
||||
## 后续演进
|
||||
|
||||
### 当前(单 Agent)
|
||||
```
|
||||
云枢·Agent (三层分离+单agent)
|
||||
↓
|
||||
河虾 claw (三层分离+主-从)
|
||||
├─ master: 意图识别+任务分发
|
||||
├─ weather-subagent
|
||||
├─ tts-subagent
|
||||
├─ asr-subagent
|
||||
└─ ...更多 subagent
|
||||
yunshu (三层分离+单agent)
|
||||
└─ weather-agent.md (type: main,既是入口也是天气专家)
|
||||
```
|
||||
|
||||
### 阶段一(会议室架构基础)
|
||||
```
|
||||
yunshu (会议室架构)
|
||||
├── dialog-agent.md (type: main,入口+调度)
|
||||
├── weather-sub.md (type: sub,天气领域)
|
||||
├── memory-sub.md (type: sub,记忆管理)
|
||||
└── narrator-sub.md (type: sub,汇报员,成熟期)
|
||||
```
|
||||
|
||||
### 阶段二(多领域扩展)→ 河虾 Claw
|
||||
```
|
||||
yunshu / hxclaw (多领域主-从)
|
||||
├── dialog-agent.md (type: main,入口+调度)
|
||||
├── weather-sub.md (type: sub,天气)
|
||||
├── earthquake-sub.md (type: sub,地震)
|
||||
├── volcano-sub.md (type: sub,火山)
|
||||
├── nuclear-sub.md (type: sub,核电监测)
|
||||
├── memory-sub.md (type: sub,记忆)
|
||||
└── narrator-sub.md (type: sub,汇报)
|
||||
```
|
||||
|
||||
## 架构文档
|
||||
|
||||
详细架构计划见 `docs/会议室架构计划书.md`。
|
||||
|
||||
Reference in New Issue
Block a user