paper-finder — community paper-finder, news-from-future-ai-aed4-claude, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for Research Agents requiring systematic paper discovery and prioritization for literature reviews and research projects. Artificial Intelligence research: News from the Future | Generated by Idea Explorer on 2026-02-10

Hypogenic-AI Hypogenic-AI
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The paper-finder skill by Hypogenic-AI is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Ideal for Research Agents requiring systematic paper discovery and prioritization for literature reviews and research projects.

Core Value

Empowers agents to efficiently search for related work, baseline papers, and methodology references using Python scripts, enabling quick and comprehensive content analysis for research topics.

Capabilities Granted for paper-finder

Automating literature reviews
Finding baseline papers for experiments
Building citation lists for research papers
Prioritizing papers for systematic reviews

! Prerequisites & Limits

  • Requires Python environment
  • Dependent on script execution with specific topic input
  • Limited to topics with existing research papers
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

paper-finder

Install paper-finder, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Paper Finder

Systematic paper discovery and prioritization for research projects.

When to Use

  • Starting a literature review
  • Looking for related work on a topic
  • Finding baseline papers for experiments
  • Searching for methodology references
  • Building a citation list for a research paper

How to Use

Run the helper script from your workspace:

bash
1python .claude/skills/paper-finder/scripts/find_papers.py "your research topic"

Options:

  • --mode fast (default): Quick search
  • --mode diligent: Thorough search (recommended for comprehensive review)
  • --format json: Output as JSON instead of text

Example:

bash
1python .claude/skills/paper-finder/scripts/find_papers.py "hypothesis generation with large language models" --mode fast

Search Strategy

Query Formulation

Use structured queries for better results:

  1. Core concept + Method: "transformer attention mechanism"
  2. Problem + Domain: "few-shot learning natural language processing"
  3. Technique + Application: "graph neural networks drug discovery"
  1. Broad scan: Start with general topic terms
  2. Focused dive: Use specific method/technique names from initial results
  3. Citation chase: Search for highly-cited papers referenced in relevant work

Citation Prioritization

Relevance Tiers

Relevance ScorePriorityAction
3 (High)Must readDownload PDF, read fully, cite
2 (Medium)Should readRead abstract + intro, cite if relevant
1 (Low)OptionalSkim abstract, cite only if needed
0 (Not relevant)SkipDo not include

Citation Count Thresholds

CategoryCitation CountInterpretation
Seminal1000+Foundational work, must cite
Well-established100-999Widely accepted, cite if relevant
Recent/Emerging10-99Current research, cite for novelty
New<10Very recent, check publication venue

Venue Tiers (ML/AI Focus)

Tier 1 (Top venues, high credibility):

  • NeurIPS, ICML, ICLR, ACL, EMNLP, CVPR, ICCV

Tier 2 (Strong venues):

  • AAAI, IJCAI, NAACL, COLING, ECCV, WACV

Tier 3 (Good venues):

  • *ACL workshops, COLM, EACL, CoNLL

Preprints (arXiv):

  • Check for peer-reviewed version first
  • Cite arXiv only if no published version exists

Screening Workflow

Phase 1: Title Screening

  • Review titles from search results
  • Mark papers as "include", "exclude", or "maybe"
  • Goal: ~50% reduction

Phase 2: Abstract Screening

  • Read abstracts for included/maybe papers
  • Evaluate: relevance, methodology, findings
  • Goal: Identify key papers for deeper reading

Phase 3: Full-Text Review

  • Download and read full PDFs for key papers
  • Extract: methods, results, limitations, citations
  • Use the PDF chunker for detailed reading (see below)

Output Structure

Returns relevance-ranked papers with:

  • Title, authors, year
  • Abstract (already extracted)
  • URL for download
  • Relevance score (0-3, focus on papers with score >= 2)
  • Citation count

After Finding Papers

  1. Download PDFs for papers with relevance >= 2
  2. Read abstracts first (already provided in output)
  3. Only read full PDFs for most relevant papers
  4. Write notes to literature_review.md immediately
  5. Track citations for references.bib

Reading Large PDFs

Use the PDF chunker to split papers into smaller PDF files that can be read directly. This preserves all formatting perfectly (unlike text extraction which loses formatting).

Dependencies:

bash
1# Using uv (recommended): 2uv add pypdf 3 4# Or with pip: 5pip install pypdf

How to run:

bash
1python .claude/skills/paper-finder/scripts/pdf_chunker.py <pdf_path>

Options:

  • --pages-per-chunk N: Number of pages per chunk (default: 1)
  • --output-dir DIR: Output directory (default: <pdf_dir>/pages)

Output:

  • Creates PDF chunk files: <pdf_name>_chunk_001.pdf, <pdf_name>_chunk_002.pdf, etc.
  • Creates a manifest: <pdf_name>_manifest.txt listing all chunks with page ranges

Integration with screening workflow:

  1. Run the chunker on papers before detailed reading
  2. For abstract skimming: read only chunk 1 (page 1 or pages 1-3)
  3. For deep reading: read ALL chunk PDFs sequentially, writing notes after each
  4. Check the manifest to see how many chunks exist
  5. IMPORTANT: Do not skip chunks - methodology and results are in later chunks

If Paper-Finder Service Not Running

The script will show a fallback message. Use manual search instead:

Manual search works well - paper-finder is just a convenience for faster, more targeted results.

References

See references/ folder for:

  • search_strategies.md: Detailed search query formulation
  • prioritization_guide.md: Extended prioritization criteria

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is paper-finder?

Ideal for Research Agents requiring systematic paper discovery and prioritization for literature reviews and research projects. Artificial Intelligence research: News from the Future | Generated by Idea Explorer on 2026-02-10

How do I install paper-finder?

Run the command: npx killer-skills add Hypogenic-AI/news-from-future-ai-aed4-claude. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for paper-finder?

Key use cases include: Automating literature reviews, Finding baseline papers for experiments, Building citation lists for research papers, Prioritizing papers for systematic reviews.

Which IDEs are compatible with paper-finder?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for paper-finder?

Requires Python environment. Dependent on script execution with specific topic input. Limited to topics with existing research papers.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Hypogenic-AI/news-from-future-ai-aed4-claude. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use paper-finder immediately in the current project.

Related Skills

Looking for an alternative to paper-finder or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI