arxiv-research

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

arXiv 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.LG
    ,
    cs.MA
    by default (configurable)
  • 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 100
Options:
  • --categories
    — Comma-separated arXiv category codes. Default:
    cs.AI,cs.CL,cs.LG,cs.MA
  • --max
    — Maximum papers to fetch. Default:
    50
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
选项:
  • --categories
    — 逗号分隔的arXiv分类代码。默认值:
    cs.AI,cs.CL,cs.LG,cs.MA
  • --max
    — 最多获取的论文数量。默认值:50
输出:包含总论文数/相关论文数以及相关性评分前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-19
Options:
  • --date
    — Date label for the digest header. Default: today's date.
Output: Writes
~/.aibtc/arxiv-research/digests/{ISO8601}_arxiv_digest.md
and prints summary JSON.
从最近获取的论文中编译生成摘要。筛选相关性评分≥3的论文,按主题分组,写入Markdown文件。
bash
bun run arxiv-research/arxiv-research.ts compile
bun run arxiv-research/arxiv-research.ts compile --date 2026-03-19
选项:
  • --date
    — 摘要标题中的日期标签。默认值:当前日期。
输出:将文件写入
~/.aibtc/arxiv-research/digests/{ISO8601}_arxiv_digest.md
,并打印统计信息JSON。

list

list

Show recent compiled digests.
bash
bun run arxiv-research/arxiv-research.ts list
bun run arxiv-research/arxiv-research.ts list --limit 20
Options:
  • --limit
    — Maximum entries to show. Default:
    10
显示近期已编译的摘要。
bash
bun run arxiv-research/arxiv-research.ts list
bun run arxiv-research/arxiv-research.ts list --limit 20
选项:
  • --limit
    — 最多显示的条目数。默认值:10

Relevance Scoring

相关性评分

Papers are scored by matching title+abstract against topic signals:
TopicExample KeywordsWeight
agentautonomous agent, AI agent, agent-based3–4
multi-agentmulti-agent4
LLMlarge language model, LLM, GPT2–3
tool-usetool use, function call3
reasoningchain-of-thought, reasoning, planning2
RAGretrieval-augmented, RAG2
alignmentRLHF, alignment2
orchestrationorchestrat*3
MCPMCP, model context protocol3
Category boosts:
cs.MA
+3,
cs.CL
+1,
cs.AI
+1. Minimum score for digest inclusion: 3.
通过匹配论文标题+摘要与主题信号进行评分:
主题示例关键词权重
agentautonomous agent, AI agent, agent-based3–4
multi-agentmulti-agent4
LLMlarge language model, LLM, GPT2–3
tool-usetool use, function call3
reasoningchain-of-thought, reasoning, planning2
RAGretrieval-augmented, RAG2
alignmentRLHF, alignment2
orchestrationorchestrat*3
MCPMCP, model context protocol3
分类加权:
cs.MA
+3,
cs.CL
+1,
cs.AI
+1。纳入摘要的最低评分:3。

Output Format

输出格式

Digests are Markdown with:
  • Header: date, paper counts, categories
  • ## Highlights
    — top 5 papers with scores
  • Per-topic sections with title, authors, arXiv link, abstract excerpt
  • ## Stats
    table at the bottom
摘要为Markdown格式,包含:
  • 标题:日期、论文数量、涉及分类
  • ## 重点推荐
    — 评分前5的论文
  • 各主题章节:包含标题、作者、arXiv链接、摘要节选
  • 底部的
    ## 统计数据
    表格