为单篇或一批 ArXiv 论文下载源文件与 PDF,再通读全文并按指定语言生成结构化的 summary.md。
数据分析
ArXiv Search Collector
由模型规划查询并判断相关性,将多轮 arXiv 结果合并去重,最终产出可直接使用的主题论文集。
它能做什么
围绕一个主题拆出 3-4 条聚焦的 arXiv 查询,逐条串行抓取(内置限流与重试),再由模型逐条阅读返回的元数据列表,按索引决定保留哪些。最后一步合并去重,产出每篇论文的 metadata 与论文索引。查询中同类同义词用 OR、跨语义组用 AND,并做 2-3 倍过采样。若相关性不足,可进入增量重试循环放宽查询条件。每次运行需手动设置语言参数,markdown 文件会按该语言生成。
什么时候用它
- 围绕 LLM 与形式化方向在 cs.AI / cs.LO 抓取近期论文
- 为多模态推理相关综述收集候选文献
- 为上游编排器技能生成结构化的初步论文集,供后续批处理使用
- 初次召回过少时扩词复跑、补齐相关性
技能文档
ArXiv Search Collector
Use this skill when you want model-led query planning and model-led relevance filtering.
Core Principle
Scripts are tools. The model performs the reasoning and decisions:
- Expand the original topic into multiple focused queries.
- Run one fetch command per query.
- Read each query result list and decide keep indexes.
- Merge kept items and dedupe with one script.
Step 1: Initialize Run
python3 scripts/init_collection_run.py \
--output-root /path/to/data \
--topic "LLM applications in Lean 4 formalization" \
--keywords "Lean 4,LLM,formalization" \
--categories "cs.AI,cs.LO" \
--target-range 5-10 \
--lookback 30d \
--language English
This creates a run directory with task_meta.json, task_meta.md, query_results/, and query_selection/.
Language Parameter
--languagemust be set manually for each collection run.- Use the same language value across all collector scripts for consistency.
- If
--languageis non-English (for exampleChinese), generated markdown files are written in that language:task_meta.mdquery_results/.md/metadata.mdpapers_index.md
Query Writing Requirements
Follow these rules before running per-query fetch:
- Determine query count from final target range.
- Prefer
3queries for small/medium targets (2-5,5-10). - Prefer
4queries for larger targets (10-50or above). - Avoid writing too many low-quality queries.
- Allocate target budget to each query, then oversample.
- Let
target_maxbe the upper bound in target range. - Compute
target_per_query = ceil(target_max / query_count). - Fetch each query with
max_results = target_per_query * 2(or* 3when recall is more important). - Example: target
5-10, query count3->target_per_query=4-> each query fetches8-12.
- Keep one original-theme query, then add normalized/synonym expansions.
- Query 1 keeps original topic wording.
- Remaining queries use normalized terms and close synonyms.
- Prefer concise noun phrases that match arXiv indexing behavior.
- Use
ORinside the same semantic group (synonyms), andANDacross groups.
- Same-group synonyms should be connected with
ORto increase recall.- Example group A (model terms):
LLM OR "large language model" OR AI. - Example group B (Lean terms):
"Lean 4" OR Lean OR "formal language".
- Example group A (model terms):
- Different semantic groups should be connected with
ANDto keep relevance.- Example:
(LLM-group) AND (Lean-group).
- Example:
- Recommended pattern:
() AND () [AND ]
Query Examples (arXiv API-ready)
Theme A: LLM applications in Lean 4 formalization
all:"LLM applications in Lean 4 formalization"(all:"Lean 4" OR all:"Lean" OR all:"formal language") AND (all:"LLM" OR all:"large language model" OR all:"AI")(all:"Lean" OR all:"formalization") AND (all:"LLM" OR all:"large language model") AND all:"theorem proving"(all:"Lean" OR all:"proof assistant") AND (all:"AI" OR all:"LLM")
Theme B: agentic tool use for code generation
all:"agentic tool use code generation"(all:"agentic" OR all:"autonomous agent") AND (all:"LLM" OR all:"large language model")(all:"tool use" OR all:"function calling") AND (all:"coding assistant" OR all:"code generation")
Theme C: multimodal reasoning with retrieval
all:"multimodal reasoning retrieval"(all:"multimodal" OR all:"vision language") AND (all:"retrieval" OR all:"RAG")(all:"multimodal model" OR all:"vision language model") AND (all:"reasoning" OR all:"tool use")
Step 2: Fetch One Query at a Time
Model defines queries manually, for example:
all:"Lean 4"all:"LLM formalization"all:"AI formal verification"
Recommended batch mode (safe defaults, serial execution):
python3 scripts/fetch_queries_batch.py \
--run-dir /path/to/run-dir \
--plan-json /path/to/query_plan.json
In batch mode, the script auto-applies:
- serial API calls
--min-interval-sec 5--retry-max 4--retry-base-sec 5--retry-max-sec 120--retry-jitter-sec 1- per-run rate-state file (
/.runtime/arxiv_api_state.json) for throttling - auto
max_resultsfromtarget_rangeand query count (default oversamplex2, cap60) - default language/categories from
task_meta.json
Minimal query_plan.json only needs label and query.
See references/query-plan-format.md.
You normally do not need to set fetch-control args manually.
If you need one-by-one manual fetch, run each query:
python3 scripts/fetch_query_metadata.py \
--run-dir /path/to/run-dir \
--label lean4 \
--query 'all:"Lean 4"' \
--max-results 30 \
--min-interval-sec 5 \
--retry-max 4 \
--language English
Output files:
query_results/.json(indexed full metadata list)query_results/.md(human-readable preview)
Date range is applied directly in arXiv API search_query via submittedDate:[... TO ...].
No second local date-filter pass is performed.
Rate-limit controls in fetch_query_metadata.py:
--min-interval-sec(default5.0)--retry-max(default4)--retry-base-sec(default5.0)--retry-max-sec(default120.0)--retry-jitter-sec(default1.0)--rate-state-path(optional override; default is/.runtime/arxiv_api_state.json)--forceto bypass cache and re-fetch
Step 3: Model Filters Relevance
For each query list, the model reads indexed results and decides what to keep.
Use keep specs by index and/or arXiv ID when merging.
To explicitly drop one weak query in later iterations, set that label to an empty keep list in selection-json.
Step 4: Merge and Dedupe
python3 scripts/merge_selected_papers.py \
--run-dir /path/to/run-dir \
--keep lean4:0,2,4 \
--keep llm-formalization:1,3 \
--language English
or with selection-json:
{
"lean4-round1": [0, 2, 4],
"lean4-round2": [],
"formalization-round2": [1, 3, 5]
}
An empty list means this query label is intentionally dropped (keep 0).
This writes final outputs:
/metadata.json/metadata.mdpapers_index.jsonpapers_index.md
Step 5: Iterative Retry Loop (Incremental)
If relevance is weak or final count is insufficient after Step 4, iterate:
- Review
papers_index.mdand per-paper metadata quality. - Adjust query plan (usually broaden with additional synonym
ORterms, keep cross-groupANDconstraints). - Fetch additional query results with new labels.
- Re-run merge in incremental mode:
python3 scripts/merge_selected_papers.py \
--run-dir /path/to/run-dir \
--incremental \
--selection-json /path/to/updated_selection.json \
--language English
Incremental behavior:
- Previous label selections are loaded from
query_selection/selected_by_query.json. - Labels provided in the new
selection-jsonoverride previous selections for those labels. - New labels can be added.
- Old labels can be dropped by setting
[].
Stop retrying when:
- relevance is acceptable, or
- additional broadened queries mainly add low-relevance papers.
If relevant papers are genuinely scarce, it is valid to finish below the original minimum target range.
Notes
- Keep API concurrency conservative by controlling query count and
--max-results. - Keep per-query fetch serial (no parallel API calls in Stage A).
- Reuse cache by default for identical query/date/request settings; only use
--forcewhen necessary. - Prefer default run-local rate-state so all steps in the same run share one cooldown/throttling state.
- If arXiv API returns
429 Too Many Requests, retry later and/or increase--min-interval-sec. - Prefer explicit, narrow queries and let the model filter aggressively.
- Use
references/io-contract.mdfor exact files and schema.
Related Skills
This skill is a sub-skill of arxiv-summarizer-orchestrator.
Pipeline position:
- Step 1 (collection):
arxiv-search-collector(this skill) - Step 2 (per-paper processing):
arxiv-paper-processor - Step 3 (batch reporting):
arxiv-batch-reporter
This skill produces the initial paper-set structure and metadata that Stage B and Stage C depend on.
相关技能
Generates a batch arXiv report by combining model-written templates with brief conclusions and abs URLs extracted from per-paper summary.md files.
Orchestrates end-to-end arXiv paper retrieval, processing, and batch reporting with language control and parallel or serial paper handling modes.
Extract and clean readable article content, metadata, and markdown from URLs or HTML for research, note taking, and web scraping.
通过 CellCog 智能体完成跨市场、竞品、投资与学术主题的深度研究报告。
汇总过去 30 天 Reddit、X、YouTube 和网页上关于某个话题的真实讨论。