Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

alphaxivalphaxiv 搜索

Agent Skill

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

总安装

766

周安装

31

GitHub Stars

7,825

下载量

241
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:alphaxiv(alphaxiv 搜索)
来源仓库:https://github.com/wanshuiyin/auto-claude-code-research-in-sleep
仓库路径:skills/alphaxiv
安装命令:
npx skills add https://github.com/wanshuiyin/auto-claude-code-research-in-sleep --skill alphaxiv
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wanshuiyin/auto-claude-code-research-in-sleep --skill alphaxiv

简介

alphaxiv 快速读取 arXiv 论文并提供 LLM 优化的摘要与 LaTeX 源码 fallback。

  • 适合单篇论文速览、研究背景理解或技术方案参考等轻量级学术检索需求。
  • 输入论文 ID 或 URL 即可触发,优先返回概述再逐步深入细节。
  • 不支持主题发现或多文献对比,建议配合其他检索工具组合使用。
  • alphaxiv 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AlphaXiv Paper Lookup

Lookup paper: $ARGUMENTS

Quick single-paper reader with tiered source fallback (overview → full markdown → LaTeX source). Powered by AlphaXiv.

Role & Positioning

This skill is the quick single-paper reader that returns LLM-optimized summaries:

SkillSourceBest for
/arxivarXiv APIBatch search, PDF download, metadata
/deepxivDeepXiv SDKProgressive section-level reading
/semantic-scholarS2 APIPublished venue metadata, citation counts
/alphaxivalphaxiv.orgInstant LLM-optimized summary of one paper, with LaTeX source fallback

Do NOT use this skill for topic discovery, broad literature search, or multi-paper surveys — use /research-lit or /arxiv instead.

Constants

  • OVERVIEW_URL = https://alphaxiv.org/overview/{PAPER_ID}.md
  • ABS_URL = https://alphaxiv.org/abs/{PAPER_ID}.md
  • ARXIV_SRC_URL = https://arxiv.org/src/{PAPER_ID}
Overrides (append to arguments): - /alphaxiv 2401.12345 — quick overview - /alphaxiv "https://arxiv.org/abs/2401.12345" — auto-extract ID - /alphaxiv 2401.12345 - depth: src — force LaTeX source inspection - /alphaxiv 2401.12345 - depth: abs — force full markdown

Workflow

Step 1: Parse Arguments & Extract Paper ID

Parse $ARGUMENTS to extract a bare arXiv paper ID. Accept these input formats:

  • https://arxiv.org/abs/2401.12345 or https://arxiv.org/abs/2401.12345v2
  • https://arxiv.org/pdf/2401.12345
  • https://alphaxiv.org/overview/2401.12345
  • https://alphaxiv.org/abs/2401.12345
  • 2401.12345 or 2401.12345v2

Strip version suffixes (v1, v2,...) for API calls. Store as PAPER_ID.

Parse optional directives:

  • - depth: overview|abs|src: force a specific tier instead of cascading

Step 2: Fetch AlphaXiv Overview (Tier 1 — Fastest)

Fetch the structured overview from https://alphaxiv.org/overview/{PAPER_ID}.md.

This returns a structured, LLM-optimized report designed for machine consumption. Use this as the default and preferred source.

If the overview answers the user's question, stop here. Do not fetch deeper tiers unnecessarily.

If the request fails (HTTP 404 — paper not yet processed) or the content is insufficient, proceed to Step 3.

Step 3: Fetch Full AlphaXiv Markdown (Tier 2 — More Detail)

Fetch the full paper markdown from https://alphaxiv.org/abs/{PAPER_ID}.md.

This provides the full paper body as markdown. Use when the user needs:

  • Specific methodology details
  • Detailed experimental results
  • Particular sections not covered in the overview

If this still does not answer the question, proceed to Step 4.

Step 4: Fetch arXiv LaTeX Source (Tier 3 — Deepest)

When the overview and full markdown are both insufficient (e.g., the user asks about equations, proofs, appendix details, or implementation specifics), download the paper's LaTeX source from https://arxiv.org/src/{PAPER_ID}.

The source is a .tar.gz archive. Download it to a temporary directory, extract it, and list the .tex files inside.

Then inspect only the files needed to answer the question. Prioritize:

  1. Top-level *.tex files (usually the main document)
  2. Files referenced by \input{} or \include{}
  3. Appendices, tables, or sections directly related to the user's question

Do NOT read the entire source tree by default. Read selectively.

Temporary source artifacts live under /tmp. Do not rely on persistence.

Step 5: Present Results

Default Answer Shape

## [Paper Title]

- **arXiv**: [PAPER_ID] — https://arxiv.org/abs/[PAPER_ID]
- **Source depth**: overview | abs | src

### Summary
[2-3 sentence summary]

### Key Points
- [point 1]
- [point 2]
- [point 3]

### Answer to Your Question
[Direct answer if the user asked a specific question]

If the user only asks for one specific detail, answer it directly — skip the full template.

Suggest Follow-Up Skills

/arxiv "PAPER_ID" - download          - download the PDF to local library
/deepxiv "PAPER_ID" - section: Methods  - read a specific section progressively
/research-lit "related topic"        - multi-source literature survey
/novelty-check "idea from paper"     - verify novelty against this paper's area

Update Research Wiki (if active)

Required when research-wiki/ exists in the project; skip silently otherwise. After presenting the paper summary, ingest the single paper that was read:

if [ -d research-wiki/ ]:
    python3 tools/research_wiki.py ingest_paper research-wiki/ \
        --arxiv-id "<paper_arxiv_id>" \
        [--thesis "<one-line thesis from the Tier 1 overview>"]

The helper handles metadata fetch, slug, dedup, page creation, index rebuild, and log append — do not handwrite papers/<slug>.md. See shared-references/integration-contract.md. If wiki was not present at read time, the user can backfill via python3 tools/research_wiki.py sync research-wiki/ --arxiv-ids <id>.

Key Rules

  • Overview first: overview is the fastest path and must always be tried before deeper tiers. Only escalate when needed.
  • Minimal reads: At src tier, read only the files that answer the question. Full-tree reads waste tokens.
  • Cross-platform: When downloading and extracting the source archive, prefer cross-platform approaches (e.g., Python stdlib) over platform-specific commands to ensure Windows/WSL compatibility.
  • No PDF parsing: This skill reads structured markdown and LaTeX source, not raw PDFs. For PDF content, suggest /arxiv with download.
  • Rate limiting: arXiv source download may rate-limit. If HTTP 429 occurs, wait 5 seconds and retry once. If still blocked, report the error and suggest /deepxiv as alternative.
  • Complementary, not competing: This skill complements /arxiv (search + download) and /deepxiv (progressive reading). Do not re-implement their functionality.

Integration with Other Skills

As enrichment in /research-lit

/research-lit can use this skill's Tier 1 (overview) as a fast enrichment step between search and deep analysis. After finding arXiv papers in Step 1, fetch AlphaXiv overviews to quickly assess relevance before committing to full-text reads:

Step 1: Search → list of arXiv IDs
Step 1.5: AlphaXiv overview for top 5-8 papers (this skill, Tier 1 only)
Step 2: Deep analysis only for papers that pass the relevance filter

This saves significant tokens by filtering out marginally relevant papers before deep reading.

As follow-up from other skills

After /research-lit, /novelty-check, or /idea-discovery surface a specific paper, users can invoke /alphaxiv PAPER_ID for a fast deep-dive without re-running the full survey.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.62%
按下载量换算81

Claude

31.79%
按下载量换算77

Cursor

19.71%
按下载量换算48

Gemini CLI

9.41%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills