📈 GitHub Trending 每日精選(2026-07-17)
📈 GitHub Trending 每日精選(2026-07-17)
Top 10 一覽
| # | Repo | 語言 | ⭐ 總 star | 今日↑ | AI/Agent 相關 | 體積 |
|---|---|---|---|---|---|---|
| 1 | apache/ossie | Python | 899 | +60 | ✅ Semantic metadata 標準 (AI/BI) | - |
| 2 | Nutlope/hallmark | CSS | 10,892 | +3,372 | ⭐ AI anti-slop design skill | 75.6MB ❌ |
| 3 | OpenCut-app/OpenCut | TypeScript | 74,008 | +3,537 | ❌ 影片剪輯工具 | - |
| 4 | PostHog/posthog | Python | 35,834 | +77 | ⭐ AI observability + MCP | 5.68GB ❌ |
| 5 | openinterpreter/openinterpreter | Rust | 65,973 | +661 | ⭐ Coding agent (Kimi K3) | 229MB ❌ |
| 6 | PrismML-Eng/Bonsai-demo | Shell | 1,515 | +196 | ❌ | - |
| 7 | hasaneyldrm/exercises-dataset | HTML | 15,037 | +710 | ❌ 健身數據集 | - |
| 8 | Shubhamsaboo/awesome-llm-apps | Python | 122,876 | +923 | ⭐ 100+ AI Agent & RAG apps | 214MB ❌ |
| 9 | lobehub/lobehub | TypeScript | 80,156 | +71 | ⭐ Chief Agent Operator | 819MB ❌ |
| 10 | YimMenu/YimMenuV2 | C++ | 1,504 | +128 | ❌ GTA 5 mod | - |
| 11 | HKUDS/DeepTutor | Python | 26,859 | +656 | ⭐ 個人化家教 AI | 217MB ❌ |
| 12 | mattpocock/skills | Shell | 174,247 | +2,060 | ⭐ Coding skills (.claude dir) | 780KB ✅ |
| 13 | github/copilot-sdk | Java | 9,642 | +13 | ⭐ Multi-platform Copilot SDK | 24MB ✅ |
| 14 | ibelick/ui-skills | TypeScript | 4,262 | +178 | ⭐ UI skills for agents | 550KB ✅ |
| 15 | Graphify-Labs/graphify | Python | 89,057 | +1,107 | ⭐ AI coding skill (知識圖譜) | 7.2MB ✅ |
| 16 | codecrafters-io/build-your-own-x | Markdown | 526,296 | +435 | ❌ 编程学习 | - |
| 17 | ossu/computer-science | HTML | 206,512 | +107 | ❌ CS 自學 | - |
⭐ AI/Agent 重點專案(已下載)
1. 🛠️ mattpocock/skills
分類:Coding Skills
Clone: git clone https://github.com/mattpocock/skills.git
應用分類: Coding Skills(Agent 技能系統)
關鍵發現:
- 從 Matt Pocock(Total TypeScript 創辦人)的
.claude目錄提煉出的工程技能庫,174K stars,今日新增 2,060 stars,成長驚人 - 核心技能涵蓋完整軟體開發生命週期:
/grill-me釐清需求 →/implement+/tdd實作 →/code-review審查 →/handoff交接 - 設計理念是「小、可組合、可改寫」,不走 GSD/BMAD 那種 owning 全流程的路線,保留工程師的控制權
- 安裝方式:
npx skills@latest add mattpocock/skills,也支援作為 Claude Code 原生 plugin 安裝
實用性評估:
可用來建立 Agent 的工程紀律(engineering discipline)技能集。對於想打造靠譜 coding agent 的人,這是難得的「工程師視角」技能庫,而非純 prompt 堆疊。/tdd、/diagnosing-bugs、/code-review 這幾個技能特別實用。
2. 🧠 Graphify-Labs/graphify
分類:Vector Database / Coding Skills
Clone: git clone https://github.com/Graphify-Labs/graphify.git
應用分類: Coding Skills + 知識圖譜(Agent 的長期記憶增強)
關鍵發現:
- 將整個 codebase(代碼、文件、PDF、影片)轉換為可查詢的知識圖譜,而非傳統 vector embedding + RAG
- 代碼解析使用 tree-sitter AST,完全本地化,無 API 呼叫,隱私友好;文件/PDF 才需要 LLM
- 支援 36+ 語言的 AST 解析,涵蓋 Python/JS/TS/Go/Rust/Java/C++ 等主流語言
- 可查詢:「A 和 B 如何連接?」「解釋 C 節點的所有連接」,比 grep/vector search 更精準
- 支援 MCP server 模式,可讓 AI assistant 透過 tool call 直接查詢圖譜
- Benchmark 表現:在 LOCOMO recall@10 為 0.497(mem0 僅 0.048)
實用性評估:
這可能是今天最有價值的下載。作為 Agent 的長期記憶層,知識圖譜比 pure vector search 提供更深層的結構理解——可以回答「這兩個模組為什麼會連接」而非只是「哪些文件與 query 相似」。對於大型 codebase 的 agent 應用極度相關。
3. ⚡ github/copilot-sdk
分類:其他創新應用(Multi-platform Agent SDK)
Clone: git clone https://github.com/github/copilot-sdk.git
應用分類: Agent 基礎設施 SDK
關鍵發現:
- GitHub 官方 Copilot SDK,支援 Python / TypeScript / Go / .NET / Java / Rust 六種語言
- 底層透過 JSON-RPC 與 Copilot CLI server 溝通,自動管理 CLI 程序生命週期
- 支援自定義 agents、skills、tools,可擴展 Copilot 的能力
- 支援 MCP(Model Context Protocol)、hooks(pre/post tool execution)
- BYOK(Bring Your Own Key)模式可使用自己的 API key(OpenAI/Anthropic/Azure)而不需 GitHub Copilot 訂閱
- 支援 multi-agent、session 管理、streaming
實用性評估:
官方 SDK 的出現代表 Copilot 從 IDE 工具走向可嵌入的 agent runtime。對於需要整合 Copilot agent 能力到自有產品的開發者,這是目前最乾淨的切入點。缺點是需要 Copilot 訂閱(非 BYOK 模式)。
4. 🎨 ibelick/ui-skills
分類:Coding Skills(設計导向)
Clone: git clone https://github.com/ibelick/ui-skills.git
應用分類: UI/Styling Skills for Design Engineers
關鍵發現:
- 針對「會寫代碼的設計師」提供的 UI skill 集合,幫 agent 產出更專業的 UI 實現
- 使用
npx ui-skills start啟動,會根據任務自動路由到正確的 skill 集合 - 包含 categories:data、layouts、lib、pages、styles、ui、middleware 等模組化的 skill
- 550KB,輕量但實用
實用性評估:
這個更偏向設計/前端特定的技能庫。如果你的 agent 需要生成 UI 组件,這些 skill 可以幫助提升產出品質。但對於純後端或非 UI 場景,價值有限。
📊 下載狀態摘要
| Repo | Size | 下載條件滿足 |
|---|---|---|
| mattpocock/skills | 780KB | ✅ AI 相關 + ✅ <50MB |
| Graphify-Labs/graphify | 7.2MB | ✅ AI 相關 + ✅ <50MB |
| github/copilot-sdk | 24MB | ✅ AI 相關 + ✅ <50MB |
| ibelick/ui-skills | 550KB | ✅ AI 相關 + ✅ <50MB |
因體積過大未下載(>50MB): hallmark (75.6MB)、openinterpreter (229MB)、DeepTutor (217MB)、awesome-llm-apps (214MB)、posthog (5.68GB)、lobehub (819MB)
資料來源:GitHub Trending(2026-07-17)