|
1 | 1 | # Paper Reader Skill |
2 | 2 |
|
| 3 | +智能学术论文分析工具,支持 Claude Code 等 AI 编程 Agent。 |
3 | 4 | An intelligent academic paper analysis tool for Claude Code and other AI coding agents. |
4 | 5 |
|
5 | | -## Features |
| 6 | +--- |
6 | 7 |
|
7 | | -- **Multi-Source Paper Search** - Search across arXiv, PubMed, Semantic Scholar, and CrossRef |
8 | | -- **Automatic PDF Download** - Download papers from various sources |
9 | | -- **MinerU Integration** - Convert PDF papers to Markdown for analysis |
10 | | -- **Multi-Level Analysis** - Three levels of analysis (Basic, Academic, Deep Research) |
11 | | -- **Cross-Platform Support** - Works on Linux, macOS, and Windows |
| 8 | +## 功能 | Features |
12 | 9 |
|
13 | | -## Installation |
| 10 | +- **多源论文搜索 | Multi-Source Search** - 支持 arXiv、PubMed、Semantic Scholar、CrossRef |
| 11 | +- **自动 PDF 下载 | Auto Download** - 从多个来源下载论文 |
| 12 | +- **MinerU 集成** - PDF 转 Markdown 用于分析 |
| 13 | +- **多级分析 | Multi-Level Analysis** - 三种分析级别(基础/学术/深度研究) |
| 14 | +- **跨平台支持 | Cross-Platform** - 支持 Linux、macOS、Windows |
| 15 | + |
| 16 | +## 安装 | Installation |
14 | 17 |
|
15 | | -1. Install dependencies: |
16 | 18 | ```bash |
| 19 | +# 安装依赖 |
17 | 20 | pip install requests psutil |
18 | | -``` |
19 | 21 |
|
20 | | -2. Install MinerU (optional, for PDF conversion): |
21 | | -```bash |
| 22 | +# 安装 MinerU(可选,用于 PDF 转换) |
22 | 23 | paper-reader setup mineru install |
23 | 24 | ``` |
24 | 25 |
|
25 | | -## Usage |
| 26 | +## 使用 | Usage |
26 | 27 |
|
27 | | -### Search and Download Papers |
| 28 | +### 搜索论文 | Search Papers |
28 | 29 |
|
29 | 30 | ``` |
30 | 31 | /paper-reader fetch <topic-or-keywords> |
31 | 32 | ``` |
32 | 33 |
|
33 | | -### Analyze Papers |
| 34 | +### 分析论文 | Analyze Papers |
34 | 35 |
|
35 | 36 | ``` |
36 | 37 | /paper-reader analyze <paper-id> |
37 | 38 | ``` |
38 | 39 |
|
39 | | -### Analysis Levels |
| 40 | +### 分析级别 | Analysis Levels |
40 | 41 |
|
41 | | -- **Level A (Basic)** - Summary + Key Findings |
42 | | -- **Level B (Academic)** - Summary + Key Findings + Methodology + Figures + Related Work |
43 | | -- **Level C (Deep)** - Full Academic + Limitations + Trends + Reproducibility |
| 42 | +| 级别 | 描述 | Level | Description | |
| 43 | +|------|------|-------|-------------| |
| 44 | +| A | 基础分析:摘要 + 关键发现 | A | Basic: Summary + Key Findings | |
| 45 | +| B | 完整学术:+ 方法论 + 图表 + 相关工作 | B | Academic: + Methodology + Figures + Related Work | |
| 46 | +| C | 深度研究:+ 局限性 + 趋势 + 复现分析 | C | Deep: + Limitations + Trends + Reproducibility | |
44 | 47 |
|
45 | | -## Architecture |
| 48 | +## 架构 | Architecture |
46 | 49 |
|
47 | 50 | ``` |
48 | 51 | paper-reader/ |
49 | 52 | ├── skills/ |
50 | | -│ ├── config/ # Configuration management |
51 | | -│ ├── mineru/ # MinerU PDF parser |
52 | | -│ ├── fetch/ # Paper retrieval |
| 53 | +│ ├── config/ # 配置管理 | Configuration |
| 54 | +│ ├── mineru/ # MinerU PDF 解析 |
| 55 | +│ ├── fetch/ # 论文获取 | Paper retrieval |
53 | 56 | │ │ └── sources/ # arXiv, PubMed, Semantic Scholar, CrossRef |
54 | | -│ └── analyze/ # Paper analysis |
55 | | -├── agent_adapters/ # Adapter templates for other AI agents |
56 | | -├── docs/ # Design documents |
57 | | -└── tests/ # Test suite |
| 57 | +│ └── analyze/ # 论文分析 | Paper analysis |
| 58 | +├── agent_adapters/ # Agent 适配器 |
| 59 | +├── docs/ # 设计文档 |
| 60 | +└── tests/ # 测试套件 |
58 | 61 | ``` |
59 | 62 |
|
60 | | -## Configuration |
| 63 | +## 配置 | Configuration |
61 | 64 |
|
62 | | -Configuration is stored at `~/.paper-reader/config.json`. |
| 65 | +配置文件位于 `~/.paper-reader/config.json`。 |
63 | 66 |
|
64 | 67 | ## License |
65 | 68 |
|
|
0 commit comments