catalog/repos/36kr-com--skills.md

85 lines
2.4 KiB
Markdown
Raw Normal View History

2026-04-06 19:01:37 +08:00
# 36kr技能集合
`36kr` `热榜` `AI报道` `技能` `开放数据`
# 36kr Skills
一套用于查询 [36kr](https://36kr.com) 开放数据的智能体技能集合,由 [openclaw](https://36kr.com?channel=openclaw) API 驱动。
我们提供了 36kr 相关技能,欢迎大家使用和添加。后续技能会不断丰富和完善。如果您在使用过程中遇到问题,或希望我们提供新的技能,可以在 36kr APP 内通过反馈渠道提交需求,我们收到后会第一时间处理。
## 可用技能
### 36kr-hotlist
获取 36kr 24小时热榜文章每小时更新一次。
**适用场景:**
- 查热榜 / 36kr热榜 / 今日热榜
- "36kr上有什么热门内容"
- "给我看看今天的热门文章"
- 看看今天最火的文章 / 热点资讯
**数据来源:** `https://openclaw.36krcdn.com/media/hotlist/{date}/24h_hot_list.json`
---
### 36kr-aireportlist
获取 36kr AI 自助报道文章列表每2小时更新一次。
**适用场景:**
- 查自助报道 / 36kr自助报道 / 最新自助报道
- "给我看看最新的AI报道文章"
- AI寻求报道 / 36kr aireport
**数据来源:** `https://openclaw.36krcdn.com/media/aireport/{date}/ai_report_articles.json`
---
## 安装
```bash
# 安装全部技能
npx skills add <your-github-username>/36kr-skills
# 安装指定技能
npx skills add <your-github-username>/36kr-skills --skill 36kr-hotlist
npx skills add <your-github-username>/36kr-skills --skill 36kr-aireportlist
```
## 使用方法
安装后,在智能体中提问相关问题时,技能会自动触发:
```
查热榜
36kr热榜有什么
看看今天最火的文章
查自助报道
最新36kr自助报道列表
```
## 技能结构
```
skills/
├── 36kr-hotlist/
│ ├── SKILL.md # 智能体指令
│ ├── api-reference.md # 完整API文档
│ ├── examples.md # 使用示例
│ └── scripts/
│ ├── fetch_hotlist.py # Python查询脚本
│ └── fetch_hotlist.sh # Shell查询脚本
└── 36kr-aireportlist/
├── SKILL.md # 智能体指令
├── api-reference.md # 完整API文档
├── examples.md # 使用示例
└── scripts/
├── fetch_aireport.py # Python查询脚本
└── fetch_aireport.sh # Shell查询脚本
```
## 许可证
MIT