deepxiv
Search and progressively read open-access academic papers through DeepXiv. Use when the user wants layered paper access, section-level reading, trending papers, or DeepXiv-backed literature retrieval.
npx skills add majiayu000/claude-skill-registry --skill deepxiv-wanshuiyin-auto-claude-code-res --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# DeepXiv Paper Search & Progressive Reading Search topic or paper ID: $ARGUMENTS ## Role & Positioning DeepXiv is the **progressive-reading** literature source: | Skill | Best for | |------|----------| | `/arxiv` | Direct preprint search and PDF download | | `/semantic-scholar` | Published venue metadata, citation counts, DOI links | | `/deepxiv` | Layered reading: search → brief → head → section, plus trending and web search | Use DeepXiv when you want to avoid loading full papers too early. ## Constants - **DEEPXIV_FETCHER** — canonical name `deepxiv_fetch.py`, resolved per [`shared-references/integration-contract.md`](../shared-references/integration-contract.md) §2 (Policy D1 — primary + fallback cascade). If unresolved (canonical chain exhausted), fall back to the raw `deepxiv` CLI (documented per command below). - **MAX_RESULTS = 10** — Default number of results to return. > Overrides (append to arguments): > - `/deepxiv "agent memory" - max: 5` — top 5 results > - `/deepxiv "2409.05591" - brief` — quick paper summary > - `/deepxiv "2409.05591" - head` — metadata + section overview > - `/deepxiv "2409.05591" - section: Introduction` — read one section only > - `/deepxiv "tre
- Role & Positioning
- Constants
- Setup
- Workflow
- Step 1: Parse Arguments
- Step 2: Locate the Adapter
- Step 3: Execute the Minimal Command
- Step 4: Present Results
- Step 5: Escalate Depth Only When Needed
- Step 6: Update Research Wiki (if active)
- Key Rules
pip install deepxiv-sdk
cd "$(git rev-parse --show-toplevel 2>/dev/null || pwd)" || exit 1
if [ -z "${ARIS_REPO:-}" ] && [ -f .aris/installed-skills.txt ]; then
fi
Smoke test (optional — adapter resolution shown to user). The cascade
in Step 3 below branches purely on `[ -n "$DEEPXIV_FETCHER" ]`; a
resolved-but-non-functional adapter is not currently auto-demoted.
if [ -n "$DEEPXIV_FETCHER" ]; then
echo "DeepXiv adapter resolved at: $DEEPXIV_FETCHER" >&2
elseWhat does the deepxiv skill do?
Search and progressively read open-access academic papers through DeepXiv. Use when the user wants layered paper access, section-level reading, trending papers, or DeepXiv-backed literature retrieval.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill deepxiv-wanshuiyin-auto-claude-code-res --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
