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:
titor
2026-05-11 08:32:30 +08:00
parent ab6ec38cec
commit 0898188086
8 changed files with 774 additions and 26 deletions

View File

@@ -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`