aris
Research-mindset catalog distilled from ARIS skills, for subagent Read on demand.
This skill should be used when the user asks to "search for papers", "get paper info", "download LaTeX source", "generate BibTeX citation", "find citing papers", or provides an arXiv ID or arXiv URL.
$ npx -y skills add AutoResearch-Factory/Agon --skill arxiv-tools --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/arxiv-toolsContext preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user asks to "search for papers", "get paper info", "download LaTeX source", "generate BibTeX citation", "find citing papers", or provides an arXiv ID or arXiv URL.
name: arxiv-tools description: > This skill should be used when the user asks to "search for papers", "get paper info", "download LaTeX source", "generate BibTeX citation", "find citing papers", or provides an arXiv ID or arXiv URL.
Six subcommands available: search (find papers), info (metadata), tex (download full text), infotex (info + tex combined), bib (BibTeX), cited (reverse citation lookup).
Script dependencies are declared in inline metadata at the top of the file — you are responsible for installing them yourself.
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" search "keywords"
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" search "keywords" --max 10
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" search "keywords" --source s2|openalex|arxivS2-specific filter parameters:
--year 2024 # single year --year 2020-2024 # year range --fields-of-study "Computer Science,Physics" --pub-types "JournalArticle,Conference" --min-citations 50 --venue "NeurIPS" --open-access # open-access only
S2 bulk search (up to 1000 results, supports sorting and pagination):
--bulk --sort "citationCount:desc" --bulk --token <token from previous page> # pagination
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" info <arXiv ID>Prints the metadata (title, authors, date, categories, PDF URL, abstract).
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" tex <arXiv ID>Downloads the tex source and returns the directory path and structure, preserving full LaTeX formatting and figures. If the source is unavailable, falls back to PDF download and text extraction.
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" infotex <arXiv ID>Runs `info` then `tex` in sequence on a single paper. Use this when you want both the at-a-glance context and the full text in one shot.
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" bib <arXiv ID>
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" bib <arXiv ID> -o references.bib # append to fileFind which papers cite a given paper.
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" cited <arXiv ID>
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" cited <arXiv ID> --max 50
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" cited <arXiv ID> --offset 20 # pagination
uv run "${CLAUDE_PLUGIN_ROOT}/skills/arxiv-tools/arxiv_tool.py" cited <arXiv ID> --source s2|openalex| Subcommand | Fallback order | |------------|---------------| | search | S2 → OpenAlex → arXiv | | cited | S2 → OpenAlex | | info / bib | local cache → OpenAlex → S2 → arXiv | | tex | local cache → arXiv | | infotex | info fallback, then tex fallback (runs sequentially) |
Claude Code plugin for autonomous AI research — multi-agent loops take a bare topic all the way to running experiments, with no human-written experimental code.
Research-mindset catalog distilled from ARIS skills, for subagent Read on demand.
Use when checking novelty of a research idea or proposal. Extract core claims, do multi-source arxiv / Scholar / S2 search, grade each claim HIGH/MEDIUM/LOW.…
Use when you need project-specific compute/server notes to pick a server or confirm a running task, if the project has filled its server manual or monitoring…
Research-persona catalog distilled from Sibyl prompts, for subagent Read on demand. 与 ARIS 互补 — ARIS 按阶段组织, Sibyl 按人格视角组织.