PaperScope CLI
Search and explore academic papers from your terminal. Powered by PaperScope.
Features
- Search 55,000+ academic papers (arXiv, HuggingFace, top conferences)
- Read AI-generated blogs, summaries, and tags
- Take quizzes to test your understanding
- Browse trending papers and conference proceedings
- Beautiful terminal output with colors and formatting
Installation
From source (requires Bun)
git clone https://github.com/paperscope/paperscope-cli.git
cd paperscope-cli
bun install
bun run build
The compiled binary will be at dist/paperscope. Add it to your PATH:
sudo ln -s $(pwd)/dist/paperscope /usr/local/bin/paperscope
Development mode
bun run dev -- search "transformer"
Configuration
API Key (optional)
An API key gives you higher rate limits. Get one at paperscope.ai.
paperscope config set-key psk_your_api_key_here
export PAPERSCOPE_API_KEY=psk_your_api_key_here
paperscope config show
paperscope config clear-key
Usage
Search papers
paperscope search "transformer attention"
paperscope search "LLM reasoning" --limit 5
paperscope search "multimodal" --tags Agent
paperscope search "diffusion" --source hf
Read paper details
paperscope read 2501.12345
paperscope read 2501.12345 --blog
paperscope read 2501.12345 --summary
paperscope read 2501.12345 --tags
Take a quiz
paperscope quiz 2501.12345
Trending papers
paperscope trending
paperscope trending --limit 20
paperscope trending --period weekly
Conference papers
paperscope conf cvpr2025
paperscope conf acl2025 --limit 20
paperscope conf neurips2024 --limit 10
Available Tags
LLM, Reasoning, Agent, Multimodal, RAG, Image-Generation, Video-Generation, 3D-Generation, Audio-Speech, Robot, Autonomous-Driving, Reinforcement-Learning, AI-Infrastructure, Data-Centric, Coding, Medical-Bio, AI-For-Science, AI-Safety, World-Model, Benchmark
API
PaperScope CLI uses the PaperScope Public API.
GET /v1/papers/search | Search papers |
GET /v1/papers/{id} | Paper details |
GET /v1/papers/{id}/blog | AI blog post |
GET /v1/papers/{id}/summary | AI summary |
GET /v1/papers/{id}/tags | Paper tags |
GET /v1/papers/{id}/quiz | Quiz |
GET /v1/papers/trending | Trending papers |
GET /v1/papers/conference/{name} | Conference papers |
Tech Stack
License
MIT
PaperScope CLI (中文)
在终端搜索和浏览学术论文。基于 PaperScope。
功能
- 搜索 55,000+ 篇学术论文 (arXiv、HuggingFace、顶会)
- 阅读 AI 生成的博客解读、摘要和标签
- 做 Quiz 测验, 检验论文理解
- 浏览热门论文和顶会论文
- 终端彩色美观输出
安装
git clone https://github.com/paperscope/paperscope-cli.git
cd paperscope-cli
bun install
bun run build
sudo ln -s $(pwd)/dist/paperscope /usr/local/bin/paperscope
使用
paperscope search "大模型推理"
paperscope read 2501.12345
paperscope read 2501.12345 --blog
paperscope read 2501.12345 --summary
paperscope read 2501.12345 --tags
paperscope quiz 2501.12345
paperscope trending --limit 10
paperscope conf cvpr2025 --limit 20
paperscope config set-key psk_your_api_key