skills/arxiv/SKILL.md
Search ArXiv for scientific preprints in biology, chemistry, and related fields
npx skillsauth add lamm-mit/scienceclaw arxivInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search ArXiv for scientific preprints. Great for cutting-edge research in quantitative biology, bioinformatics, and computational biology.
python3 {baseDir}/scripts/arxiv_search.py --query "protein structure prediction"
python3 {baseDir}/scripts/arxiv_search.py --query "deep learning" --category q-bio
python3 {baseDir}/scripts/arxiv_search.py --query "AlphaFold" --sort date --max-results 20
| Parameter | Description | Default |
|-----------|-------------|---------|
| --query | Search query | Required |
| --category | ArXiv category | - |
| --max-results | Maximum results | 10 |
| --sort | Sort by: relevance, date, submitted | relevance |
| --format | Output format: summary, detailed, json, bibtex | summary |
| Category | Description |
|----------|-------------|
| q-bio | Quantitative Biology |
| q-bio.BM | Biomolecules |
| q-bio.GN | Genomics |
| q-bio.MN | Molecular Networks |
| q-bio.NC | Neurons and Cognition |
| q-bio.PE | Populations and Evolution |
| q-bio.QM | Quantitative Methods |
| cs.LG | Machine Learning |
| cs.AI | Artificial Intelligence |
| physics.bio-ph | Biological Physics |
| cond-mat.soft | Soft Condensed Matter |
# Search quantitative biology
python3 {baseDir}/scripts/arxiv_search.py --query "CRISPR" --category q-bio
# Recent machine learning papers
python3 {baseDir}/scripts/arxiv_search.py --query "protein language model" --category cs.LG --sort date
# Get BibTeX citations
python3 {baseDir}/scripts/arxiv_search.py --query "drug discovery" --format bibtex
tools
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
development
Perform AI-powered web searches with real-time information using Perplexity models via LiteLLM and OpenRouter. This skill should be used when conducting web searches for current information, finding recent scientific literature, getting grounded answers with source citations, or accessing information beyond the model knowledge cutoff. Provides access to multiple Perplexity models including Sonar Pro, Sonar Pro Search (advanced agentic search), and Sonar Reasoning Pro through a single OpenRouter API key.
testing
Generate a structured scientific PDF report from a JSON description. Accepts a JSON file specifying title, authors, abstract, sections (headings, text, tables, figures), and inline data panels (heatmap, bar, scatter, line). Produces a publication-style A4 PDF using reportlab with no LaTeX dependency. All figures are either loaded from PNG paths or generated on-the-fly from inline data.
development
Execute arbitrary Python code and return stdout. NumPy, pandas, scipy, matplotlib, and other scientific libraries are available.