You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.6 KiB
77 lines
1.6 KiB
|
4 weeks ago
|
# Daily Horoscope & Fortune 技能
|
||
|
|
|
||
|
|
## 功能说明
|
||
|
|
|
||
|
|
为桐哥 Agent 提供每日运势推送功能,包括:
|
||
|
|
- ✅ 十二星座次日运势搜索
|
||
|
|
- ✅ 黄历宜忌查询
|
||
|
|
- ✅ 八字命理分析(结合用户生辰)
|
||
|
|
- ✅ 趋吉避凶建议生成
|
||
|
|
|
||
|
|
## 用户信息
|
||
|
|
|
||
|
|
**王院长生辰:**
|
||
|
|
- 公历:1984 年 5 月 16 日 23:00-24:00 (子时)
|
||
|
|
- 农历:甲子年 四月十六 子时
|
||
|
|
- 生肖:鼠
|
||
|
|
- 星座:金牛座
|
||
|
|
- 八字:甲子年 己巳月 丙午日 戊子时
|
||
|
|
|
||
|
|
## 使用方式
|
||
|
|
|
||
|
|
### Cron 定时任务
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
"name": "每日运势推送",
|
||
|
|
"schedule": { "kind": "cron", "expr": "0 21 * * *", "tz": "Asia/Shanghai" },
|
||
|
|
"sessionTarget": "isolated",
|
||
|
|
"payload": {
|
||
|
|
"kind": "agentTurn",
|
||
|
|
"message": "请查询明日运势并发送给王院长"
|
||
|
|
},
|
||
|
|
"delivery": {
|
||
|
|
"mode": "announce",
|
||
|
|
"channel": "telegram"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
### 手动查询
|
||
|
|
```
|
||
|
|
/fortune # 查询明日运势
|
||
|
|
/fortune 2026-03-13 # 查询指定日期
|
||
|
|
```
|
||
|
|
|
||
|
|
## 返回格式
|
||
|
|
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
"date": "2026-03-13",
|
||
|
|
"lunarDate": "农历二月十五",
|
||
|
|
"zodiac": "金牛座",
|
||
|
|
"overallLuck": "★★★★☆",
|
||
|
|
"almanac": {
|
||
|
|
"yi": ["开市", "交易", "入宅"],
|
||
|
|
"ji": ["嫁娶", "栽种"],
|
||
|
|
"chong": "冲鸡 煞西"
|
||
|
|
},
|
||
|
|
"horoscope": {
|
||
|
|
"overall": "整体运势平稳...",
|
||
|
|
"career": "事业运...",
|
||
|
|
"love": "爱情运...",
|
||
|
|
"health": "健康运...",
|
||
|
|
"wealth": "财运..."
|
||
|
|
},
|
||
|
|
"bazi": {
|
||
|
|
"dayMaster": "丙火",
|
||
|
|
"analysis": "明日五行...",
|
||
|
|
"suggestions": ["建议...", "避免..."]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
## 依赖
|
||
|
|
|
||
|
|
- chinese-almanac (黄历查询)
|
||
|
|
- tavily (运势搜索)
|