arxiv-research
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesearXiv Research Skill
arXiv 研究工具
Monitors arXiv for notable papers on LLMs, autonomous agents, and AI infrastructure. Scores papers by relevance, groups them by topic, and produces Markdown digests.
- Covers ,
cs.AI,cs.CL,cs.LGby default (configurable)cs.MA - Relevance scoring: keywords, category boosts, topic tags
- Groups into: agent, multi-agent, LLM, tool-use, reasoning, RAG, alignment, orchestration, MCP
- Output: ISO-8601 timestamped Markdown digests at
~/.aibtc/arxiv-research/digests/ - No API key required — uses public arXiv Atom feed
监控arXiv平台上关于LLMs、自主Agent和AI基础设施的重要论文。根据相关性为论文评分,按主题分组,并生成Markdown格式的摘要。
- 默认覆盖、
cs.AI、cs.CL、cs.LG分类(可配置)cs.MA - 相关性评分:基于关键词、分类加权、主题标签
- 分组类别:agent、多agent、LLM、工具使用、推理、RAG、对齐、编排、MCP
- 输出:带ISO-8601时间戳的Markdown摘要,存储于
~/.aibtc/arxiv-research/digests/ - 无需API密钥——使用公开的arXiv Atom订阅源
Usage
使用方法
bun run arxiv-research/arxiv-research.ts <subcommand> [options]bun run arxiv-research/arxiv-research.ts <subcommand> [options]Subcommands
子命令
fetch
fetch
Fetch recent papers from arXiv Atom API, score for LLM/agent relevance, and save to a local staging file.
bash
bun run arxiv-research/arxiv-research.ts fetch
bun run arxiv-research/arxiv-research.ts fetch --categories "cs.CL,cs.MA" --max 100Options:
- — Comma-separated arXiv category codes. Default:
--categoriescs.AI,cs.CL,cs.LG,cs.MA - — Maximum papers to fetch. Default:
--max50
Output: JSON summary with total/relevant counts and top 10 papers by relevance score.
从arXiv Atom API获取近期论文,根据与LLM/Agent的相关性评分,并保存到本地临时文件。
bash
bun run arxiv-research/arxiv-research.ts fetch
bun run arxiv-research/arxiv-research.ts fetch --categories "cs.CL,cs.MA" --max 100选项:
- — 逗号分隔的arXiv分类代码。默认值:
--categoriescs.AI,cs.CL,cs.LG,cs.MA - — 最多获取的论文数量。默认值:50
--max
输出:包含总论文数/相关论文数以及相关性评分前10的论文的JSON摘要。
compile
compile
Compile a digest from the most recently fetched papers. Filters for relevance score ≥ 3, groups by topic, writes a Markdown file.
bash
bun run arxiv-research/arxiv-research.ts compile
bun run arxiv-research/arxiv-research.ts compile --date 2026-03-19Options:
- — Date label for the digest header. Default: today's date.
--date
Output: Writes and prints summary JSON.
~/.aibtc/arxiv-research/digests/{ISO8601}_arxiv_digest.md从最近获取的论文中编译生成摘要。筛选相关性评分≥3的论文,按主题分组,写入Markdown文件。
bash
bun run arxiv-research/arxiv-research.ts compile
bun run arxiv-research/arxiv-research.ts compile --date 2026-03-19选项:
- — 摘要标题中的日期标签。默认值:当前日期。
--date
输出:将文件写入,并打印统计信息JSON。
~/.aibtc/arxiv-research/digests/{ISO8601}_arxiv_digest.mdlist
list
Show recent compiled digests.
bash
bun run arxiv-research/arxiv-research.ts list
bun run arxiv-research/arxiv-research.ts list --limit 20Options:
- — Maximum entries to show. Default:
--limit10
显示近期已编译的摘要。
bash
bun run arxiv-research/arxiv-research.ts list
bun run arxiv-research/arxiv-research.ts list --limit 20选项:
- — 最多显示的条目数。默认值:10
--limit
Relevance Scoring
相关性评分
Papers are scored by matching title+abstract against topic signals:
| Topic | Example Keywords | Weight |
|---|---|---|
| agent | autonomous agent, AI agent, agent-based | 3–4 |
| multi-agent | multi-agent | 4 |
| LLM | large language model, LLM, GPT | 2–3 |
| tool-use | tool use, function call | 3 |
| reasoning | chain-of-thought, reasoning, planning | 2 |
| RAG | retrieval-augmented, RAG | 2 |
| alignment | RLHF, alignment | 2 |
| orchestration | orchestrat* | 3 |
| MCP | MCP, model context protocol | 3 |
Category boosts: +3, +1, +1. Minimum score for digest inclusion: 3.
cs.MAcs.CLcs.AI通过匹配论文标题+摘要与主题信号进行评分:
| 主题 | 示例关键词 | 权重 |
|---|---|---|
| agent | autonomous agent, AI agent, agent-based | 3–4 |
| multi-agent | multi-agent | 4 |
| LLM | large language model, LLM, GPT | 2–3 |
| tool-use | tool use, function call | 3 |
| reasoning | chain-of-thought, reasoning, planning | 2 |
| RAG | retrieval-augmented, RAG | 2 |
| alignment | RLHF, alignment | 2 |
| orchestration | orchestrat* | 3 |
| MCP | MCP, model context protocol | 3 |
分类加权: +3, +1, +1。纳入摘要的最低评分:3。
cs.MAcs.CLcs.AIOutput Format
输出格式
Digests are Markdown with:
- Header: date, paper counts, categories
- — top 5 papers with scores
## Highlights - Per-topic sections with title, authors, arXiv link, abstract excerpt
- table at the bottom
## Stats
摘要为Markdown格式,包含:
- 标题:日期、论文数量、涉及分类
- — 评分前5的论文
## 重点推荐 - 各主题章节:包含标题、作者、arXiv链接、摘要节选
- 底部的表格
## 统计数据