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

@@ -11,6 +11,7 @@ description: MSN 天气 API 详细知识
|------|-----|
| 当前天气 | `https://assets.msn.cn/service/weather/current` |
| 每日预报 | `https://assets.msn.cn/service/weather/dailyforecast` |
| 逐小时预报 | `https://assets.msn.cn/service/weather/hourlyforecast` |
## 必须参数
@@ -21,7 +22,7 @@ description: MSN 天气 API 详细知识
## 可选参数
- `days`: 预报天数(最大 10
- `days`: 预报天数(最大 10,仅 dailyforecast 和 hourlyforecast 可用
## 必须请求头
@@ -49,6 +50,32 @@ value[].responses[].weather[].days[].daily.{
}
```
### hourlyforecast 接口
返回未来 10 天每天逐小时预报(今天从当前小时开始,后续每天 24 个点)。
```
value[].responses[].weather[].days[].hourly[].{
valid, // ISO 时间戳,如 "2026-05-11T07:00:00+08:00"
temp, // 温度 °C
feels, // 体感温度 °C
cap, // 天气描述(中文)
precip, // 降水概率 %
rh, // 相对湿度 %
baro, // 气压 hPa
windSpd, // 风速 km/h
windDir, // 风向(度)
windGust, // 阵风 km/h
uv, // 紫外线指数
cloudCover, // 云量 %
vis, // 能见度 km
dewPt, // 露点 °C
rainAmount, // 降雨量 mm
snowAmount, // 降雪量 mm
icon, symbol, // 天气图标代码
sky, wx // 天空状况代码
}
```
## 注意事项
- 数据源为微软 MSN 天气后台接口
- 国内访问速度快msn.cn 国内节点)