Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

tavily-arxiv-paper-fetechtavily arxiv paper fetech 搜索

Agent Skill

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

总安装

3,246

周安装

138

GitHub Stars

公开资料未说明

下载量

1,137
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install tavily-arxiv-paper-fetech

简介

tavily-arxiv-paper-fetech 用于论文检索和元数据获取,适合在 OpenClaw 中查找学术资料。

  • 适用于将论文标题解析为 arXiv 论文的场景。
  • 可获取紧凑的 arXiv 元数据和摘要信息。
  • 通过 Tavily 搜索和本地脚本结合实现高效论文查找。
  • 安装前建议确认是否会触发网络请求或学术数据库访问。

SKILL.md

name
tavily-arxiv-paper-fetech
description
Resolve one or more paper titles to reliable arXiv papers using Tavily search, then fetch compact arXiv metadata and abstracts with a local helper script. Use when the user provides paper titles and wants canonical arXiv URLs, title-author-year metadata, abstracts, or a reusable title-to-paper lookup workflow.
argument-hint
[paper-titles --workdir path]
allowed-tools
Bash(*), Read, Write, Edit, Grep, Glob, Agent, call_mcp_tool, WebFetch

Tavily arXiv Paper Fetech Pipeline

Orchestrate a title-to-arXiv metadata workflow for: $ARGUMENTS

Overview

This skill turns a list of paper titles into a reproducible arXiv lookup result:

paper titles
-> Tavily search only
-> canonical arXiv abs URL
-> local arXiv metadata fetch
-> JSONL process log
-> markdown report

The goal is not just to answer once. The goal is to leave behind a reusable work folder that can be resumed or consumed by another workflow.

Inputs

Extract or ask for:

  • TITLE_LIST: one or more paper titles
  • WORKDIR: optional working folder

If WORKDIR is omitted, default to:

  • 0_docs/tavily_arxiv_paper_fetech

Accepted title formats:

  • a single title
  • multiple titles separated by newlines
  • markdown bullet lists

Constants

  • TAVILY_ONLY = true — Tavily is the only allowed search mechanism
  • SEQUENTIAL_MODE = true — process titles one by one to reduce rate limits
  • NO_FALLBACK_SEARCH = true — never switch to arXiv API search, guessed arXiv URLs, or another provider
  • LOW_CONTEXT_MODE = true — append one JSON line per title, then render markdown from JSONL

Work Folder Layout

Write all outputs under WORKDIR:

ArtifactPurpose
input_titles.mdnormalized input title list
paper_fetches.jsonlone JSON line per processed title
paper_fetch_report.mdrendered report from the JSONL

Execution Rule

Process titles in order. Do not parallelize Tavily calls.

If Tavily rate limits:

  • wait briefly
  • retry Tavily only
  • if it still fails, record the error and continue

Phase 0: Initialize

  1. Normalize the input title list.
  2. Create WORKDIR.
  3. Write the normalized title list to WORKDIR/input_titles.md.

Phase 1: Tavily resolution

For each title:

  1. Search Tavily with:
"<paper title>" arXiv
  1. Prefer results in this order:

- https://arxiv.org/abs/... - https://arxiv.org/html/... - https://arxiv.org/pdf/...

  1. Accept a result only when the match is reliable:

- exact title match after minor normalization - same title with only punctuation, Unicode, or math-formatting differences - arXiv page clearly shows the same paper title

  1. If uncertain, record no_match instead of guessing.

Phase 2: Local arXiv fetch

Once a reliable arXiv URL is known, run:

python3 ".cursor/skills/tavily-arxiv-paper-fetech/scripts/fetch_arxiv_abs.py" "<arxiv-url>"

This returns compact JSON with:

  • canonical abs URL
  • arXiv id
  • title
  • authors
  • abstract

Phase 3: Low-context JSONL logging

For each title, immediately append one JSON line to:

  • WORKDIR/paper_fetches.jsonl

Each line should include at least:

  • index
  • input_title
  • tavily_status
  • tavily_error
  • arxiv_url
  • fetch

Status values:

  • ok
  • no_match
  • error

Phase 4: Render markdown report

After all titles are processed, run:

python3 ".cursor/skills/tavily-arxiv-paper-fetech/scripts/jsonl_to_paper_fetch_md.py" \
  "WORKDIR/paper_fetches.jsonl" \
  "WORKDIR/paper_fetch_report.md"

Output Format

The rendered report should look like:

# Tavily arXiv Paper Fetech Report

## Results

### 1. Original Title
- Status: ok
- arXiv URL: https://arxiv.org/abs/xxxx.xxxxx
- arXiv ID: xxxx.xxxxx
- Resolved Title: ...
- Authors: ...
- Abstract: ...

Key Rules

  • Never fabricate a paper match.
  • Never use non-Tavily search for title resolution.
  • Keep all outputs inside WORKDIR.
  • Prefer the local helper script over bringing full arXiv page content into context.

Utility Scripts

  • scripts/fetch_arxiv_abs.py — fetch compact metadata from a known arXiv URL
  • scripts/jsonl_to_paper_fetch_md.py — render JSONL to markdown

Additional Resources

  • For copy-paste invocations and expected outputs, see examples.md

Example Invocation

/tavily-arxiv-paper-fetech "RT-2: Vision-Language-Action Models Transfer Web Knowledge to Robotic Control\
OpenVLA: An Open-Source Vision-Language-Action Model --workdir 0_docs/tavily_arxiv_lookup_run_01"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.67%
按下载量换算951

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills