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.
Claude Code+Obsidian,邪修读论文就是快
| Date | Stars |
|---|---|
| 2026-07-31 | 1545 |
| 2026-08-05 | 1563 |
| 2026-08-06 | 1563 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# evil-read-arxiv
> 邪修的论文阅读工作流 - 自动化论文搜索、推荐、分析和整理
## 语言 / Language
- [中文版](README.md)
- [English Version](README_en.md)
## 简介
这是一套兼容 Claude Code 与 OpenAI Codex 的技能(Skills)集合,用于自动化研究论文的搜索、推荐、分析和整理工作流。通过调用 arXiv 和 Semantic Scholar API,每天为你推荐高质量论文,并自动生成详细笔记和关系图谱。
## 更新日志
| 日期 | 版本 | 更新内容 |
|------|------|----------|
| 2026-07-16 | v2.1 | CLI skills 兼容 OpenAI Codex;paper-analyze 新增公开 PDF、研究项目页、博客和普通网页来源识别 |
| 2026-04-24 | v2.0 | 新增 Web 应用:基于 Next.js 16 的论文推荐网页端,支持 AI 智能摘要、深度分析、论文图片提取、反馈偏好学习、收藏夹管理、中英双语切换、桌面/移动端多端适配 |
| 2026-03-13 | v1.1 | 新增 `conf-papers` 技能:支持搜索 CVPR/ICCV/ECCV/ICLR/AAAI/NeurIPS/ICML 等顶级会议论文,基于 DBLP + Semantic Scholar 双数据源,独立配置文件,三维评分推荐 |
| 2026-03-01 | v1.0 | 初始版本:start-my-day 每日推荐、paper-analyze 论文分析、extract-paper-images 图片提取、paper-search 论文搜索 |
## 功能特点
### 1. start-my-day - 每日论文推荐
- 从 arXiv 搜索最近一个月的论文
- 从 Semantic Scholar 搜索过去一年的高热度论文
- 基于相关性、新近性、热门度、质量四个维度综合评分
- 自动生成今日概览和推荐列表
- 前三篇论文自动生成详细分析和提取图片
- 自动链接关键词到已有笔记
### 2. paper-analyze - 论文深度分析
- 自动识别 arXiv ID/link、公开 PDF URL、本地 PDF、研究项目页、技术博客和普通网页
- 研究项目页会自动发现明确的 Paper/PDF 链接;直接 PDF 会保留原始来源并尝试补全项目页元数据
- 对论文/PDF 使用研究分析模板,对博客/网页使用来源分析模板,不伪造 arXiv 字段
- 生成结构化笔记,包含:
- 摘要翻译和要点提炼
- 研究背景与动机
- 方法概述和架构
- 实验结果分析
- 研究价值评估
- 优势和局限性分析
- 与相关论文对比
- 自动提取论文图片并插入笔记
- 更新知识图谱
### 3. extract-paper-images - 论文图片提取
- 优先从 arXiv 源码包提取高质量图片
- 支持公开 PDF 直链和本地 PDF
- 支持从 PDF 提取图片作为备选
- 自动生成图片索引
- 保存到笔记目录的 images 子目录
### 4. paper-search - 论文笔记搜索
- 在已有笔记中搜索论文
- 支持按标题、作者、关键词、领域搜索
- 相关性评分排序
### 5. conf-papers - 顶会论文搜索推荐
- 搜索 CVPR/ICCV/ECCV/ICLR/AAAI/NeurIPS/ICML 等顶级会议论文
- 基于 DBLP API 获取论文列表 + Semantic Scholar 补充引用和摘要
- 独立配置文件 `conf-papers.yaml`(关键词、排除词、默认年份/会议)
- 两阶段过滤:标题关键词轻量筛选 → S2 补充 → 三维评分(相关性 40% + 热门度 40% + 质量 20%)
- 前三篇论文自动生成详细分析(需有 arXiv ID)
### 6. Web 应用 - 论文推荐网页端
基于 Next.js 16 的独立 Web 应用,提供可视化论文浏览体验。详见 [web/README.zh.md](web/README.zh.md)。
- **AI 智能摘要** — 搜索论文时自动调用 Claude 批量生成摘要(主要内容 + 创新点)
- **深入了解** — 按需生成四维深度分析(核心贡献、创新点、方法概要、关键结果),并提取论文插图
- **兴趣方向搜索** — 支持两种模式:AI 语义筛选已有结果 / 重新搜索 arXiv
- **反馈与偏好学习** — 喜欢/一般/不感兴趣评价,10 条反馈后 AI 自动分析偏好并调整推荐权重
- **收藏夹** — 文件夹管理收藏论文,支持拖拽分类
- **中英双语** — UI 界面和 AI 提示词均支持中英文切换
- **多端适配** — 桌面双栏布局 + 移动端滑动卡片,支持手势导航
- **技术栈**:Next.js 16 + React 19 + TypeScript + TailwindCSS 4 + Anthropic Claude SDK
## 安装
### 前置要求
1. **Claude Code 或 OpenAI Codex** - CLI 技能可运行于 Claude Code,也可运行于 Codex CLI、IDE 扩展或桌面客户端
2. **Python 3.8+** - 用于运行搜索和分析脚本
3. **Node.js 20+** - Web 应用所需
4. **Anthropic API Key** - Web 应用的 AI 功能所需(Claude)
5. **Python 依赖**:
```bash
pip install -r requirements.txt
```
### 安装步骤
#### 方式一:Claude Code 技能安装
将技能复制到 Claude Code skills 目录:
```bash
# Windows PowerShell
Copy-Item -Recurse evil-read-arxiv\start-my-day $env:USERPROFILE\.claude\skills\
Copy-Item -Recurse evil-read-arxiv\paper-analyze $env:USERPROFILE\.claude\skills\
Copy-Item -Recurse evil-read-arxiv\extract-paper-images $env:USERPROFILE\.claude\skills\
Copy-Item -Recurse evil-read-arxiv\paper-search $env:USERPROFILE\.claude\skills\
Copy-Item -Recurse evil-read-arxiv\conf-papers $env:USERPROFILE\.claude\skills\
# macOS/Linux
cp -r evil-read-arxiv/start-my-day ~/.claude/skills/
cp -r evil-read-arxiv/paper-analyze ~/.claude/skills/
cp -r evil-read-arxiv/extract-paper-images ~/.claude/skills/
cp -r evil-read-arxiv/paper-search ~/.claude/skills/
cp -r evil-read-arxiv/conf-papers ~/.claude/skills/
```
配置环境变量和路径(见下文"配置"部分),然后重启 Claude Code CLI。
#### 方式二:Codex 技能安装
Codex 从 `$HOME/.agents/skills` 发现个人技能。复制技能目录后,新建任务;若没有立即出现则重启 Codex。
```bash
# Windows PowerShell
$skills = "$env:USERPROFILE\.agents\skills"
New-Item -ItemType Directory -Force $skills | Out-Null
Copy-Item -Recurse evil-read-arxiv\start-my-day $skills
Copy-Item -Recurse evil-read-arxiv\paper-analyze $skills
Copy-Item -Recurse evil-read-arxiv\extract-paper-images $skills
Copy-Item -Recurse evil-read-arxiv\paper-search $skills
Copy-Item -Recurse evil-read-arxiv\conf-papers $skills
# macOS/Linux
mkdir -p ~/.agents/skills
cp -r evil-read-arxiv/{start-my-day,paper-analyze,extract-paper-images,paper-search,conExcerpt of 11,759 characters
Read on GitHub22
8
3
2
2
1
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:12d6b852108f4158, llm:Repository description: 'Claude Code+Obsidian,邪修读论文就是快' (Chinese: 'evil practice reading papers fast') — implies tools integrating Claude (AI) and Obsidian for reading arXiv papers; language: Python. Suggests an AI-assisted paper reading workflow/plugin/automation.
matched fp:12d6b852108f4158, llm:Repository description: 'Claude Code+Obsidian,邪修读论文就是快' (Chinese: 'evil practice reading papers fast') — implies tools integrating Claude (AI) and Obsidian for reading arXiv papers; language: Python. Suggests an AI-assisted paper reading workflow/plugin/automation.
matched fp:12d6b852108f4158, llm:Repository description: 'Claude Code+Obsidian,邪修读论文就是快' (Chinese: 'evil practice reading papers fast') — implies tools integrating Claude (AI) and Obsidian for reading arXiv papers; language: Python. Suggests an AI-assisted paper reading workflow/plugin/automation.