Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Arxiv Academic Paper Search

ASecurity

Use the arXiv API for academic paper discovery, relevance screening, and structured output. Suitable for topic-based search, latest-paper discovery, fixed-template reporting, and citation-oriented workflows.

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgobashexpressapi

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill arxiv-academic-paper-search --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Arxiv Academic Paper Search?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Arxiv Academic Paper Search
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-arxiv-academic-paper-search/badge)](https://www.skillsdirectory.com/skills/rondoflow-arxiv-academic-paper-search)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: arxiv-academic-paper-search
description: "Use the arXiv API for academic paper discovery, relevance screening, and structured output. Suitable for topic-based search, latest-paper discovery, fixed-template reporting, and citation-oriented workflows."
category: "Development"
author: community
version: "1.0.0"
icon: code
---

# Scholar Search Workflow

This skill only uses arXiv as the data source. The workflow is fixed:

1. Read user input and parse the search intent.
2. Call the arXiv API (via `arxiv_search`).
3. Evaluate result quality and decide whether another search round is needed.
4. Output results using the required template.

## 0) File Layout (Overview)

| File Path | Purpose | When to Check |
| --- | --- | --- |
| `SKILL.md` | Main entry: task parsing, query syntax, calling conventions, quality control | Check first at the beginning of every task |

## 1) Parse User Search Requirements

Extract the following constraints first:

1. Topic keywords (Chinese or English).
2. Time preference (for example: "latest", "this year", "last three years").
3. Number of results (for example: 5, 10, 20).
4. Output goal (paper discovery, comparison, or brief survey).
5. Output language (Chinese or English).

Keyword strategy:

1. Use a broad query in round one (topic terms only).
2. Add constraint terms in round two (method terms, task terms, category terms).
3. If results are too few, switch to synonyms or broader terms.

## 2) arXiv API Guide (Built-in)

### 2.1 API Endpoint

1. Base endpoint: `https://export.arxiv.org/api/query`
2. Request methods: GET (common), POST (optional when parameters are very long)

### 2.2 Core Parameters

1. `search_query`: query expression
2. `id_list`: comma-separated list of arXiv IDs
3. `start`: pagination offset (0-based)
4. `max_results`: number of returned entries
5. `sortBy`: `relevance` / `lastUpdatedDate` / `submittedDate`
6. `sortOrder`: `ascending` / `descending`

### 2.3 `search_query` Syntax

Common field prefixes:

1. `ti` (title)
2. `au` (author)
3. `abs` (abstract)
4. `cat` (category)
5. `all` (all fields)

Boolean operators:

1. `AND`
2. `OR`
3. `ANDNOT`

Time syntax (`submittedDate`):

1. Range: `submittedDate:[200701*+TO+200712*]`
2. Specific day: `submittedDate:20101225`

### 2.4 Direct URL Examples

1. Topic query: `https://export.arxiv.org/api/query?search_query=all:electron`
2. Combined query: `https://export.arxiv.org/api/query?search_query=au:del_maestro+AND+ti:checkerboard`
3. Paginated query: `https://export.arxiv.org/api/query?search_query=all:electron&start=0&max_results=10`
4. Sorted query: `https://export.arxiv.org/api/query?search_query=ti:%22electron+thermal+conductivity%22&sortBy=lastUpdatedDate&sortOrder=descending`

### 2.5 Rate Limits and Stability (Must Follow)

1. Keep request frequency at no more than one request every 3 seconds.
2. Use only one active connection at a time.
3. Avoid high-frequency repeated queries; reuse existing results whenever possible.

## 3) Calling Conventions (Must Match Actual Use)

Standard call example:
```bash
curl -s "https://export.arxiv.org/api/query?search_query=all:multimodal+AND+cat:cs.CL&start=0&max_results=10&sortBy=submittedDate&sortOrder=descending"
```

Parameter notes:

1. `search_query`: arXiv query expression (supports field prefixes and boolean operators).
2. `start`: pagination offset (0-based).
3. `max_results`: number of returned entries; recommend `5-20`.
4. `sortBy`: recommend `submittedDate` or `lastUpdatedDate`.
5. `sortOrder`: recommend `descending`.

## 4) Decide Whether to Continue Searching

Run one more search round if any condition below is met:

1. Too few papers are returned (for example, `< 3`).
2. Results are clearly off-topic.
3. Key fields are frequently missing (title, link, abstract).

Stop searching when:

1. Result count reaches the target or an acceptable range.
2. Topic relevance is high.
3. Additional search rounds provide low value.

## 5) Output Requirements

Each paper must use the following structure:

```markdown
-----------
# {Index}. **{Paper Title}**

**Paper Info**: **Venue/Source**: {journal, conference, or source} | **Publication Date**: {yyyy-mm-dd or unknown} | **Source**: [{source name}]({entry link or paper link}) | **PDF**: [PDF link]({pdf link})

### Research Content
{1-2 objective sentences based on the paper content}

### Main Contributions
- {Contribution 1}
- {Contribution 2}
- {Contribution 3}
```

Must follow:

1. Add a standalone line `-----------` before every paper title.
2. Keep the title as a standalone level-1 header line.
3. Keep "Paper Info" in a single line, separated by `|`.
4. Keep the `PDF` field:
   - If a PDF exists: provide a direct link.
   - If no PDF exists: remove the `PDF` field.
5. Content must be based only on source metadata, abstract, or TLDR. No speculation.
6. Do not add conclusions not explicitly supported by the source.
7. All links must come from tool output. Do not fabricate or guess links.
8. Do not fabricate venue, date, or citation count.
9. Write "Research Content" and "Main Contributions" only from returned fields.

## 6) Failure Handling

1. API failure: state the reason and the strategies already attempted.
2. No results: provide actionable keyword rewrite suggestions.
3. Missing fields: explicitly mark as "unknown/missing"; do not fill with inferred data.

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →