一键导入
arxiv
Search ArXiv for scientific preprints in biology, chemistry, and related fields
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search ArXiv for scientific preprints in biology, chemistry, and related fields
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
Read a CSV or XLSX file and return columns, shape, dtypes, and first N rows as JSON.
Execute arbitrary Python code and return stdout. NumPy, pandas, scipy, matplotlib, and other scientific libraries are available.
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.
| name | arxiv |
| description | Search ArXiv for scientific preprints in biology, chemistry, and related fields |
| metadata | null |
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