# Github Trending

> 采集 GitHub Trending 页面的热门 AI/LLM 仓库信息

- Skill: `huangjia2019/github-trending-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add huangjia2019/github-trending-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/huangjia2019/github-trending-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: huangjia2019 (https://skillmd.com/u/huangjia2019)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/huangjia2019/github-trending-2

---


# GitHub Trending 采集技能

## 触发条件

当需要采集 GitHub Trending 数据时激活。

## 执行步骤

1. 通过 GitHub Search API 搜索近期活跃的 AI/LLM/Agent 相关仓库
2. 提取字段：仓库名、描述、stars、语言、topics、URL
3. 格式化为标准 JSON 条目
4. 写入 `knowledge/raw/github-trending-{YYYY-MM-DD}.json`

## 输出格式

```json
[
  {
    "id": "github-owner-repo",
    "title": "owner/repo — description",
    "source": "GitHub Trending",
    "url": "https://github.com/owner/repo",
    "collected_at": "2026-03-17T08:00:00Z",
    "stars": 1234,
    "language": "Python",
    "topics": ["llm", "agent"]
  }
]
```

