[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-google-deepmind-literature-search-arxiv":3,"mdc--3x6kdb-key":36,"related-org-google-deepmind-literature-search-arxiv":865,"related-repo-google-deepmind-literature-search-arxiv":1035},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"literature-search-arxiv","search and retrieve scientific papers from arXiv","Search for scientific papers, preprints, and publications on arXiv. Extract metadata, abstracts, and download full-text PDFs or HTML versions of papers. Use when the user asks to find research papers, literature, or specific arXiv IDs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"google-deepmind","Google DeepMind","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgoogle-deepmind.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"PDF","pdf",{"name":20,"slug":21,"type":15},"Documentation","documentation",{"name":23,"slug":24,"type":15},"Search","search",2333,"https:\u002F\u002Fgithub.com\u002Fgoogle-deepmind\u002Fscience-skills","2026-07-12T07:52:05.534669",null,234,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"GDM Science Skills to speed up agentic scientific workflows with better grounding and higher token efficiency. Integrate insights from AlphaGenome, AFDB, UniProt and 30+ other databases and tools.","https:\u002F\u002Fgithub.com\u002Fgoogle-deepmind\u002Fscience-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fliterature_search_arxiv","---\nname: literature-search-arxiv\ndescription: >\n  Search for scientific papers, preprints, and publications on arXiv. Extract\n  metadata, abstracts, and download full-text PDFs or HTML versions of papers.\n  Use when the user asks to find research papers, literature, or specific arXiv\n  IDs.\n---\n\n# arXiv Search and Retrieval\n\n## Prerequisites\n\n1.  **`uv`**: Read the `uv` skill and follow its Setup instructions to ensure\n    `uv` is installed and on PATH.\n2.  **User Notification**: If .licenses\u002Fliterature_search_arxiv_LICENSE.txt does\n    not already exist in the workspace root directory then (1) prominently\n    notify the user to check the terms at\n    https:\u002F\u002Finfo.arxiv.org\u002Fhelp\u002Fapi\u002Findex.html and to always check the license\n    of the papers retrieved by the skill for any restrictions, then (2) create\n    the file recording the notification text and timestamp.\n\n## Core Rules\n\n-   **Terms of Use**: You MUST respect arXiv's Terms of Use.\n    -   Maximum 1 request every 3 seconds.\n    -   The provided utility scripts handle rate limiting automatically. Always\n        use these scripts rather than writing your own curl\u002Fpython requests.\n-   If this skill is used, ensure this is mentioned in the output AND list the\n    URLs of all papers that were used in producing the output.\n\n## Utility Scripts\n\n**1. Search and Extract Metadata**\n\nSearch arXiv and return a clean JSON array of matching papers.\n\n```bash\nuv run scripts\u002Fsearch_arxiv.py --query \"au:einstein AND ti:relativity\" \\\n  --max_results 5 2>\u002Fdev\u002Fnull > \u002Ftmp\u002Farxiv_search_results.json\n```\n\n> **Important**: The tool outputs a large JSON result to stdout. Requesting 100+\n> results will produce a massive JSON that might exceed your context length.\n> Limit `--max_results` (e.g., 5-10) or paginate carefully using `--start`.\n> Always redirect output to a file and parse it separately, otherwise terminal\n> output will be truncated.\n\n*Returned Metadata:* JSON results include `id`, `title`, `summary`, `published`,\n`authors`, `pdf_url`, `primary_category`, `doi`, `journal_ref`, and `comment`.\nNote: the `doi` field only contains DOI information in case the paper has an\nexternal DOI and if only an arXiv-issued DOI exists, this is DOI is not\nreturned.\n\n*Options:*\n\n-   `--query`: Search string. See\n    [references\u002Fquery_syntax.md](references\u002Fquery_syntax.md) for advanced\n    syntax.\n-   `--id_list`: Comma-separated list of arXiv IDs to fetch directly (e.g.,\n    `1706.03762v5`).\n-   `--start`: Pagination offset (default 0).\n-   `--max_results`: Number of results to return (default 10).\n-   `--sort_by`: `relevance`, `lastUpdatedDate`, or `submittedDate`. (Use\n    `--sort_by submittedDate --sort_order descending` for the most recent\n    papers).\n-   `--sort_order`: `ascending` or `descending`.\n\n**2. Download Paper (PDF or HTML)**\n\nDownload the full text of a paper to your local workspace for reading.\n\n```bash\nuv run scripts\u002Fdownload_paper.py --id 1706.03762 --format pdf --output attention.pdf\n```\n\n*Options:*\n\n-   `--id`: The arXiv ID (e.g., `1706.03762` or `1706.03762v5`).\n-   `--format`: `pdf` or `html`. Note: HTML is only available for newer papers.\n-   `--output`: Filepath to save the downloaded document.\n\n> **Important**: when downloading papers, make sure you download them to a\n> location where you do not overwrite other files and do not clutter existing\n> directory structure.\n\n**3. Download Paper Source (tar.gz)**\n\nDownload the LaTeX source files of a paper to your local workspace. Note that\nnot all papers have source available.\n\n```bash\nuv run scripts\u002Fdownload_paper_source.py --id 2010.11645 --output source.tar.gz\n```\n\n*Options:*\n\n-   `--id`: The arXiv ID (e.g., `2010.11645`).\n-   `--output`: Filepath to save the downloaded tar.gz file.\n\n> **Caution**: Care should be exercised when untar'ing the downloaded file for\n> security and to avoid cluttering your filesystem, as archives may contain many\n> files or unexpected directory structures.\n>\n> **Safe Extraction Requirements**: NEVER extract directly into your working\n> directory! Always extract into a dedicated new directory: `bash mkdir\n> paper_source && tar -xzf source.tar.gz -C paper_source`\n\n## Reference\n\n-   **Advanced Query Syntax**: See\n    [references\u002Fquery_syntax.md](references\u002Fquery_syntax.md) for prefixes (au,\n    ti, abs), booleans, and date filtering.\n\n## Workflow\n\n1.  Search for papers using `search_arxiv.py`. Review the JSON summaries.\n2.  If full text is needed, use `download_paper.py` to fetch the PDF or HTML.\n3.  If downloading a PDF, verify the PDF is not empty or corrupted.\n4.  Read the downloaded file using standard file reading tools.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,57,112,118,150,156,165,170,265,295,387,395,523,531,536,589,596,658,670,678,683,724,731,760,789,795,814,820,859],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"arxiv-search-and-retrieval",[47],{"type":48,"value":49},"text","arXiv Search and Retrieval",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"prerequisites",[55],{"type":48,"value":56},"Prerequisites",{"type":42,"tag":58,"props":59,"children":60},"ol",{},[61,92],{"type":42,"tag":62,"props":63,"children":64},"li",{},[65,76,78,83,85,90],{"type":42,"tag":66,"props":67,"children":68},"strong",{},[69],{"type":42,"tag":70,"props":71,"children":73},"code",{"className":72},[],[74],{"type":48,"value":75},"uv",{"type":48,"value":77},": Read the ",{"type":42,"tag":70,"props":79,"children":81},{"className":80},[],[82],{"type":48,"value":75},{"type":48,"value":84}," skill and follow its Setup instructions to ensure\n",{"type":42,"tag":70,"props":86,"children":88},{"className":87},[],[89],{"type":48,"value":75},{"type":48,"value":91}," is installed and on PATH.",{"type":42,"tag":62,"props":93,"children":94},{},[95,100,102,110],{"type":42,"tag":66,"props":96,"children":97},{},[98],{"type":48,"value":99},"User Notification",{"type":48,"value":101},": If .licenses\u002Fliterature_search_arxiv_LICENSE.txt does\nnot already exist in the workspace root directory then (1) prominently\nnotify the user to check the terms at\n",{"type":42,"tag":103,"props":104,"children":108},"a",{"href":105,"rel":106},"https:\u002F\u002Finfo.arxiv.org\u002Fhelp\u002Fapi\u002Findex.html",[107],"nofollow",[109],{"type":48,"value":105},{"type":48,"value":111}," and to always check the license\nof the papers retrieved by the skill for any restrictions, then (2) create\nthe file recording the notification text and timestamp.",{"type":42,"tag":51,"props":113,"children":115},{"id":114},"core-rules",[116],{"type":48,"value":117},"Core Rules",{"type":42,"tag":119,"props":120,"children":121},"ul",{},[122,145],{"type":42,"tag":62,"props":123,"children":124},{},[125,130,132],{"type":42,"tag":66,"props":126,"children":127},{},[128],{"type":48,"value":129},"Terms of Use",{"type":48,"value":131},": You MUST respect arXiv's Terms of Use.\n",{"type":42,"tag":119,"props":133,"children":134},{},[135,140],{"type":42,"tag":62,"props":136,"children":137},{},[138],{"type":48,"value":139},"Maximum 1 request every 3 seconds.",{"type":42,"tag":62,"props":141,"children":142},{},[143],{"type":48,"value":144},"The provided utility scripts handle rate limiting automatically. Always\nuse these scripts rather than writing your own curl\u002Fpython requests.",{"type":42,"tag":62,"props":146,"children":147},{},[148],{"type":48,"value":149},"If this skill is used, ensure this is mentioned in the output AND list the\nURLs of all papers that were used in producing the output.",{"type":42,"tag":51,"props":151,"children":153},{"id":152},"utility-scripts",[154],{"type":48,"value":155},"Utility Scripts",{"type":42,"tag":157,"props":158,"children":159},"p",{},[160],{"type":42,"tag":66,"props":161,"children":162},{},[163],{"type":48,"value":164},"1. Search and Extract Metadata",{"type":42,"tag":157,"props":166,"children":167},{},[168],{"type":48,"value":169},"Search arXiv and return a clean JSON array of matching papers.",{"type":42,"tag":171,"props":172,"children":177},"pre",{"className":173,"code":174,"language":175,"meta":176,"style":176},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","uv run scripts\u002Fsearch_arxiv.py --query \"au:einstein AND ti:relativity\" \\\n  --max_results 5 2>\u002Fdev\u002Fnull > \u002Ftmp\u002Farxiv_search_results.json\n","bash","",[178],{"type":42,"tag":70,"props":179,"children":180},{"__ignoreMap":176},[181,230],{"type":42,"tag":182,"props":183,"children":186},"span",{"class":184,"line":185},"line",1,[187,192,198,203,208,214,219,224],{"type":42,"tag":182,"props":188,"children":190},{"style":189},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[191],{"type":48,"value":75},{"type":42,"tag":182,"props":193,"children":195},{"style":194},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[196],{"type":48,"value":197}," run",{"type":42,"tag":182,"props":199,"children":200},{"style":194},[201],{"type":48,"value":202}," scripts\u002Fsearch_arxiv.py",{"type":42,"tag":182,"props":204,"children":205},{"style":194},[206],{"type":48,"value":207}," --query",{"type":42,"tag":182,"props":209,"children":211},{"style":210},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[212],{"type":48,"value":213}," \"",{"type":42,"tag":182,"props":215,"children":216},{"style":194},[217],{"type":48,"value":218},"au:einstein AND ti:relativity",{"type":42,"tag":182,"props":220,"children":221},{"style":210},[222],{"type":48,"value":223},"\"",{"type":42,"tag":182,"props":225,"children":227},{"style":226},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[228],{"type":48,"value":229}," \\\n",{"type":42,"tag":182,"props":231,"children":233},{"class":184,"line":232},2,[234,239,245,250,255,260],{"type":42,"tag":182,"props":235,"children":236},{"style":194},[237],{"type":48,"value":238},"  --max_results",{"type":42,"tag":182,"props":240,"children":242},{"style":241},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[243],{"type":48,"value":244}," 5",{"type":42,"tag":182,"props":246,"children":247},{"style":210},[248],{"type":48,"value":249}," 2>",{"type":42,"tag":182,"props":251,"children":252},{"style":194},[253],{"type":48,"value":254},"\u002Fdev\u002Fnull",{"type":42,"tag":182,"props":256,"children":257},{"style":210},[258],{"type":48,"value":259}," >",{"type":42,"tag":182,"props":261,"children":262},{"style":194},[263],{"type":48,"value":264}," \u002Ftmp\u002Farxiv_search_results.json\n",{"type":42,"tag":266,"props":267,"children":268},"blockquote",{},[269],{"type":42,"tag":157,"props":270,"children":271},{},[272,277,279,285,287,293],{"type":42,"tag":66,"props":273,"children":274},{},[275],{"type":48,"value":276},"Important",{"type":48,"value":278},": The tool outputs a large JSON result to stdout. Requesting 100+\nresults will produce a massive JSON that might exceed your context length.\nLimit ",{"type":42,"tag":70,"props":280,"children":282},{"className":281},[],[283],{"type":48,"value":284},"--max_results",{"type":48,"value":286}," (e.g., 5-10) or paginate carefully using ",{"type":42,"tag":70,"props":288,"children":290},{"className":289},[],[291],{"type":48,"value":292},"--start",{"type":48,"value":294},".\nAlways redirect output to a file and parse it separately, otherwise terminal\noutput will be truncated.",{"type":42,"tag":157,"props":296,"children":297},{},[298,304,306,312,314,320,321,327,328,334,336,342,343,349,350,356,357,363,364,370,372,378,380,385],{"type":42,"tag":299,"props":300,"children":301},"em",{},[302],{"type":48,"value":303},"Returned Metadata:",{"type":48,"value":305}," JSON results include ",{"type":42,"tag":70,"props":307,"children":309},{"className":308},[],[310],{"type":48,"value":311},"id",{"type":48,"value":313},", ",{"type":42,"tag":70,"props":315,"children":317},{"className":316},[],[318],{"type":48,"value":319},"title",{"type":48,"value":313},{"type":42,"tag":70,"props":322,"children":324},{"className":323},[],[325],{"type":48,"value":326},"summary",{"type":48,"value":313},{"type":42,"tag":70,"props":329,"children":331},{"className":330},[],[332],{"type":48,"value":333},"published",{"type":48,"value":335},",\n",{"type":42,"tag":70,"props":337,"children":339},{"className":338},[],[340],{"type":48,"value":341},"authors",{"type":48,"value":313},{"type":42,"tag":70,"props":344,"children":346},{"className":345},[],[347],{"type":48,"value":348},"pdf_url",{"type":48,"value":313},{"type":42,"tag":70,"props":351,"children":353},{"className":352},[],[354],{"type":48,"value":355},"primary_category",{"type":48,"value":313},{"type":42,"tag":70,"props":358,"children":360},{"className":359},[],[361],{"type":48,"value":362},"doi",{"type":48,"value":313},{"type":42,"tag":70,"props":365,"children":367},{"className":366},[],[368],{"type":48,"value":369},"journal_ref",{"type":48,"value":371},", and ",{"type":42,"tag":70,"props":373,"children":375},{"className":374},[],[376],{"type":48,"value":377},"comment",{"type":48,"value":379},".\nNote: the ",{"type":42,"tag":70,"props":381,"children":383},{"className":382},[],[384],{"type":48,"value":362},{"type":48,"value":386}," field only contains DOI information in case the paper has an\nexternal DOI and if only an arXiv-issued DOI exists, this is DOI is not\nreturned.",{"type":42,"tag":157,"props":388,"children":389},{},[390],{"type":42,"tag":299,"props":391,"children":392},{},[393],{"type":48,"value":394},"Options:",{"type":42,"tag":119,"props":396,"children":397},{},[398,416,435,445,455,497],{"type":42,"tag":62,"props":399,"children":400},{},[401,407,409,414],{"type":42,"tag":70,"props":402,"children":404},{"className":403},[],[405],{"type":48,"value":406},"--query",{"type":48,"value":408},": Search string. See\n",{"type":42,"tag":103,"props":410,"children":412},{"href":411},"references\u002Fquery_syntax.md",[413],{"type":48,"value":411},{"type":48,"value":415}," for advanced\nsyntax.",{"type":42,"tag":62,"props":417,"children":418},{},[419,425,427,433],{"type":42,"tag":70,"props":420,"children":422},{"className":421},[],[423],{"type":48,"value":424},"--id_list",{"type":48,"value":426},": Comma-separated list of arXiv IDs to fetch directly (e.g.,\n",{"type":42,"tag":70,"props":428,"children":430},{"className":429},[],[431],{"type":48,"value":432},"1706.03762v5",{"type":48,"value":434},").",{"type":42,"tag":62,"props":436,"children":437},{},[438,443],{"type":42,"tag":70,"props":439,"children":441},{"className":440},[],[442],{"type":48,"value":292},{"type":48,"value":444},": Pagination offset (default 0).",{"type":42,"tag":62,"props":446,"children":447},{},[448,453],{"type":42,"tag":70,"props":449,"children":451},{"className":450},[],[452],{"type":48,"value":284},{"type":48,"value":454},": Number of results to return (default 10).",{"type":42,"tag":62,"props":456,"children":457},{},[458,464,466,472,473,479,481,487,489,495],{"type":42,"tag":70,"props":459,"children":461},{"className":460},[],[462],{"type":48,"value":463},"--sort_by",{"type":48,"value":465},": ",{"type":42,"tag":70,"props":467,"children":469},{"className":468},[],[470],{"type":48,"value":471},"relevance",{"type":48,"value":313},{"type":42,"tag":70,"props":474,"children":476},{"className":475},[],[477],{"type":48,"value":478},"lastUpdatedDate",{"type":48,"value":480},", or ",{"type":42,"tag":70,"props":482,"children":484},{"className":483},[],[485],{"type":48,"value":486},"submittedDate",{"type":48,"value":488},". (Use\n",{"type":42,"tag":70,"props":490,"children":492},{"className":491},[],[493],{"type":48,"value":494},"--sort_by submittedDate --sort_order descending",{"type":48,"value":496}," for the most recent\npapers).",{"type":42,"tag":62,"props":498,"children":499},{},[500,506,507,513,515,521],{"type":42,"tag":70,"props":501,"children":503},{"className":502},[],[504],{"type":48,"value":505},"--sort_order",{"type":48,"value":465},{"type":42,"tag":70,"props":508,"children":510},{"className":509},[],[511],{"type":48,"value":512},"ascending",{"type":48,"value":514}," or ",{"type":42,"tag":70,"props":516,"children":518},{"className":517},[],[519],{"type":48,"value":520},"descending",{"type":48,"value":522},".",{"type":42,"tag":157,"props":524,"children":525},{},[526],{"type":42,"tag":66,"props":527,"children":528},{},[529],{"type":48,"value":530},"2. Download Paper (PDF or HTML)",{"type":42,"tag":157,"props":532,"children":533},{},[534],{"type":48,"value":535},"Download the full text of a paper to your local workspace for reading.",{"type":42,"tag":171,"props":537,"children":539},{"className":173,"code":538,"language":175,"meta":176,"style":176},"uv run scripts\u002Fdownload_paper.py --id 1706.03762 --format pdf --output attention.pdf\n",[540],{"type":42,"tag":70,"props":541,"children":542},{"__ignoreMap":176},[543],{"type":42,"tag":182,"props":544,"children":545},{"class":184,"line":185},[546,550,554,559,564,569,574,579,584],{"type":42,"tag":182,"props":547,"children":548},{"style":189},[549],{"type":48,"value":75},{"type":42,"tag":182,"props":551,"children":552},{"style":194},[553],{"type":48,"value":197},{"type":42,"tag":182,"props":555,"children":556},{"style":194},[557],{"type":48,"value":558}," scripts\u002Fdownload_paper.py",{"type":42,"tag":182,"props":560,"children":561},{"style":194},[562],{"type":48,"value":563}," --id",{"type":42,"tag":182,"props":565,"children":566},{"style":241},[567],{"type":48,"value":568}," 1706.03762",{"type":42,"tag":182,"props":570,"children":571},{"style":194},[572],{"type":48,"value":573}," --format",{"type":42,"tag":182,"props":575,"children":576},{"style":194},[577],{"type":48,"value":578}," pdf",{"type":42,"tag":182,"props":580,"children":581},{"style":194},[582],{"type":48,"value":583}," --output",{"type":42,"tag":182,"props":585,"children":586},{"style":194},[587],{"type":48,"value":588}," attention.pdf\n",{"type":42,"tag":157,"props":590,"children":591},{},[592],{"type":42,"tag":299,"props":593,"children":594},{},[595],{"type":48,"value":394},{"type":42,"tag":119,"props":597,"children":598},{},[599,623,647],{"type":42,"tag":62,"props":600,"children":601},{},[602,608,610,616,617,622],{"type":42,"tag":70,"props":603,"children":605},{"className":604},[],[606],{"type":48,"value":607},"--id",{"type":48,"value":609},": The arXiv ID (e.g., ",{"type":42,"tag":70,"props":611,"children":613},{"className":612},[],[614],{"type":48,"value":615},"1706.03762",{"type":48,"value":514},{"type":42,"tag":70,"props":618,"children":620},{"className":619},[],[621],{"type":48,"value":432},{"type":48,"value":434},{"type":42,"tag":62,"props":624,"children":625},{},[626,632,633,638,639,645],{"type":42,"tag":70,"props":627,"children":629},{"className":628},[],[630],{"type":48,"value":631},"--format",{"type":48,"value":465},{"type":42,"tag":70,"props":634,"children":636},{"className":635},[],[637],{"type":48,"value":18},{"type":48,"value":514},{"type":42,"tag":70,"props":640,"children":642},{"className":641},[],[643],{"type":48,"value":644},"html",{"type":48,"value":646},". Note: HTML is only available for newer papers.",{"type":42,"tag":62,"props":648,"children":649},{},[650,656],{"type":42,"tag":70,"props":651,"children":653},{"className":652},[],[654],{"type":48,"value":655},"--output",{"type":48,"value":657},": Filepath to save the downloaded document.",{"type":42,"tag":266,"props":659,"children":660},{},[661],{"type":42,"tag":157,"props":662,"children":663},{},[664,668],{"type":42,"tag":66,"props":665,"children":666},{},[667],{"type":48,"value":276},{"type":48,"value":669},": when downloading papers, make sure you download them to a\nlocation where you do not overwrite other files and do not clutter existing\ndirectory structure.",{"type":42,"tag":157,"props":671,"children":672},{},[673],{"type":42,"tag":66,"props":674,"children":675},{},[676],{"type":48,"value":677},"3. Download Paper Source (tar.gz)",{"type":42,"tag":157,"props":679,"children":680},{},[681],{"type":48,"value":682},"Download the LaTeX source files of a paper to your local workspace. Note that\nnot all papers have source available.",{"type":42,"tag":171,"props":684,"children":686},{"className":173,"code":685,"language":175,"meta":176,"style":176},"uv run scripts\u002Fdownload_paper_source.py --id 2010.11645 --output source.tar.gz\n",[687],{"type":42,"tag":70,"props":688,"children":689},{"__ignoreMap":176},[690],{"type":42,"tag":182,"props":691,"children":692},{"class":184,"line":185},[693,697,701,706,710,715,719],{"type":42,"tag":182,"props":694,"children":695},{"style":189},[696],{"type":48,"value":75},{"type":42,"tag":182,"props":698,"children":699},{"style":194},[700],{"type":48,"value":197},{"type":42,"tag":182,"props":702,"children":703},{"style":194},[704],{"type":48,"value":705}," scripts\u002Fdownload_paper_source.py",{"type":42,"tag":182,"props":707,"children":708},{"style":194},[709],{"type":48,"value":563},{"type":42,"tag":182,"props":711,"children":712},{"style":241},[713],{"type":48,"value":714}," 2010.11645",{"type":42,"tag":182,"props":716,"children":717},{"style":194},[718],{"type":48,"value":583},{"type":42,"tag":182,"props":720,"children":721},{"style":194},[722],{"type":48,"value":723}," source.tar.gz\n",{"type":42,"tag":157,"props":725,"children":726},{},[727],{"type":42,"tag":299,"props":728,"children":729},{},[730],{"type":48,"value":394},{"type":42,"tag":119,"props":732,"children":733},{},[734,750],{"type":42,"tag":62,"props":735,"children":736},{},[737,742,743,749],{"type":42,"tag":70,"props":738,"children":740},{"className":739},[],[741],{"type":48,"value":607},{"type":48,"value":609},{"type":42,"tag":70,"props":744,"children":746},{"className":745},[],[747],{"type":48,"value":748},"2010.11645",{"type":48,"value":434},{"type":42,"tag":62,"props":751,"children":752},{},[753,758],{"type":42,"tag":70,"props":754,"children":756},{"className":755},[],[757],{"type":48,"value":655},{"type":48,"value":759},": Filepath to save the downloaded tar.gz file.",{"type":42,"tag":266,"props":761,"children":762},{},[763,773],{"type":42,"tag":157,"props":764,"children":765},{},[766,771],{"type":42,"tag":66,"props":767,"children":768},{},[769],{"type":48,"value":770},"Caution",{"type":48,"value":772},": Care should be exercised when untar'ing the downloaded file for\nsecurity and to avoid cluttering your filesystem, as archives may contain many\nfiles or unexpected directory structures.",{"type":42,"tag":157,"props":774,"children":775},{},[776,781,783],{"type":42,"tag":66,"props":777,"children":778},{},[779],{"type":48,"value":780},"Safe Extraction Requirements",{"type":48,"value":782},": NEVER extract directly into your working\ndirectory! Always extract into a dedicated new directory: ",{"type":42,"tag":70,"props":784,"children":786},{"className":785},[],[787],{"type":48,"value":788},"bash mkdir paper_source && tar -xzf source.tar.gz -C paper_source",{"type":42,"tag":51,"props":790,"children":792},{"id":791},"reference",[793],{"type":48,"value":794},"Reference",{"type":42,"tag":119,"props":796,"children":797},{},[798],{"type":42,"tag":62,"props":799,"children":800},{},[801,806,808,812],{"type":42,"tag":66,"props":802,"children":803},{},[804],{"type":48,"value":805},"Advanced Query Syntax",{"type":48,"value":807},": See\n",{"type":42,"tag":103,"props":809,"children":810},{"href":411},[811],{"type":48,"value":411},{"type":48,"value":813}," for prefixes (au,\nti, abs), booleans, and date filtering.",{"type":42,"tag":51,"props":815,"children":817},{"id":816},"workflow",[818],{"type":48,"value":819},"Workflow",{"type":42,"tag":58,"props":821,"children":822},{},[823,836,849,854],{"type":42,"tag":62,"props":824,"children":825},{},[826,828,834],{"type":48,"value":827},"Search for papers using ",{"type":42,"tag":70,"props":829,"children":831},{"className":830},[],[832],{"type":48,"value":833},"search_arxiv.py",{"type":48,"value":835},". Review the JSON summaries.",{"type":42,"tag":62,"props":837,"children":838},{},[839,841,847],{"type":48,"value":840},"If full text is needed, use ",{"type":42,"tag":70,"props":842,"children":844},{"className":843},[],[845],{"type":48,"value":846},"download_paper.py",{"type":48,"value":848}," to fetch the PDF or HTML.",{"type":42,"tag":62,"props":850,"children":851},{},[852],{"type":48,"value":853},"If downloading a PDF, verify the PDF is not empty or corrupted.",{"type":42,"tag":62,"props":855,"children":856},{},[857],{"type":48,"value":858},"Read the downloaded file using standard file reading tools.",{"type":42,"tag":860,"props":861,"children":862},"style",{},[863],{"type":48,"value":864},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":866,"total":1034},[867,884,899,919,931,946,962,975,987,1002,1013,1023],{"slug":868,"name":868,"fn":869,"description":870,"org":871,"tags":872,"stars":25,"repoUrl":26,"updatedAt":883},"alphafold-database-fetch-and-analyze","retrieve and analyze AlphaFold protein structures","Retrieve and analyze AlphaFold predicted structures for a protein. Use when the user provides a specific UniProt Accession ID and wants structural confidence metrics (pLDDT), domain boundary analysis, or disorder assessment. Do not use if the user only has a protein name, gene name, or amino acid sequence — ask for a UniProt ID first.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[873,876,879,882],{"name":874,"slug":875,"type":15},"Bioinformatics","bioinformatics",{"name":877,"slug":878,"type":15},"Genomics","genomics",{"name":880,"slug":881,"type":15},"Life Sciences","life-sciences",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:51.827211",{"slug":885,"name":885,"fn":886,"description":887,"org":888,"tags":889,"stars":25,"repoUrl":26,"updatedAt":898},"alphagenome-single-variant-analysis","analyze genetic variant effects with AlphaGenome","Analyzes genetic variant effects on gene expression (RNA-seq), chromatin accessibility (DNASE), histone marks (ChIP), and transcription factors using the AlphaGenome API. Use when the user asks about non-coding variant effects, pathogenicity, clinical significance, disease associations, functional effects, gene expression changes, splicing disruption, or regulatory effects in promoters and enhancers. Also use for resolving biological terms to tissue\u002Fcell-type ontologies (UBERON\u002FCL) or analyzing variants in chr:pos:ref>alt format.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[890,891,894,895],{"name":874,"slug":875,"type":15},{"name":892,"slug":893,"type":15},"Genetics","genetics",{"name":13,"slug":14,"type":15},{"name":896,"slug":897,"type":15},"RNA-seq","rna-seq","2026-07-12T07:51:39.494803",{"slug":900,"name":900,"fn":901,"description":902,"org":903,"tags":904,"stars":25,"repoUrl":26,"updatedAt":918},"chembl-database","query ChEMBL database for bioactive molecules","Query the ChEMBL database for bioactive molecules, drug targets, bioactivity data, approved drugs, and chemical structures. Use when the user asks about compounds, targets, IC50\u002FKi values, drug mechanisms, or structure searches.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[905,908,911,914,917],{"name":906,"slug":907,"type":15},"ChEMBL","chembl",{"name":909,"slug":910,"type":15},"Chemistry","chemistry",{"name":912,"slug":913,"type":15},"Database","database",{"name":915,"slug":916,"type":15},"Pharmacology","pharmacology",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:35.544306",{"slug":920,"name":920,"fn":921,"description":922,"org":923,"tags":924,"stars":25,"repoUrl":26,"updatedAt":930},"clinical-trials-database","query clinical trial data","Query ClinicalTrials.gov via APIv2. Use when you want to search for trials by condition, drug, location, status, or phase; retrieve trial details by NCT ID; check eligibility\u002Finclusion criteria; count trials across conditions or time periods; identify a sponsor's trial portfolio; find recruiting trials for patient matching.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[925,928,929],{"name":926,"slug":927,"type":15},"Clinical Trials","clinical-trials",{"name":880,"slug":881,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:52:06.846705",{"slug":932,"name":932,"fn":933,"description":934,"org":935,"tags":936,"stars":25,"repoUrl":26,"updatedAt":945},"clinvar-database","retrieve clinical significance from ClinVar database","Use when needing clinical significance, pathogenicity classifications (e.g., Pathogenic, Benign, VUS), clinical evidence rationales, or finding \"hard positive\" benchmark controls for human genomic variants.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[937,940,941,944],{"name":938,"slug":939,"type":15},"ClinVar","clinvar",{"name":892,"slug":893,"type":15},{"name":942,"slug":943,"type":15},"Healthcare","healthcare",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:36.86094",{"slug":947,"name":947,"fn":948,"description":949,"org":950,"tags":951,"stars":25,"repoUrl":26,"updatedAt":961},"credentials","manage and verify API credentials safely","Instructions for handling API keys and credentials safely, verifying their presence, and prompting the user to add them if missing using a safe protocol.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[952,955,958],{"name":953,"slug":954,"type":15},"Compliance","compliance",{"name":956,"slug":957,"type":15},"Operations","operations",{"name":959,"slug":960,"type":15},"Security","security","2026-07-12T07:52:17.355491",{"slug":963,"name":963,"fn":964,"description":965,"org":966,"tags":967,"stars":25,"repoUrl":26,"updatedAt":974},"dbsnp-database","search genetic variants in dbSNP database","Use when you want to look up, map, and search for short genetic variants (SNPs, indels) in NCBI's dbSNP database. Resolves between rsIDs, genomic coordinates in VCF format, and HGVS strings. For an rsID, returns variant type, gene associations, clinical significance, allele frequencies, and genomic coordinates (GRCh38).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[968,969,970,973],{"name":874,"slug":875,"type":15},{"name":892,"slug":893,"type":15},{"name":971,"slug":972,"type":15},"NCBI","ncbi",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:33.054229",{"slug":976,"name":976,"fn":977,"description":978,"org":979,"tags":980,"stars":25,"repoUrl":26,"updatedAt":986},"embl-ebi-ols","search biomedical ontologies in EMBL-EBI OLS","Query and search the EMBL-EBI Ontology Lookup Service (OLS) for biomedical ontology terms, definitions, and hierarchies across 250+ ontologies (e.g., GO, DOID, HP). Use when the user asks to search for terms, retrieve details, navigate hierarchies (parents, children, ancestors), look up properties and individuals, get autocomplete suggestions, or access ontology metadata and statistics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[981,982,985],{"name":874,"slug":875,"type":15},{"name":983,"slug":984,"type":15},"Ontology","ontology",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:59.368324",{"slug":988,"name":988,"fn":989,"description":990,"org":991,"tags":992,"stars":25,"repoUrl":26,"updatedAt":1001},"encode-ccres-database","query ENCODE regulatory and experimental data","Query the ENCODE Registry of cis-Regulatory Elements (cCREs) via the SCREEN GraphQL API, or make custom queries to the ENCODE Portal REST API for experiments and files (ChIP-seq peaks, etc.). Use when you want to query regulatory annotations or raw experimental data across human cell types.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[993,994,997,998],{"name":874,"slug":875,"type":15},{"name":995,"slug":996,"type":15},"GraphQL","graphql",{"name":13,"slug":14,"type":15},{"name":999,"slug":1000,"type":15},"REST API","rest-api","2026-07-12T07:52:10.597139",{"slug":1003,"name":1003,"fn":1004,"description":1005,"org":1006,"tags":1007,"stars":25,"repoUrl":26,"updatedAt":1012},"ensembl-database","query genomic and protein data from Ensembl","Query the Ensembl database to resolve gene, transcript, and protein IDs, fetch genomic or protein sequences, retrieve gene structures (exons), and get variant consequence and effect predictions (VEP). Use this skill as a primary ID translator, genomic sequence database and variant effect prediction tool.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1008,1009,1010,1011],{"name":874,"slug":875,"type":15},{"name":892,"slug":893,"type":15},{"name":880,"slug":881,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:51:41.645835",{"slug":1014,"name":1014,"fn":1015,"description":1016,"org":1017,"tags":1018,"stars":25,"repoUrl":26,"updatedAt":1022},"foldseek-structural-search","perform 3D protein structural searches","Performs 3D structural searches of proteins against various databases (PDB, AlphaFold, CATH, MGnify, etc.) using the Foldseek API. Use ONLY when the user provides a physical 3D coordinate file (.cif, .mmcif, or .pdb) and wants to find structurally similar proteins. Do NOT use if the user only provides a protein sequence, gene name, or UniProt ID.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1019,1020,1021],{"name":874,"slug":875,"type":15},{"name":880,"slug":881,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:52:09.354992",{"slug":1024,"name":1024,"fn":1025,"description":1026,"org":1027,"tags":1028,"stars":25,"repoUrl":26,"updatedAt":1033},"gnomad-database","query genetic variant data from gnomAD","Query the Genome Aggregation Database (gnomAD). Use when determining the rarity or allele frequency of specific genetic variants, retrieving gene constraint metrics (pLI, LOEUF) to assess loss-of-function intolerance, finding variants in a genomic region or gene, or querying structural variants. Don't use for analyzing individual patient genomes, tracking somatic mutations in cancer (use COSMIC), or requesting raw sequencing reads (use ENA).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1029,1030,1031,1032],{"name":874,"slug":875,"type":15},{"name":892,"slug":893,"type":15},{"name":880,"slug":881,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:51:38.213009",38,{"items":1036,"total":1034},[1037,1044,1051,1059,1065,1072,1078],{"slug":868,"name":868,"fn":869,"description":870,"org":1038,"tags":1039,"stars":25,"repoUrl":26,"updatedAt":883},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1040,1041,1042,1043],{"name":874,"slug":875,"type":15},{"name":877,"slug":878,"type":15},{"name":880,"slug":881,"type":15},{"name":13,"slug":14,"type":15},{"slug":885,"name":885,"fn":886,"description":887,"org":1045,"tags":1046,"stars":25,"repoUrl":26,"updatedAt":898},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1047,1048,1049,1050],{"name":874,"slug":875,"type":15},{"name":892,"slug":893,"type":15},{"name":13,"slug":14,"type":15},{"name":896,"slug":897,"type":15},{"slug":900,"name":900,"fn":901,"description":902,"org":1052,"tags":1053,"stars":25,"repoUrl":26,"updatedAt":918},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1054,1055,1056,1057,1058],{"name":906,"slug":907,"type":15},{"name":909,"slug":910,"type":15},{"name":912,"slug":913,"type":15},{"name":915,"slug":916,"type":15},{"name":13,"slug":14,"type":15},{"slug":920,"name":920,"fn":921,"description":922,"org":1060,"tags":1061,"stars":25,"repoUrl":26,"updatedAt":930},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1062,1063,1064],{"name":926,"slug":927,"type":15},{"name":880,"slug":881,"type":15},{"name":13,"slug":14,"type":15},{"slug":932,"name":932,"fn":933,"description":934,"org":1066,"tags":1067,"stars":25,"repoUrl":26,"updatedAt":945},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1068,1069,1070,1071],{"name":938,"slug":939,"type":15},{"name":892,"slug":893,"type":15},{"name":942,"slug":943,"type":15},{"name":13,"slug":14,"type":15},{"slug":947,"name":947,"fn":948,"description":949,"org":1073,"tags":1074,"stars":25,"repoUrl":26,"updatedAt":961},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1075,1076,1077],{"name":953,"slug":954,"type":15},{"name":956,"slug":957,"type":15},{"name":959,"slug":960,"type":15},{"slug":963,"name":963,"fn":964,"description":965,"org":1079,"tags":1080,"stars":25,"repoUrl":26,"updatedAt":974},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1081,1082,1083,1084],{"name":874,"slug":875,"type":15},{"name":892,"slug":893,"type":15},{"name":971,"slug":972,"type":15},{"name":13,"slug":14,"type":15}]