Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
用Agent skills打造我的论文流水线
| Date | Stars |
|---|---|
| 2026-07-31 | 1091 |
| 2026-08-05 | 1117 |
| 2026-08-06 | 1117 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# dailypaper-skills 🗞️ 这是我自己平时读论文用的一套 Claude Code skills。 简单说,就是跟 Claude 说一句话,它会帮我从每天的新论文里筛一轮,挑出值得看的,再把重点论文读完、写成 Obsidian 笔记。日常不用记一堆命令,基本就是: ```text 今日论文推荐 读一下这篇论文 https://arxiv.org/abs/2509.24527 ``` 如果你也有“每天想看看新论文,但不想每天从一堆页面里手动捞”的痛苦,这个仓库大概就是为这种场景准备的。 > **🧊 Codex / Humanoid 适配** > 想看 Codex 适配版的话,可以先看 [`codex+humanoid`](https://github.com/huangkiki/dailypaper-skills/tree/codex%2Bhumanoid) 分支。 > **🧩 顺手推荐** > 如果你主要在 Zotero 里读 PDF,可以搭配我另一个插件 [Zotero AI Sidebar](https://github.com/huangkiki/zotero-ai-sidebar)。这个插件是在 Zotero 右侧加一个 AI 侧栏,适合边读边问、点译、全文翻译、截图追问、写回 Zotero 笔记。 > >  > > 我的习惯是:用这个仓库做每日筛选和 Obsidian 深度笔记;真正在 Zotero 里打开 PDF 精读时,用 Zotero AI Sidebar 做即时问答和点译。 > **🎬 视频演示**:[用 Claude Code 打造我的论文流水线](http://xhslink.com/o/1dhQCn40EWY) ## ✨ 它会帮你做什么 - 抓 HuggingFace Daily、Trending 和 arXiv 上的新论文。 - 按你关心的方向打分,先筛掉明显不相关的。 - 生成每日推荐页,分成“必读 / 值得看 / 可跳过”。 - 对重点论文生成结构化笔记,包括方法、实验、公式、图表、局限和后续可追的问题。 - 自动写进 Obsidian,并维护论文目录页和概念索引。 - 如果你用 Zotero,也可以直接按标题搜索,或者按分类批量读论文。 - 顺手还能抓 GitHub 周榜,看看最近哪些开源项目 star 涨得最快,并按你的方向标注相关性。 最后在 Obsidian 里大概会长这样: ```text ObsidianVault/ ├── DailyPapers/ │ └── YYYY-MM-DD-论文推荐.md ├── 论文笔记/ │ ├── 具体分类/ │ │ └── MethodName.md │ ├── _概念/ │ │ └── ...概念笔记.md │ └── _待整理/ └── ... ``` 笔记模板可以看这里:[obsidian-templates/论文笔记模板.md](obsidian-templates/论文笔记模板.md) ## 🧭 怎么用 最常用的就是这几句: ```text 今日论文推荐 过去3天论文推荐 过去一周论文推荐 ``` 想看看最近 GitHub 上 star 涨得最快的项目: ```text GitHub 周榜 过去一周 GitHub 热门 GitHub 日榜 ``` 生成的榜单会写到 Obsidian 的 `GitHubTrending/` 目录,并按你的研究方向自动标注哪些和你相关。 读单篇论文: ```text 读一下这篇论文 https://arxiv.org/abs/2509.24527 快速看一下这篇论文 ~/Downloads/paper.pdf 批判性分析这篇论文 ~/Downloads/paper.pdf ``` 如果你配好了 Zotero,也可以这样: ```text 读一下 Zotero 里的 Diffusion Policy 批量读一下 Zotero 里 VLA 分类下的论文 ``` 目录页一般会自动刷新。如果你手动移动过笔记,或者觉得目录没同步,再补一句: ```text 更新索引 ``` ## ⚙️ 安装 需要这些东西: - [Claude Code](https://docs.anthropic.com/en/docs/claude-code) - [Obsidian](https://obsidian.md/) - [Python 3.8+](https://www.python.org/) - [`poppler-utils`](https://poppler.freedesktop.org/),macOS 可以 `brew install poppler` - [Zotero](https://www.zotero.org/),可选,但如果你已经用 Zotero 管论文会很方便 把 skills 复制到 Claude Code 的 skills 目录: ```bash git clone https://github.com/huangkiki/dailypaper-skills.git cd dailypaper-skills mkdir -p ~/.claude/skills cp -r ./skills/* ~/.claude/skills/ ``` 再准备一下 Obsidian 目录。把下面的 `VAULT` 改成你自己的库路径: ```bash VAULT=~/ObsidianVault mkdir -p "$VAULT/DailyPapers" \ "$VAULT/GitHubTrending" \ "$VAULT/论文笔记/_概念/0-待分类" \ "$VAULT/论文笔记/_待整理" ``` 我自己在本地日常用的时候,通常会这样启动 Claude Code: ```bash claude --dangerously-skip-permissions ``` 这样会少很多权限确认,但它确实会跳过部分权限检查。所以更适合自己的个人机器,不建议在不熟悉的机器或共享环境里直接这么跑。 ## 配置 配置文件在: ```text ~/.claude/skills/_shared/user-config.json ``` 你可以自己改,也可以直接让 Claude 帮你改,比如: ```text 帮我配置 dailypaper-skills。我的 Obsidian 库在 XXX,研究方向是 robot learning、VLA、diffusion policy。 ``` 主要会改这几项: | 配置项 | 说明 | | --- | --- | | `paths.obsidian_vault` | 你的 Obsidian 库路径 | | `paths.zotero_db` | Zotero 数据库路径,不用 Zotero 可以留空 | | `paths.zotero_storage` | Zotero 附件存储路径 | | `daily_papers.keywords` | 你关心的研究方向,用来给论文加分 | | `daily_papers.negative_keywords` | 你不想看的方向 | | `daily_papers.domain_boost_keywords` | 额外加分的领域词 | Zotero 分类批量阅读不需要你另外写映射文件。只要 `paths.zotero_db` 和 `paths.zotero_storage` 配好,脚本会直接从 Zotero 分类树里查。 ## 🖥️ 网页可视化(可选) 如果你想在浏览器里翻每日推荐、论文笔记、概念库和 GitHub 周榜,仓库自带一个轻量 Web Viewer(FastAPI + 原生前端,无需打包)。 ```bash cd web-viewer pip install -r requirements.txt python3 app.py ``` 然后打开 `http://localhost:8080`。它会自动读取你 `~/.claude/skills/_shared/user-config.json` 里的 `obsidian_vault`,把这些内容渲染出来: - 📰 **Daily Papers**:每日/每周推荐,带“必读 / 值得看 / 可跳过”分流卡片。 - 🔥 **GitHub Trending**:`GitHubTrending/` 里的周榜笔记。 - 📝 **Paper Notes** / 🧠 **Concepts**:论文笔记和概念库,支持 `[[双向链接]]` 跳转、LaTeX 公式、全文搜索。 页面里还内置了一个 Claude 对话框,可以直接在浏览器里喊“今日论文推荐”“GitHub 周榜”触发流程(它在后台调用本机的 `claude` CLI)。 ## 我一般怎么搭配 Zotero AI Sidebar 这个仓库和 [Zotero AI Sidebar](https://github.com/huangkiki/
Excerpt of 6,734 characters
Read on GitHub9
2
2
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:41e2963b1c8b98eb, llm:description: 用Agent skills打造我的论文流水线 (use Agent skills to build my paper pipeline)
matched fp:41e2963b1c8b98eb, llm:description: 用Agent skills打造我的论文流水线 (use Agent skills to build my paper pipeline)