qodex-ai/ai-agent-skills

chat-with-arxiv

Build interactive chat agents for exploring and discussing academic research papers from ArXiv.

First seen Jan 22, 2026

Installation

$ npx skills add qodex-ai/ai-agent-skills --skill chat-with-arxiv

Summary

  • Build interactive chat agents for exploring and discussing academic research papers from ArXiv.
  • Covers paper retrieval, content processing, question-answering, and research synthesis.
  • Use when building research assistants, paper summarization tools, academic knowledge bases, or scientific literature chatbots.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from qodex-ai/ai-agent-skills · top by installs.

npx skills add qodex-ai/ai-agent-skills

Browse all from qodex-ai/ai-agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 42
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,268 B
  • docs SUMMARY.md 3,945 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 301 installs

SKILL.md

Chat with ArXiv

Build intelligent agents that understand, discuss, and synthesize academic research papers from ArXiv, enabling conversational exploration of scientific literature.

Overview

ArXiv chat agents combine:

  • Paper Discovery: Search and retrieve relevant research
  • Content Processing: Extract and understand paper content
  • Question Answering: Answer questions about papers
  • Research Synthesis: Identify connections between papers
  • Conversational Interface: Natural discussion about research

Applications

  • Research assistant for literature review
  • Paper summarization and explanation
  • Topic exploration across multiple papers
  • Citation analysis and connection finding
  • Trend identification in research areas
  • Thesis and dissertation support

Architecture

User Query
    ↓
Query Classifier (Paper Search vs Q&A)
    ├→ Paper Search
    │  ├ Query ArXiv API
    │  ├ Retrieve papers
    │  └ Process metadata
    │
    ├→ Question Answering
    │  ├ Retrieve relevant papers
    │  ├ Extract relevant sections
    │  ├ Generate answer with LLM
    │  └ Cite sources
    │
    └→ Conversational Analysis
       ├ Analyze paper relationships
       ├ Identify themes
       └ Synthesize findings
    ↓
Response with Citations

Paper Discovery and Retrieval

1. ArXiv API Integration

See [examples/arxivpaperretriever.py](examples/arxivpaperretriever.py) for ArXivPaperRetriever:

  • Search papers by query with relevance ranking
  • Search by category, author, or title keywords
  • Retrieve trending papers by category and date range
  • Find similar papers to a given paper
  • Extract key terms from paper abstracts

2. Paper Content Processing

See [examples/papercontentprocessor.py](examples/papercontentprocessor.py) for PaperContentProcessor:

  • Download and extract PDF content
  • Parse paper structure (abstract, introduction, methodology, results, conclusion, references)
  • Extract citations from papers
  • Cache processed papers for performance
  • Chunk papers for RAG integration

Question Answering System

1. RAG-Based QA

See [examples/paperquestionanswerer.py](examples/paperquestionanswerer.py) for PaperQuestionAnswerer:

  • Search for relevant papers from ArXiv
  • Download and process papers
  • Chunk papers for RAG retrieval
  • Retrieve most relevant chunks using embeddings
  • Generate answers with proper citations

2. Multi-Paper Synthesis

Build synthesis capabilities to:

  • Analyze multiple papers on a topic
  • Extract key findings and conclusions
  • Identify common research themes
  • Generate comprehensive synthesis of research area

Conversational Interface

1. Multi-Turn Conversation

See [examples/arxivchatbot.py](examples/arxivchatbot.py) for ArXivChatbot:

  • Maintain conversation history
  • Classify query types (single paper Q&A, multi-paper synthesis, trends, general)
  • Handle single paper questions with citations
  • Handle synthesis queries across multiple papers
  • Detect and retrieve research trends
  • Generate contextual responses

2. Context Management

Build context management to:

  • Track current discussion topic
  • Remember discussed papers
  • Find related papers in conversation
  • Summarize discussion progress

Best Practices

Paper Retrieval

  • ✓ Use specific queries for better results
  • ✓ Limit results to relevant papers (max 50-100)
  • ✓ Cache downloaded papers locally
  • ✓ Handle API rate limits
  • ✓ Validate PDF extraction

Question Answering

  • ✓ Always cite sources with ArXiv IDs
  • ✓ Use multiple paper perspectives
  • ✓ Acknowledge uncertainties
  • ✓ Highlight conflicting findings
  • ✓ Suggest related papers

Conversation Management

  • ✓ Maintain conversation history
  • ✓ Track discussed papers
  • ✓ Clarify ambiguous queries
  • ✓ Suggest follow-up questions
  • ✓ Provide paper recommendations

Implementation Checklist

  • Set up ArXiv API client
  • Implement paper retrieval
  • Create PDF processing pipeline
  • Build RAG system for QA
  • Implement multi-paper synthesis
  • Create conversational interface
  • Add search filtering
  • Set up caching system
  • Implement citation formatting
  • Add error handling and logging
  • Test across research areas

Resources

ArXiv API

Paper Processing

RAG and QA

Citation Management