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

arxiv-scholar-searcharxiv 学者检索

Agent Skill

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

总安装

28,821

周安装

1,238

GitHub Stars

公开资料未说明

下载量

10,102
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install arxiv-scholar-search

简介

利用 arXiv API 进行学术论文发现和筛选。

  • 适用于基于主题的最新论文追踪和关联分析。
  • 支持结构化输出和批量下载功能。arxiv-scholar-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可结合技术栈和发表时间进行多维过滤。
  • 建议确认 API 调用配额和响应延迟情况。

SKILL.md

name
arxiv-scholar-search
description
Use the arXiv API for academic paper discovery, relevance screening, and structured output. Suitable for topic-based search, latest-paper discovery, fixed-template reporting, and citation-oriented workflows.

Scholar Search Workflow

This skill only uses arXiv as the data source. The workflow is fixed:

  1. Read user input and parse the search intent.
  2. Call the arXiv API (via arxiv_search).
  3. Evaluate result quality and decide whether another search round is needed.
  4. Output results using the required template.

0) File Layout (Overview)

File PathPurposeWhen to Check
SKILL.mdMain entry: task parsing, query syntax, calling conventions, quality controlCheck first at the beginning of every task

1) Parse User Search Requirements

Extract the following constraints first:

  1. Topic keywords (Chinese or English).
  2. Time preference (for example: "latest", "this year", "last three years").
  3. Number of results (for example: 5, 10, 20).
  4. Output goal (paper discovery, comparison, or brief survey).
  5. Output language (Chinese or English).

Keyword strategy:

  1. Use a broad query in round one (topic terms only).
  2. Add constraint terms in round two (method terms, task terms, category terms).
  3. If results are too few, switch to synonyms or broader terms.

2) arXiv API Guide (Built-in)

2.1 API Endpoint

  1. Base endpoint: https://export.arxiv.org/api/query
  2. Request methods: GET (common), POST (optional when parameters are very long)

2.2 Core Parameters

  1. search_query: query expression
  2. id_list: comma-separated list of arXiv IDs
  3. start: pagination offset (0-based)
  4. max_results: number of returned entries
  5. sortBy: relevance / lastUpdatedDate / submittedDate
  6. sortOrder: ascending / descending

2.3 search_query Syntax

Common field prefixes:

  1. ti (title)
  2. au (author)
  3. abs (abstract)
  4. cat (category)
  5. all (all fields)

Boolean operators:

  1. AND
  2. OR
  3. ANDNOT

Time syntax (submittedDate):

  1. Range: submittedDate:[200701*+TO+200712*]
  2. Specific day: submittedDate:20101225

2.4 Direct URL Examples

  1. Topic query: https://export.arxiv.org/api/query?search_query=all:electron
  2. Combined query: https://export.arxiv.org/api/query?search_query=au:del_maestro+AND+ti:checkerboard
  3. Paginated query: https://export.arxiv.org/api/query?search_query=all:electron&start=0&max_results=10
  4. Sorted query: https://export.arxiv.org/api/query?search_query=ti:%22electron+thermal+conductivity%22&sortBy=lastUpdatedDate&sortOrder=descending

2.5 Rate Limits and Stability (Must Follow)

  1. Keep request frequency at no more than one request every 3 seconds.
  2. Use only one active connection at a time.
  3. Avoid high-frequency repeated queries; reuse existing results whenever possible.

3) Calling Conventions (Must Match Actual Use)

Standard call example:

curl -s "https://export.arxiv.org/api/query?search_query=all:multimodal+AND+cat:cs.CL&start=0&max_results=10&sortBy=submittedDate&sortOrder=descending"

Parameter notes:

  1. search_query: arXiv query expression (supports field prefixes and boolean operators).
  2. start: pagination offset (0-based).
  3. max_results: number of returned entries; recommend 5-20.
  4. sortBy: recommend submittedDate or lastUpdatedDate.
  5. sortOrder: recommend descending.

4) Decide Whether to Continue Searching

Run one more search round if any condition below is met:

  1. Too few papers are returned (for example, < 3).
  2. Results are clearly off-topic.
  3. Key fields are frequently missing (title, link, abstract).

Stop searching when:

  1. Result count reaches the target or an acceptable range.
  2. Topic relevance is high.
  3. Additional search rounds provide low value.

5) Output Requirements

Each paper must use the following structure:

-----------
# {Index}. **{Paper Title}**

**Paper Info**: **Venue/Source**: {journal, conference, or source} | **Publication Date**: {yyyy-mm-dd or unknown} | **Source**: [{source name}]({entry link or paper link}) | **PDF**: [PDF link]({pdf link})

### Research Content
{1-2 objective sentences based on the paper content}

### Main Contributions
- {Contribution 1}
- {Contribution 2}
- {Contribution 3}

Must follow:

  1. Add a standalone line ----------- before every paper title.
  2. Keep the title as a standalone level-1 header line.
  3. Keep "Paper Info" in a single line, separated by |.
  4. Keep the PDF field:

- If a PDF exists: provide a direct link. - If no PDF exists: remove the PDF field.

  1. Content must be based only on source metadata, abstract, or TLDR. No speculation.
  2. Do not add conclusions not explicitly supported by the source.
  3. All links must come from tool output. Do not fabricate or guess links.
  4. Do not fabricate venue, date, or citation count.
  5. Write "Research Content" and "Main Contributions" only from returned fields.

6) Failure Handling

  1. API failure: state the reason and the strategies already attempted.
  2. No results: provide actionable keyword rewrite suggestions.
  3. Missing fields: explicitly mark as "unknown/missing"; do not fill with inferred data.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.03%
按下载量换算7,276

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills