Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

arxiv-search-collectorarxiv 搜索收集器

Agent Skill

arxiv-search-collector 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

48,935

周安装

2,102

GitHub Stars

公开资料未说明

下载量

17,152
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:arxiv-search-collector(arxiv 搜索收集器)
来源仓库:https://github.com/xukp20/arxiv-search-collector
安装命令:
openclaw skills install arxiv-search-collector
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install arxiv-search-collector

简介

模型引导的 arXiv 论文收集工作流程,可规划查询、获取元数据、过滤相关性并按语言合并重复数据删除结果。

SKILL.md

name
arxiv-search-collector
description
Model-driven arXiv retrieval workflow for building a paper set with a manual language parameter: initialize a run, fetch metadata for each model-designed query, let the model filter irrelevant items per query by keep indexes, then merge and dedupe into per-paper metadata directories. Use when query planning and relevance filtering should be done by the model, not rule-based heuristics.

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:

  1. Expand the original topic into multiple focused queries.
  2. Run one fetch command per query.
  3. Read each query result list and decide keep indexes.
  4. 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

  • --language must be set manually for each collection run.
  • Use the same language value across all collector scripts for consistency.
  • If --language is non-English (for example Chinese), generated markdown files are written in that language:

- task_meta.md - query_results/<label>.md - <arxiv_id>/metadata.md - papers_index.md

Query Writing Requirements

Follow these rules before running per-query fetch:

  1. Determine query count from final target range.
  • Prefer 3 queries for small/medium targets (2-5, 5-10).
  • Prefer 4 queries for larger targets (10-50 or above).
  • Avoid writing too many low-quality queries.
  1. Allocate target budget to each query, then oversample.
  • Let target_max be 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 * 3 when recall is more important).
  • Example: target 5-10, query count 3 -> target_per_query=4 -> each query fetches 8-12.
  1. 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.
  1. Use OR inside the same semantic group (synonyms), and AND across groups.
  • Same-group synonyms should be connected with OR to 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".

  • Different semantic groups should be connected with AND to keep relevance.

- Example: (LLM-group) AND (Lean-group).

  • Recommended pattern:

- (<domain terms with OR>) AND (<method/model terms with OR>) [AND <optional constraint terms>]

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 (<run_dir>/.runtime/arxiv_api_state.json) for throttling
  • auto max_results from target_range and query count (default oversample x2, cap 60)
  • 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/<label>.json (indexed full metadata list)
  • query_results/<label>.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 (default 5.0)
  • --retry-max (default 4)
  • --retry-base-sec (default 5.0)
  • --retry-max-sec (default 120.0)
  • --retry-jitter-sec (default 1.0)
  • --rate-state-path (optional override; default is <run_dir>/.runtime/arxiv_api_state.json)
  • --force to 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:

  • <arxiv_id>/metadata.json
  • <arxiv_id>/metadata.md
  • papers_index.json
  • papers_index.md

Step 5: Iterative Retry Loop (Incremental)

If relevance is weak or final count is insufficient after Step 4, iterate:

  1. Review papers_index.md and per-paper metadata quality.
  2. Adjust query plan (usually broaden with additional synonym OR terms, keep cross-group AND constraints).
  3. Fetch additional query results with new labels.
  4. 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-json override 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 --force when 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.md for exact files and schema.

Related Skills

This skill is a sub-skill of arxiv-summarizer-orchestrator.

Pipeline position:

  1. Step 1 (collection): arxiv-search-collector (this skill)
  2. Step 2 (per-paper processing): arxiv-paper-processor
  3. 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.28%
按下载量换算14,970

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills