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

deepxiv-clideepxiv CLI 搜索

Agent Skill

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

总安装

3,771

周安装

162

GitHub Stars

公开资料未说明

下载量

1,322
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install deepxiv-cli

简介

命令行工具用于搜索与逐步阅读开放获取学术论文。

  • 适用于科研文献调研、论文摘要获取或参考文献整理。
  • 支持 arXiv、PMC 及 Semantic Scholar 三大数据库。
  • 需保持网络畅通以实时访问远程资源。deepxiv-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议批量下载时注意速率限制与缓存策略。

SKILL.md

name
deepxiv-cli
description
Search, inspect, and progressively read open-access academic papers with the deepxiv CLI. Use when the user wants arXiv / PMC / Semantic Scholar paper search, paper triage, section-by-section reading, trending discovery, citation lookup, author background checks, baseline comparison, or literature review workflows without loading full papers too early.

DeepXiv CLI

deepxiv is a progressive-reading paper tool for open-access literature (arXiv, PMC, Semantic Scholar) with optional web search and an LLM-powered research agent.

The single most important rule: read the smallest amount of text that answers the question. Climb the ladder only as far as needed.

Progressive reading ladder

For any paper, prefer the cheapest rung that still answers the question:

RungCommandWhat you getWhen to use
1paper <id> --briefTitle, TLDR, keywords, citations, GitHub URLFirst triage of any paper
2paper <id> --headMetadata + section list (JSON)Decide which sections matter
3paper <id> --previewFirst ~10k chars (intro + early method)Need more than TLDR but not full sections
4paper <id> --section <Name>One named sectionTargeted answer (Method / Results / etc.)
5paper <id> or --rawFull markdownOnly when explicitly required

Never jump to rung 5 unless the user asked for a full read or the task truly needs it.

Setup

Before using deepxiv, verify it is available:

deepxiv --help

If missing, stop and tell the user — do not install it on your own. If the user asks you to install it, follow references/install.md, which has per-OS instructions, and only run install commands after the user explicitly approves them. deepxiv requires Python 3.10+.

Health and diagnostics (safe to run any time):

deepxiv health     # API + token reachability check
deepxiv debug      # environment diagnostics

Decision: which command do I want?

User wants…Start with
"Find papers about X"search (with filters if narrow)
"What's hot recently in X?"trending
"Explain this paper" (has ID)paper --brief--head → section
"Compare these N papers"paper --brief for each, then targeted sections
Biomedical / PubMed paperpmc <PMC_ID>
Has only Semantic Scholar IDsc <id>
"Who is this author / what's this project?"wsearch
"Is this paper actually getting traction?"paper --popularity
Open-ended multi-step research questionagent query (see caveats)

Core commands

search — arXiv search with filters

deepxiv search "agent memory" --limit 5
deepxiv search "multimodal reasoning" --limit 10 --format json

Filters (combine freely):

# Category filter (arXiv categories)
deepxiv search "retrieval" --categories cs.IR,cs.CL --limit 5

# Date window
deepxiv search "diffusion" --date-from 2025-01-01 --date-to 2025-06-30

# Citation floor — useful to skip obscure preprints
deepxiv search "world model" --min-citations 50 --limit 5

# Search mode: hybrid (default), bm25 (literal), vector (semantic)
deepxiv search "chain of thought" --mode bm25 --limit 5
deepxiv search "models that can think before answering" --mode vector

Defaults:

  • --limit 3 to 5 for triage; raise only when explicitly needed
  • --format json whenever you intend to post-process (pipe to jq)
  • Use bm25 for exact phrasing, vector for fuzzy concepts, hybrid otherwise

paper — get an arXiv paper

deepxiv paper 2409.05591 --brief        # rung 1
deepxiv paper 2409.05591 --head         # rung 2
deepxiv paper 2409.05591 --preview      # rung 3
deepxiv paper 2409.05591 --section Method   # rung 4
deepxiv paper 2409.05591                # rung 5 — full
deepxiv paper 2409.05591 --popularity   # social impact / trending signal
deepxiv paper 2409.05591 --raw          # raw markdown (full)

Section names come from --head. Common names: Introduction, Related Work, Method, Experiments, Results, Discussion, Limitations, Conclusion. Names are paper-specific — do not guess; check --head first if unsure.

Use --popularity when the user asks "is this paper a big deal" or you need to rank by attention rather than citations.

pmc — PubMed Central / biomedical

deepxiv pmc PMC544940 --head
deepxiv pmc PMC544940

PMC currently returns JSON only. Use when the target is biomedical or a PMC ID is given.

sc — Semantic Scholar lookup

deepxiv sc 258001
deepxiv sc 258001 --json

Use when the user gives a Semantic Scholar ID, or when you need richer metadata (citation graph, author info) for an arXiv paper that you have already cross-referenced.

trending — hot papers

deepxiv trending --days 7 --limit 10 --json
deepxiv trending --days 30 --limit 5

--days accepts only 7, 14, or 30. Use for weekly digests and "what's hot" requests.

wsearch — web search

deepxiv wsearch "karpathy"
deepxiv wsearch "DeepSeek R1 release notes" --json

Use for non-paper context: author background, project home pages, blog posts, release announcements. Cheap and broad — good for grounding before a paper read.

agent query — LLM-powered research agent

deepxiv agent query "Compare RAG vs long-context for code QA"
deepxiv agent query "Latest agent memory papers" --max-turn 10 --verbose

This is a multi-turn research agent that can search and read papers on its own. Caveats:

  • Requires the user to run deepxiv agent config once to set up their preferred LLM
  • Consumes LLM usage on the user's account
  • Slower and less predictable than manual search + paper flows
  • Prefer manual progressive reading by default; reach for agent query only when the question is genuinely open-ended and the user has agreed to the cost

JSON post-processing

When you need to slice search/trending output, prefer JSON + jq over re-running text searches:

deepxiv search "agent memory" --limit 10 --format json \
  | jq -r '.[] | "\(.arxiv_id)\	\(.citations // 0)\	\(.title)"' \
  | sort -k2 -n -r

deepxiv trending --days 7 --limit 20 --json \
  | jq -r '.[] | select(.categories[]? | test("cs\\.(AI|CL|LG)")) | .arxiv_id'

Recommended workflows

Topic exploration

"帮我找最近关于 agent memory 的论文":

  1. deepxiv search "agent memory" --limit 5 --format json (add --date-from if "最近")
  2. paper <id> --brief for each promising hit
  3. Pick 1–2 for deeper reading

Single paper explanation

"讲讲这篇论文 <id>":

  1. paper <id> --brief
  2. paper <id> --head
  3. Read 1–2 sections most relevant to the question (or --preview if unsure)
  4. Summarize, and say which rung you stopped at

Baseline / comparison table

"帮我整理这个方向的 baseline":

  1. Narrow search with --categories and optionally --min-citations
  2. --brief every candidate
  3. Read only Method / Experiments / Results for top picks
  4. Extract: paper, task, dataset, metric, score, key idea

Author / project background check

"这篇论文的作者还做过什么?" / "这个项目背景是什么?":

  1. deepxiv wsearch "<author or project>" --json
  2. If a related arXiv paper surfaces, climb the reading ladder on it
  3. Optionally sc <id> for citation context

Citation-aware filtering

"找有影响力的相关工作":

  1. deepxiv search "..." --min-citations 100 --format json
  2. Sort by citations via jq
  3. Triage with --brief

Hot digest

"本周热门论文":

  1. deepxiv trending --days 7 --limit 10 --json
  2. --brief the top picks
  3. Optional --popularity to rank by attention
  4. Compact digest: theme overview → one-line per paper → which to read deeper

See references/workflows.md for fuller versions of these.

Output rules

  • Always say which rung of the ladder informed your conclusion (e.g. "based on --brief only" vs. "after reading the Method section")
  • Do not make section-level claims you didn't actually read
  • Prefer concise bullet summaries when comparing multiple papers
  • Keep context use low: small --limit, climb the ladder only as needed
  • For literature reviews, prefer iterative narrowing over one giant search

Common failure modes

Auth or rate-limit issues — run deepxiv health to check service reachability. If rate-limited or unauthorized, say so plainly and stop; do not silently retry.

Paper not found — verify ID format and source: arXiv (2409.05591), PMC (PMC544940), Semantic Scholar (258001). If unsure which, try wsearch first.

Section name mismatch — section names are paper-specific. Run --head to list real section names before --section.

Over-reading — do not jump to full text when --brief, --preview, or one section would do.

Python 3.9 installdeepxiv may install via pip but crash on first run. Switch to a Python 3.10+ environment.

Good defaults

  • search --limit: 3–5 for triage, 10 max
  • trending --limit: 5–10
  • Section reads per paper: 1–2 unless asked otherwise
  • Full paper reads: opt-in only
  • agent query: only for genuinely open-ended multi-step research, with user consent

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.07%
按下载量换算1,164

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills