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
  • 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.

Back to skills

Arxiv Scholar 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.

60 stars
0 votes
0 copies
0 views
Added 9/23/2026
researchgobashexpressapi

Works with

api

Security Analysis

A100/100

Scanned 9/23/2026

Install to Claude Code

$npx -y skills add lxyeternal/MalSkillBench --skill arxiv-scholar-search --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Arxiv Scholar Search?

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

Security grade badge for Arxiv Scholar Search
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/lxyeternal-arxiv-scholar-search/badge)](https://www.skillsdirectory.com/skills/lxyeternal-arxiv-scholar-search)

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

Download Zip
Files
SKILL.md
---
name: arxiv-scholar-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.
---

# 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

lxyeternallxyeternal
View sourceMore from lxyeternal →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

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

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Competitor Analysis

This skill provides comprehensive analysis of competitor SEO and GEO strategies, revealing what's working in your market and identifying opportunities to outperform the competition.

1823 votes

Deep Research

Universal deep research agent team. 13-agent pipeline for rigorous academic research on any topic. 8 modes: full research, quick brief, paper review, lit-review, fact-check, three-way literature scan, Socratic guided research dialogue, and systematic review with optional meta-analysis. Covers research question formulation, Socratic mentoring, methodology design, systematic literature search, source verification, cross-source synthesis, risk of bias assessment, meta-analysis, APA 7.0 report co...

486982 votes

Paperclip Distill

Use when an operation issue is a Paperclip cursor-window, distill, or backfill — `operationType: "distill"` or `"backfill"` and the body references a Paperclip source bundle for a project or root issue. Turn raw Paperclip activity into a wiki-insightful project page, decisions log, and history note. This skill exists specifically to replace the stiff, datestamp-heavy templated output that the deterministic distiller produces.

805541 votes

Academic Pipeline

Orchestrator for the full academic research pipeline: research -> write -> integrity check -> review -> revise -> re-review -> re-revise -> final integrity check -> finalize. Coordinates deep-research, academic-paper, and academic-paper-reviewer into a seamless 10-stage workflow with mandatory, coverage-bounded integrity checks, two-stage peer review, and auditable quality-assurance artifacts. Triggers on: academic pipeline, research to paper, full paper workflow, paper pipeline, end-to-end p...

486981 votes

Exa Search

Semantic search, similar content discovery, and structured research using Exa API

304951 votes
View all in research →