arcadiasuite/server/modules/openclaw/examples/skills/morning-briefing.md

112 lines
2.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 晨间简报技能
## 描述
每天早晨自动推送个性化的晨间简报,包括天气、日程、新闻等信息。
## 触发条件
- 用户说 "早安" 或 "晨间简报" 或 "今日概览"
- 每天早上 07:30 自动触发
## 执行步骤
1. 获取当地天气信息
2. 读取今日日程安排
3. 汇总重要新闻摘要
4. 检查未读消息和提醒
5. 生成励志语录
## 输出格式
```
☀️ 早安,{user_name}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🌤️ 今日天气
{城市}: {天气状况} {温度}
{穿衣建议}
📅 今日日程
{日程列表}
📰 新闻摘要
{3-5条重要新闻}
📬 待处理
{未读消息和提醒}
💭 今日寄语
"{励志语录}"
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
祝你有美好的一天!🌟
```
## 示例
**输入**: 自动触发07:30
**输出**:
```
☀️ 早安,主人!
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🌤️ 今日天气
上海: 多云转晴 8°C ~ 15°C
建议穿着:薄外套,早晚温差大,注意保暖
📅 今日日程
• 09:00 - 团队晨会 (会议室A)
• 10:30 - 与张经理 1:1
• 14:00 - 产品评审会
• 16:00 - 代码审查
📰 新闻摘要
• 🔵 科技:苹果发布新款 MacBook Pro
• 🟢 财经:央行维持利率不变
• 🔴 国际G20峰会今日开幕
📬 待处理
• 2 封未读邮件
• 1 条 Slack 消息
• 提醒下午3点吃药
💭 今日寄语
"每一个清晨,都是新的开始。"
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
祝你有美好的一天!🌟
```
## 配置选项
```yaml
skills:
morning-briefing:
enabled: true
schedule: "30 7 * * *" # 每天 07:30 触发
timezone: "Asia/Shanghai"
weather:
enabled: true
city: "Shanghai"
api_key: "your-weather-api-key"
news:
enabled: true
sources:
- "tech"
- "finance"
- "world"
max_items: 5
calendar:
enabled: true
provider: "google" # google/outlook/ical
channels:
- telegram
```
## 依赖
- 天气 API可选OpenWeatherMap 或类似服务
- 日历集成可选Google Calendar / Outlook
- 新闻 API可选NewsAPI 或 RSS 源