Agent skill
arxiv-search
Search arXiv preprint repository for papers in physics, mathematics, computer science, quantitative biology, and related fields.
Install this agent skill to your Project
npx add-skill https://github.com/DougTrajano/pydantic-ai-skills/tree/main/examples/skills/arxiv-search
SKILL.md
arXiv Search Skill
This skill provides access to arXiv, a free distribution service and open-access archive for scholarly articles in physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering, systems science, and economics.
When to Use This Skill
Use this skill when you need to:
- Find preprints and recent research papers before journal publication
- Search for papers in computational biology, bioinformatics, or systems biology
- Access mathematical or statistical methods papers relevant to biology
- Find machine learning papers applied to biological problems
- Get the latest research that may not yet be in PubMed
Skill Scripts
arxiv_search
The arxiv_search script accepts the following arguments:
query(required): Search query string (e.g., "neural networks protein structure", "single cell RNA-seq")max-papers(optional): Maximum number of papers to retrieve (default: 10)
Usage Examples
Search for computational biology papers (default 10 results):
- query: "protein folding prediction"
Search for machine learning papers with limited results:
- query: "transformer attention mechanism"
- max-papers: 3
General search with custom limit:
- query: "your search query"
- max-papers: 5
Output Format
The script returns formatted results with:
- Paper title
- Summary/abstract
- arXiv URL
Dependencies
This script requires the arxiv package, which should be installed in your environment.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
web-research
Use this skill for requests related to web research; it provides a structured approach to conducting comprehensive web research.
pydanticai-docs
Use this skill whenever the user is working with the Pydantic AI framework — including building AI agents, defining structured outputs with Pydantic models, wiring up tools/function calling, configuring model providers (OpenAI, Anthropic, Gemini, etc.), managing dependencies via agent context, handling streaming responses, or debugging agent runs. Trigger this skill even for adjacent tasks like "how do I make my agent return JSON", "set up a multi-step agent", "add a tool to my agent", or "validate LLM output with Pydantic" — any time Pydantic AI is mentioned or implied as the target framework.
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Claude Code Guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
Didn't find tool you were looking for?