[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-google-deepmind-literature-search-openalex":3,"mdc--wvmv96-key":33,"related-org-google-deepmind-literature-search-openalex":1920,"related-repo-google-deepmind-literature-search-openalex":2089},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"literature-search-openalex","search scholarly research papers with OpenAlex","Query the OpenAlex scholarly database for research papers, authors, institutions, topics, sources, publishers, funders, geo-locations, and keywords. Use when searching academic papers, resolving DOIs, downloading open-access PDFs, finding an author's publications, aggregating bibliometric data (citation counts, h-index, impact factor), exploring the research taxonomies, or performing DOI lookups.\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],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"Documentation","documentation",{"name":20,"slug":21,"type":15},"Reference","reference",2333,"https:\u002F\u002Fgithub.com\u002Fgoogle-deepmind\u002Fscience-skills","2026-07-12T07:51:49.195707",null,234,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"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_openalex","---\nname: literature-search-openalex\ndescription: >\n  Query the OpenAlex scholarly database for research papers, authors,\n  institutions, topics, sources, publishers, funders, geo-locations, and\n  keywords. Use when searching academic papers, resolving DOIs, downloading\n  open-access PDFs, finding an author's publications, aggregating bibliometric\n  data (citation counts, h-index, impact factor), exploring the research\n  taxonomies, or performing DOI lookups.\n---\n\n# OpenAlex Skill\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_openalex_LICENSE.txt\n    does not already exist in the workspace root directory then (1) prominently\n    notify the user to check the terms at https:\u002F\u002Fdevelopers.openalex.org\u002F and\n    to always check the license of the papers retrieved by the skill for any\n    restrictions, then (2) create the file recording the notification text and\n    timestamp.\n3.  **`.env` file**: Make sure the `.env` file exists in your home directory.\n    Create one if it does not exist.\n4.  **`OPENALEX_API_KEY`** (optional but recommended): Enables the OpenAlex\n    Premium API with higher rate limits. The skill works without it (using the\n    free \"polite pool\"). You can obtain a key at OpenAlex.org → account\n    settings. You **MUST** use the safe credentials protocol in the\n    `credentials` skill to check for and request this key if this skill looks\n    relevant to the user's request.\n\n## Core Rules\n\n1.  **List Sources.** If this skill is used, ensure this is mentioned in the\n    output AND list the URLs of all papers that were used in producing the\n    output.\n2.  **Resolve before filter.** NEVER filter by name. Always `resolve` a name to\n    an ID first, then use that ID in `--filter`.\n3.  **Use the CLI only.** Never call the API via `curl`\u002F`urllib`. The CLI\n    handles retries and rate limiting.\n4.  **No fabrication.** Never invent OpenAlex IDs or DOIs. Use `resolve`\u002F`get`\n    to look them up. Report empty results accurately.\n5.  **API key.** If a command returns 401\u002F429 or you need high-volume queries,\n    you **MUST** use the safe credentials protocol in the `credentials` skill to\n    check for and request the `OPENALEX_API_KEY` to help the user add it to\n    their `.env` file.\n6.  **Keep output small.** Always use `--select` and `--per-page 5–10` for\n    overview queries. Pipe `filter` output to a file (`> results.json`), then\n    slim with `jq` before reading into context.\n\n## Rate Limits\n\n-   **With key:** ~10 req\u002Fs, $1\u002Fday free budget.\n-   **Without key:** Very limited, $0.01\u002Fday budget.\n\nOperation              | Cost\n---------------------- | -------\nSingleton `get`        | Free\n`filter`               | $0.0001\n`--search` \u002F `resolve` | $0.001\n`download-pdf`         | $0.01\n\n## CLI Reference\n\n```\nuv run scripts\u002Fopenalex_cli.py [--api-key KEY] \u003Ccommand> [flags]\n```\n\nEntity types (shared across commands): `works`, `authors`, `sources`,\n`institutions`, `topics`, `domains`, `fields`, `subfields`, `sdgs`, `countries`,\n`continents`, `languages`, `keywords`, `publishers`, `funders`, `work-types`,\n`source-types`, `institution-types`, `licenses`\n\n### Commands\n\n**resolve** `\u003Centity> \u003Cquery>` — Name → ID candidates. Returns `id`,\n`display_name`, `hint`. Use `--per-page N` for more candidates.\n\n**get** `\u003Centity> \u003Cid>` — Full metadata for one entity. Accepts short ID\n(`W2741809807`), full URL, or DOI URL. Use `--select` to limit fields.\n\n**filter** `\u003Centity>` — Search\u002Ffilter entities. Key flags are:\n\n-   `--search \u003Cquery>`: Full-text search (10× cost of `--filter`)\n-   `--filter \u003Cexpr>`: Filter expressions. Use `,` for AND and `|` for OR.\n-   `--sort \u003Cfield:dir>`: Sort results (e.g., `cited_by_count:desc`)\n-   `--select \u003Cfields>`: Limit the fields returned in the output.\n-   `--group-by \u003Cfield>`: Aggregate results by a specific field.\n-   `--per-page \u003CN>`: Number of results per page (default 25, max 100).\n-   `--page \u003CN>`: Specify the page number to retrieve.\n-   `--sample \u003CN>`: Get a random sample of up to 10,000 results.\n-   `--seed \u003CN>`: Seed for reproducible sampling.\n\n**download-pdf** `\u003Cwork-id> \u003Coutput-path>` — Download PDF (requires API key).\nFalls back to alternative `pdf_url` locations if primary fails. Whenever you\ndownload a PDF, verify it is not empty or corrupted.\n\n**rate-limit** — Check current rate limit status (requires API key).\n\n### Search Tips\n\n-   If `resolve` returns no matches, try alternate spellings or abbreviations.\n-   If `--search` returns 0 results, try broader terms (max 3 retries).\n-   If `resolve` returns multiple candidates, present them to the user with\n    `display_name` and `hint` for manual selection.\n\n## Entity References\n\nConsult `references\u002F` for valid filter, sort, and group-by fields per entity:\n\n-   [Works](references\u002Fworks.md) — [Authors](references\u002Fauthors.md) —\n    [Sources](references\u002Fsources.md)\n-   [Institutions](references\u002Finstitutions.md) — [Topics](references\u002Ftopics.md)\n    — [Taxonomy](references\u002Ftaxonomy.md)\n-   [Geo & Language](references\u002Fgeo_and_language.md) —\n    [Publishers & Funders](references\u002Fpublishers_funders.md)\n-   [Type Values](references\u002Ftype_values.md)\n\n## Common Workflows\n\n```bash\n# Author's works (resolve → filter)\nuv run scripts\u002Fopenalex_cli.py resolve authors \"Geoffrey Hinton\"\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"authorships.author.id:A5108093963\" \\\n  --sort \"cited_by_count:desc\" --per-page 10 > papers.json\ncat papers.json | jq '[.results[] | {id, title: .display_name, year: .publication_year, citations: .cited_by_count}]'\n\n# DOI lookup\nuv run scripts\u002Fopenalex_cli.py get works \"https:\u002F\u002Fdoi.org\u002F10.1038\u002Fs41586-021-03819-2\"\n\n# Bulk DOI lookup (up to 100)\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"doi:10.1234\u002Fa|10.1234\u002Fb|10.1234\u002Fc\" --per-page 100 > results.json\n\n# Institutional impact by year\nuv run scripts\u002Fopenalex_cli.py resolve institutions \"MIT\"\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"authorships.institutions.id:I63966007\" \\\n  --group-by \"publication_year\" > mit_by_year.json\n\n# Random sample\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"publication_year:2023,is_oa:true\" \\\n  --sample 100 --seed 42 > results.json\n```\n\n## Error Handling\n\n| Code | Meaning             | Action                        |\n| ---- | ------------------- | ----------------------------- |\n| 401  | Unauthorized        | You MUST use safe credentials |\n:      :                     : protocol in credentials skill :\n:      :                     : to help user add API key to   :\n:      :                     : `.env`                        :\n| 403  | Plan upgrade needed | Inform user; see              |\n:      :                     : https\\:\u002F\u002Fopenalex.org\u002Fpricing :\n| 404  | Not found           | Verify ID; try `resolve`      |\n:      :                     : first                         :\n| 429  | Rate limited        | Wait and retry; you MUST use  |\n:      :                     : safe credentials protocol in  :\n:      :                     : credentials skill to help     :\n:      :                     : user add API key to `.env`    :\n\nKnown premium-only filters: `from_updated_date`, `to_updated_date`.\n\nNever fabricate results on empty responses — report accurately and suggest\nalternate search terms.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,54,161,167,343,349,373,476,482,494,634,641,688,719,735,867,891,901,907,957,963,976,1053,1059,1647,1653,1890,1909,1914],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"openalex-skill",[44],{"type":45,"value":46},"text","OpenAlex Skill",{"type":39,"tag":48,"props":49,"children":51},"h2",{"id":50},"prerequisites",[52],{"type":45,"value":53},"Prerequisites",{"type":39,"tag":55,"props":56,"children":57},"ol",{},[58,89,109,132],{"type":39,"tag":59,"props":60,"children":61},"li",{},[62,73,75,80,82,87],{"type":39,"tag":63,"props":64,"children":65},"strong",{},[66],{"type":39,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":45,"value":72},"uv",{"type":45,"value":74},": Read the ",{"type":39,"tag":67,"props":76,"children":78},{"className":77},[],[79],{"type":45,"value":72},{"type":45,"value":81}," skill and follow its Setup instructions to ensure\n",{"type":39,"tag":67,"props":83,"children":85},{"className":84},[],[86],{"type":45,"value":72},{"type":45,"value":88}," is installed and on PATH.",{"type":39,"tag":59,"props":90,"children":91},{},[92,97,99,107],{"type":39,"tag":63,"props":93,"children":94},{},[95],{"type":45,"value":96},"User Notification",{"type":45,"value":98},": If .licenses\u002Fliterature_search_openalex_LICENSE.txt\ndoes not already exist in the workspace root directory then (1) prominently\nnotify the user to check the terms at ",{"type":39,"tag":100,"props":101,"children":105},"a",{"href":102,"rel":103},"https:\u002F\u002Fdevelopers.openalex.org\u002F",[104],"nofollow",[106],{"type":45,"value":102},{"type":45,"value":108}," and\nto always check the license of the papers retrieved by the skill for any\nrestrictions, then (2) create the file recording the notification text and\ntimestamp.",{"type":39,"tag":59,"props":110,"children":111},{},[112,123,125,130],{"type":39,"tag":63,"props":113,"children":114},{},[115,121],{"type":39,"tag":67,"props":116,"children":118},{"className":117},[],[119],{"type":45,"value":120},".env",{"type":45,"value":122}," file",{"type":45,"value":124},": Make sure the ",{"type":39,"tag":67,"props":126,"children":128},{"className":127},[],[129],{"type":45,"value":120},{"type":45,"value":131}," file exists in your home directory.\nCreate one if it does not exist.",{"type":39,"tag":59,"props":133,"children":134},{},[135,144,146,151,153,159],{"type":39,"tag":63,"props":136,"children":137},{},[138],{"type":39,"tag":67,"props":139,"children":141},{"className":140},[],[142],{"type":45,"value":143},"OPENALEX_API_KEY",{"type":45,"value":145}," (optional but recommended): Enables the OpenAlex\nPremium API with higher rate limits. The skill works without it (using the\nfree \"polite pool\"). You can obtain a key at OpenAlex.org → account\nsettings. You ",{"type":39,"tag":63,"props":147,"children":148},{},[149],{"type":45,"value":150},"MUST",{"type":45,"value":152}," use the safe credentials protocol in the\n",{"type":39,"tag":67,"props":154,"children":156},{"className":155},[],[157],{"type":45,"value":158},"credentials",{"type":45,"value":160}," skill to check for and request this key if this skill looks\nrelevant to the user's request.",{"type":39,"tag":48,"props":162,"children":164},{"id":163},"core-rules",[165],{"type":45,"value":166},"Core Rules",{"type":39,"tag":55,"props":168,"children":169},{},[170,180,206,232,256,293],{"type":39,"tag":59,"props":171,"children":172},{},[173,178],{"type":39,"tag":63,"props":174,"children":175},{},[176],{"type":45,"value":177},"List Sources.",{"type":45,"value":179}," If this skill is used, ensure this is mentioned in the\noutput AND list the URLs of all papers that were used in producing the\noutput.",{"type":39,"tag":59,"props":181,"children":182},{},[183,188,190,196,198,204],{"type":39,"tag":63,"props":184,"children":185},{},[186],{"type":45,"value":187},"Resolve before filter.",{"type":45,"value":189}," NEVER filter by name. Always ",{"type":39,"tag":67,"props":191,"children":193},{"className":192},[],[194],{"type":45,"value":195},"resolve",{"type":45,"value":197}," a name to\nan ID first, then use that ID in ",{"type":39,"tag":67,"props":199,"children":201},{"className":200},[],[202],{"type":45,"value":203},"--filter",{"type":45,"value":205},".",{"type":39,"tag":59,"props":207,"children":208},{},[209,214,216,222,224,230],{"type":39,"tag":63,"props":210,"children":211},{},[212],{"type":45,"value":213},"Use the CLI only.",{"type":45,"value":215}," Never call the API via ",{"type":39,"tag":67,"props":217,"children":219},{"className":218},[],[220],{"type":45,"value":221},"curl",{"type":45,"value":223},"\u002F",{"type":39,"tag":67,"props":225,"children":227},{"className":226},[],[228],{"type":45,"value":229},"urllib",{"type":45,"value":231},". The CLI\nhandles retries and rate limiting.",{"type":39,"tag":59,"props":233,"children":234},{},[235,240,242,247,248,254],{"type":39,"tag":63,"props":236,"children":237},{},[238],{"type":45,"value":239},"No fabrication.",{"type":45,"value":241}," Never invent OpenAlex IDs or DOIs. Use ",{"type":39,"tag":67,"props":243,"children":245},{"className":244},[],[246],{"type":45,"value":195},{"type":45,"value":223},{"type":39,"tag":67,"props":249,"children":251},{"className":250},[],[252],{"type":45,"value":253},"get",{"type":45,"value":255},"\nto look them up. Report empty results accurately.",{"type":39,"tag":59,"props":257,"children":258},{},[259,264,266,270,272,277,279,284,286,291],{"type":39,"tag":63,"props":260,"children":261},{},[262],{"type":45,"value":263},"API key.",{"type":45,"value":265}," If a command returns 401\u002F429 or you need high-volume queries,\nyou ",{"type":39,"tag":63,"props":267,"children":268},{},[269],{"type":45,"value":150},{"type":45,"value":271}," use the safe credentials protocol in the ",{"type":39,"tag":67,"props":273,"children":275},{"className":274},[],[276],{"type":45,"value":158},{"type":45,"value":278}," skill to\ncheck for and request the ",{"type":39,"tag":67,"props":280,"children":282},{"className":281},[],[283],{"type":45,"value":143},{"type":45,"value":285}," to help the user add it to\ntheir ",{"type":39,"tag":67,"props":287,"children":289},{"className":288},[],[290],{"type":45,"value":120},{"type":45,"value":292}," file.",{"type":39,"tag":59,"props":294,"children":295},{},[296,301,303,309,311,317,319,325,327,333,335,341],{"type":39,"tag":63,"props":297,"children":298},{},[299],{"type":45,"value":300},"Keep output small.",{"type":45,"value":302}," Always use ",{"type":39,"tag":67,"props":304,"children":306},{"className":305},[],[307],{"type":45,"value":308},"--select",{"type":45,"value":310}," and ",{"type":39,"tag":67,"props":312,"children":314},{"className":313},[],[315],{"type":45,"value":316},"--per-page 5–10",{"type":45,"value":318}," for\noverview queries. Pipe ",{"type":39,"tag":67,"props":320,"children":322},{"className":321},[],[323],{"type":45,"value":324},"filter",{"type":45,"value":326}," output to a file (",{"type":39,"tag":67,"props":328,"children":330},{"className":329},[],[331],{"type":45,"value":332},"> results.json",{"type":45,"value":334},"), then\nslim with ",{"type":39,"tag":67,"props":336,"children":338},{"className":337},[],[339],{"type":45,"value":340},"jq",{"type":45,"value":342}," before reading into context.",{"type":39,"tag":48,"props":344,"children":346},{"id":345},"rate-limits",[347],{"type":45,"value":348},"Rate Limits",{"type":39,"tag":350,"props":351,"children":352},"ul",{},[353,363],{"type":39,"tag":59,"props":354,"children":355},{},[356,361],{"type":39,"tag":63,"props":357,"children":358},{},[359],{"type":45,"value":360},"With key:",{"type":45,"value":362}," ~10 req\u002Fs, $1\u002Fday free budget.",{"type":39,"tag":59,"props":364,"children":365},{},[366,371],{"type":39,"tag":63,"props":367,"children":368},{},[369],{"type":45,"value":370},"Without key:",{"type":45,"value":372}," Very limited, $0.01\u002Fday budget.",{"type":39,"tag":374,"props":375,"children":376},"table",{},[377,396],{"type":39,"tag":378,"props":379,"children":380},"thead",{},[381],{"type":39,"tag":382,"props":383,"children":384},"tr",{},[385,391],{"type":39,"tag":386,"props":387,"children":388},"th",{},[389],{"type":45,"value":390},"Operation",{"type":39,"tag":386,"props":392,"children":393},{},[394],{"type":45,"value":395},"Cost",{"type":39,"tag":397,"props":398,"children":399},"tbody",{},[400,419,435,459],{"type":39,"tag":382,"props":401,"children":402},{},[403,414],{"type":39,"tag":404,"props":405,"children":406},"td",{},[407,409],{"type":45,"value":408},"Singleton ",{"type":39,"tag":67,"props":410,"children":412},{"className":411},[],[413],{"type":45,"value":253},{"type":39,"tag":404,"props":415,"children":416},{},[417],{"type":45,"value":418},"Free",{"type":39,"tag":382,"props":420,"children":421},{},[422,430],{"type":39,"tag":404,"props":423,"children":424},{},[425],{"type":39,"tag":67,"props":426,"children":428},{"className":427},[],[429],{"type":45,"value":324},{"type":39,"tag":404,"props":431,"children":432},{},[433],{"type":45,"value":434},"$0.0001",{"type":39,"tag":382,"props":436,"children":437},{},[438,454],{"type":39,"tag":404,"props":439,"children":440},{},[441,447,449],{"type":39,"tag":67,"props":442,"children":444},{"className":443},[],[445],{"type":45,"value":446},"--search",{"type":45,"value":448}," \u002F ",{"type":39,"tag":67,"props":450,"children":452},{"className":451},[],[453],{"type":45,"value":195},{"type":39,"tag":404,"props":455,"children":456},{},[457],{"type":45,"value":458},"$0.001",{"type":39,"tag":382,"props":460,"children":461},{},[462,471],{"type":39,"tag":404,"props":463,"children":464},{},[465],{"type":39,"tag":67,"props":466,"children":468},{"className":467},[],[469],{"type":45,"value":470},"download-pdf",{"type":39,"tag":404,"props":472,"children":473},{},[474],{"type":45,"value":475},"$0.01",{"type":39,"tag":48,"props":477,"children":479},{"id":478},"cli-reference",[480],{"type":45,"value":481},"CLI Reference",{"type":39,"tag":483,"props":484,"children":488},"pre",{"className":485,"code":487,"language":45},[486],"language-text","uv run scripts\u002Fopenalex_cli.py [--api-key KEY] \u003Ccommand> [flags]\n",[489],{"type":39,"tag":67,"props":490,"children":492},{"__ignoreMap":491},"",[493],{"type":45,"value":487},{"type":39,"tag":495,"props":496,"children":497},"p",{},[498,500,506,508,514,515,521,523,529,530,536,537,543,544,550,551,557,558,564,565,571,572,578,579,585,586,592,593,599,600,606,607,613,614,620,621,627,628],{"type":45,"value":499},"Entity types (shared across commands): ",{"type":39,"tag":67,"props":501,"children":503},{"className":502},[],[504],{"type":45,"value":505},"works",{"type":45,"value":507},", ",{"type":39,"tag":67,"props":509,"children":511},{"className":510},[],[512],{"type":45,"value":513},"authors",{"type":45,"value":507},{"type":39,"tag":67,"props":516,"children":518},{"className":517},[],[519],{"type":45,"value":520},"sources",{"type":45,"value":522},",\n",{"type":39,"tag":67,"props":524,"children":526},{"className":525},[],[527],{"type":45,"value":528},"institutions",{"type":45,"value":507},{"type":39,"tag":67,"props":531,"children":533},{"className":532},[],[534],{"type":45,"value":535},"topics",{"type":45,"value":507},{"type":39,"tag":67,"props":538,"children":540},{"className":539},[],[541],{"type":45,"value":542},"domains",{"type":45,"value":507},{"type":39,"tag":67,"props":545,"children":547},{"className":546},[],[548],{"type":45,"value":549},"fields",{"type":45,"value":507},{"type":39,"tag":67,"props":552,"children":554},{"className":553},[],[555],{"type":45,"value":556},"subfields",{"type":45,"value":507},{"type":39,"tag":67,"props":559,"children":561},{"className":560},[],[562],{"type":45,"value":563},"sdgs",{"type":45,"value":507},{"type":39,"tag":67,"props":566,"children":568},{"className":567},[],[569],{"type":45,"value":570},"countries",{"type":45,"value":522},{"type":39,"tag":67,"props":573,"children":575},{"className":574},[],[576],{"type":45,"value":577},"continents",{"type":45,"value":507},{"type":39,"tag":67,"props":580,"children":582},{"className":581},[],[583],{"type":45,"value":584},"languages",{"type":45,"value":507},{"type":39,"tag":67,"props":587,"children":589},{"className":588},[],[590],{"type":45,"value":591},"keywords",{"type":45,"value":507},{"type":39,"tag":67,"props":594,"children":596},{"className":595},[],[597],{"type":45,"value":598},"publishers",{"type":45,"value":507},{"type":39,"tag":67,"props":601,"children":603},{"className":602},[],[604],{"type":45,"value":605},"funders",{"type":45,"value":507},{"type":39,"tag":67,"props":608,"children":610},{"className":609},[],[611],{"type":45,"value":612},"work-types",{"type":45,"value":522},{"type":39,"tag":67,"props":615,"children":617},{"className":616},[],[618],{"type":45,"value":619},"source-types",{"type":45,"value":507},{"type":39,"tag":67,"props":622,"children":624},{"className":623},[],[625],{"type":45,"value":626},"institution-types",{"type":45,"value":507},{"type":39,"tag":67,"props":629,"children":631},{"className":630},[],[632],{"type":45,"value":633},"licenses",{"type":39,"tag":635,"props":636,"children":638},"h3",{"id":637},"commands",[639],{"type":45,"value":640},"Commands",{"type":39,"tag":495,"props":642,"children":643},{},[644,648,650,656,658,664,665,671,672,678,680,686],{"type":39,"tag":63,"props":645,"children":646},{},[647],{"type":45,"value":195},{"type":45,"value":649}," ",{"type":39,"tag":67,"props":651,"children":653},{"className":652},[],[654],{"type":45,"value":655},"\u003Centity> \u003Cquery>",{"type":45,"value":657}," — Name → ID candidates. Returns ",{"type":39,"tag":67,"props":659,"children":661},{"className":660},[],[662],{"type":45,"value":663},"id",{"type":45,"value":522},{"type":39,"tag":67,"props":666,"children":668},{"className":667},[],[669],{"type":45,"value":670},"display_name",{"type":45,"value":507},{"type":39,"tag":67,"props":673,"children":675},{"className":674},[],[676],{"type":45,"value":677},"hint",{"type":45,"value":679},". Use ",{"type":39,"tag":67,"props":681,"children":683},{"className":682},[],[684],{"type":45,"value":685},"--per-page N",{"type":45,"value":687}," for more candidates.",{"type":39,"tag":495,"props":689,"children":690},{},[691,695,696,702,704,710,712,717],{"type":39,"tag":63,"props":692,"children":693},{},[694],{"type":45,"value":253},{"type":45,"value":649},{"type":39,"tag":67,"props":697,"children":699},{"className":698},[],[700],{"type":45,"value":701},"\u003Centity> \u003Cid>",{"type":45,"value":703}," — Full metadata for one entity. Accepts short ID\n(",{"type":39,"tag":67,"props":705,"children":707},{"className":706},[],[708],{"type":45,"value":709},"W2741809807",{"type":45,"value":711},"), full URL, or DOI URL. Use ",{"type":39,"tag":67,"props":713,"children":715},{"className":714},[],[716],{"type":45,"value":308},{"type":45,"value":718}," to limit fields.",{"type":39,"tag":495,"props":720,"children":721},{},[722,726,727,733],{"type":39,"tag":63,"props":723,"children":724},{},[725],{"type":45,"value":324},{"type":45,"value":649},{"type":39,"tag":67,"props":728,"children":730},{"className":729},[],[731],{"type":45,"value":732},"\u003Centity>",{"type":45,"value":734}," — Search\u002Ffilter entities. Key flags are:",{"type":39,"tag":350,"props":736,"children":737},{},[738,756,783,801,812,823,834,845,856],{"type":39,"tag":59,"props":739,"children":740},{},[741,747,749,754],{"type":39,"tag":67,"props":742,"children":744},{"className":743},[],[745],{"type":45,"value":746},"--search \u003Cquery>",{"type":45,"value":748},": Full-text search (10× cost of ",{"type":39,"tag":67,"props":750,"children":752},{"className":751},[],[753],{"type":45,"value":203},{"type":45,"value":755},")",{"type":39,"tag":59,"props":757,"children":758},{},[759,765,767,773,775,781],{"type":39,"tag":67,"props":760,"children":762},{"className":761},[],[763],{"type":45,"value":764},"--filter \u003Cexpr>",{"type":45,"value":766},": Filter expressions. Use ",{"type":39,"tag":67,"props":768,"children":770},{"className":769},[],[771],{"type":45,"value":772},",",{"type":45,"value":774}," for AND and ",{"type":39,"tag":67,"props":776,"children":778},{"className":777},[],[779],{"type":45,"value":780},"|",{"type":45,"value":782}," for OR.",{"type":39,"tag":59,"props":784,"children":785},{},[786,792,794,800],{"type":39,"tag":67,"props":787,"children":789},{"className":788},[],[790],{"type":45,"value":791},"--sort \u003Cfield:dir>",{"type":45,"value":793},": Sort results (e.g., ",{"type":39,"tag":67,"props":795,"children":797},{"className":796},[],[798],{"type":45,"value":799},"cited_by_count:desc",{"type":45,"value":755},{"type":39,"tag":59,"props":802,"children":803},{},[804,810],{"type":39,"tag":67,"props":805,"children":807},{"className":806},[],[808],{"type":45,"value":809},"--select \u003Cfields>",{"type":45,"value":811},": Limit the fields returned in the output.",{"type":39,"tag":59,"props":813,"children":814},{},[815,821],{"type":39,"tag":67,"props":816,"children":818},{"className":817},[],[819],{"type":45,"value":820},"--group-by \u003Cfield>",{"type":45,"value":822},": Aggregate results by a specific field.",{"type":39,"tag":59,"props":824,"children":825},{},[826,832],{"type":39,"tag":67,"props":827,"children":829},{"className":828},[],[830],{"type":45,"value":831},"--per-page \u003CN>",{"type":45,"value":833},": Number of results per page (default 25, max 100).",{"type":39,"tag":59,"props":835,"children":836},{},[837,843],{"type":39,"tag":67,"props":838,"children":840},{"className":839},[],[841],{"type":45,"value":842},"--page \u003CN>",{"type":45,"value":844},": Specify the page number to retrieve.",{"type":39,"tag":59,"props":846,"children":847},{},[848,854],{"type":39,"tag":67,"props":849,"children":851},{"className":850},[],[852],{"type":45,"value":853},"--sample \u003CN>",{"type":45,"value":855},": Get a random sample of up to 10,000 results.",{"type":39,"tag":59,"props":857,"children":858},{},[859,865],{"type":39,"tag":67,"props":860,"children":862},{"className":861},[],[863],{"type":45,"value":864},"--seed \u003CN>",{"type":45,"value":866},": Seed for reproducible sampling.",{"type":39,"tag":495,"props":868,"children":869},{},[870,874,875,881,883,889],{"type":39,"tag":63,"props":871,"children":872},{},[873],{"type":45,"value":470},{"type":45,"value":649},{"type":39,"tag":67,"props":876,"children":878},{"className":877},[],[879],{"type":45,"value":880},"\u003Cwork-id> \u003Coutput-path>",{"type":45,"value":882}," — Download PDF (requires API key).\nFalls back to alternative ",{"type":39,"tag":67,"props":884,"children":886},{"className":885},[],[887],{"type":45,"value":888},"pdf_url",{"type":45,"value":890}," locations if primary fails. Whenever you\ndownload a PDF, verify it is not empty or corrupted.",{"type":39,"tag":495,"props":892,"children":893},{},[894,899],{"type":39,"tag":63,"props":895,"children":896},{},[897],{"type":45,"value":898},"rate-limit",{"type":45,"value":900}," — Check current rate limit status (requires API key).",{"type":39,"tag":635,"props":902,"children":904},{"id":903},"search-tips",[905],{"type":45,"value":906},"Search Tips",{"type":39,"tag":350,"props":908,"children":909},{},[910,922,933],{"type":39,"tag":59,"props":911,"children":912},{},[913,915,920],{"type":45,"value":914},"If ",{"type":39,"tag":67,"props":916,"children":918},{"className":917},[],[919],{"type":45,"value":195},{"type":45,"value":921}," returns no matches, try alternate spellings or abbreviations.",{"type":39,"tag":59,"props":923,"children":924},{},[925,926,931],{"type":45,"value":914},{"type":39,"tag":67,"props":927,"children":929},{"className":928},[],[930],{"type":45,"value":446},{"type":45,"value":932}," returns 0 results, try broader terms (max 3 retries).",{"type":39,"tag":59,"props":934,"children":935},{},[936,937,942,944,949,950,955],{"type":45,"value":914},{"type":39,"tag":67,"props":938,"children":940},{"className":939},[],[941],{"type":45,"value":195},{"type":45,"value":943}," returns multiple candidates, present them to the user with\n",{"type":39,"tag":67,"props":945,"children":947},{"className":946},[],[948],{"type":45,"value":670},{"type":45,"value":310},{"type":39,"tag":67,"props":951,"children":953},{"className":952},[],[954],{"type":45,"value":677},{"type":45,"value":956}," for manual selection.",{"type":39,"tag":48,"props":958,"children":960},{"id":959},"entity-references",[961],{"type":45,"value":962},"Entity References",{"type":39,"tag":495,"props":964,"children":965},{},[966,968,974],{"type":45,"value":967},"Consult ",{"type":39,"tag":67,"props":969,"children":971},{"className":970},[],[972],{"type":45,"value":973},"references\u002F",{"type":45,"value":975}," for valid filter, sort, and group-by fields per entity:",{"type":39,"tag":350,"props":977,"children":978},{},[979,1004,1028,1044],{"type":39,"tag":59,"props":980,"children":981},{},[982,988,990,996,998],{"type":39,"tag":100,"props":983,"children":985},{"href":984},"references\u002Fworks.md",[986],{"type":45,"value":987},"Works",{"type":45,"value":989}," — ",{"type":39,"tag":100,"props":991,"children":993},{"href":992},"references\u002Fauthors.md",[994],{"type":45,"value":995},"Authors",{"type":45,"value":997}," —\n",{"type":39,"tag":100,"props":999,"children":1001},{"href":1000},"references\u002Fsources.md",[1002],{"type":45,"value":1003},"Sources",{"type":39,"tag":59,"props":1005,"children":1006},{},[1007,1013,1014,1020,1022],{"type":39,"tag":100,"props":1008,"children":1010},{"href":1009},"references\u002Finstitutions.md",[1011],{"type":45,"value":1012},"Institutions",{"type":45,"value":989},{"type":39,"tag":100,"props":1015,"children":1017},{"href":1016},"references\u002Ftopics.md",[1018],{"type":45,"value":1019},"Topics",{"type":45,"value":1021},"\n— ",{"type":39,"tag":100,"props":1023,"children":1025},{"href":1024},"references\u002Ftaxonomy.md",[1026],{"type":45,"value":1027},"Taxonomy",{"type":39,"tag":59,"props":1029,"children":1030},{},[1031,1037,1038],{"type":39,"tag":100,"props":1032,"children":1034},{"href":1033},"references\u002Fgeo_and_language.md",[1035],{"type":45,"value":1036},"Geo & Language",{"type":45,"value":997},{"type":39,"tag":100,"props":1039,"children":1041},{"href":1040},"references\u002Fpublishers_funders.md",[1042],{"type":45,"value":1043},"Publishers & Funders",{"type":39,"tag":59,"props":1045,"children":1046},{},[1047],{"type":39,"tag":100,"props":1048,"children":1050},{"href":1049},"references\u002Ftype_values.md",[1051],{"type":45,"value":1052},"Type Values",{"type":39,"tag":48,"props":1054,"children":1056},{"id":1055},"common-workflows",[1057],{"type":45,"value":1058},"Common Workflows",{"type":39,"tag":483,"props":1060,"children":1064},{"className":1061,"code":1062,"language":1063,"meta":491,"style":491},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Author's works (resolve → filter)\nuv run scripts\u002Fopenalex_cli.py resolve authors \"Geoffrey Hinton\"\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"authorships.author.id:A5108093963\" \\\n  --sort \"cited_by_count:desc\" --per-page 10 > papers.json\ncat papers.json | jq '[.results[] | {id, title: .display_name, year: .publication_year, citations: .cited_by_count}]'\n\n# DOI lookup\nuv run scripts\u002Fopenalex_cli.py get works \"https:\u002F\u002Fdoi.org\u002F10.1038\u002Fs41586-021-03819-2\"\n\n# Bulk DOI lookup (up to 100)\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"doi:10.1234\u002Fa|10.1234\u002Fb|10.1234\u002Fc\" --per-page 100 > results.json\n\n# Institutional impact by year\nuv run scripts\u002Fopenalex_cli.py resolve institutions \"MIT\"\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"authorships.institutions.id:I63966007\" \\\n  --group-by \"publication_year\" > mit_by_year.json\n\n# Random sample\nuv run scripts\u002Fopenalex_cli.py filter works \\\n  --filter \"publication_year:2023,is_oa:true\" \\\n  --sample 100 --seed 42 > results.json\n","bash",[1065],{"type":39,"tag":67,"props":1066,"children":1067},{"__ignoreMap":491},[1068,1080,1126,1158,1185,1227,1266,1276,1285,1323,1331,1340,1368,1407,1415,1424,1462,1490,1515,1546,1554,1563,1591,1616],{"type":39,"tag":1069,"props":1070,"children":1073},"span",{"class":1071,"line":1072},"line",1,[1074],{"type":39,"tag":1069,"props":1075,"children":1077},{"style":1076},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1078],{"type":45,"value":1079},"# Author's works (resolve → filter)\n",{"type":39,"tag":1069,"props":1081,"children":1083},{"class":1071,"line":1082},2,[1084,1089,1095,1100,1105,1110,1116,1121],{"type":39,"tag":1069,"props":1085,"children":1087},{"style":1086},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1088],{"type":45,"value":72},{"type":39,"tag":1069,"props":1090,"children":1092},{"style":1091},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1093],{"type":45,"value":1094}," run",{"type":39,"tag":1069,"props":1096,"children":1097},{"style":1091},[1098],{"type":45,"value":1099}," scripts\u002Fopenalex_cli.py",{"type":39,"tag":1069,"props":1101,"children":1102},{"style":1091},[1103],{"type":45,"value":1104}," resolve",{"type":39,"tag":1069,"props":1106,"children":1107},{"style":1091},[1108],{"type":45,"value":1109}," authors",{"type":39,"tag":1069,"props":1111,"children":1113},{"style":1112},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1114],{"type":45,"value":1115}," \"",{"type":39,"tag":1069,"props":1117,"children":1118},{"style":1091},[1119],{"type":45,"value":1120},"Geoffrey Hinton",{"type":39,"tag":1069,"props":1122,"children":1123},{"style":1112},[1124],{"type":45,"value":1125},"\"\n",{"type":39,"tag":1069,"props":1127,"children":1129},{"class":1071,"line":1128},3,[1130,1134,1138,1142,1147,1152],{"type":39,"tag":1069,"props":1131,"children":1132},{"style":1086},[1133],{"type":45,"value":72},{"type":39,"tag":1069,"props":1135,"children":1136},{"style":1091},[1137],{"type":45,"value":1094},{"type":39,"tag":1069,"props":1139,"children":1140},{"style":1091},[1141],{"type":45,"value":1099},{"type":39,"tag":1069,"props":1143,"children":1144},{"style":1091},[1145],{"type":45,"value":1146}," filter",{"type":39,"tag":1069,"props":1148,"children":1149},{"style":1091},[1150],{"type":45,"value":1151}," works",{"type":39,"tag":1069,"props":1153,"children":1155},{"style":1154},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1156],{"type":45,"value":1157}," \\\n",{"type":39,"tag":1069,"props":1159,"children":1161},{"class":1071,"line":1160},4,[1162,1167,1171,1176,1181],{"type":39,"tag":1069,"props":1163,"children":1164},{"style":1091},[1165],{"type":45,"value":1166},"  --filter",{"type":39,"tag":1069,"props":1168,"children":1169},{"style":1112},[1170],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1172,"children":1173},{"style":1091},[1174],{"type":45,"value":1175},"authorships.author.id:A5108093963",{"type":39,"tag":1069,"props":1177,"children":1178},{"style":1112},[1179],{"type":45,"value":1180},"\"",{"type":39,"tag":1069,"props":1182,"children":1183},{"style":1154},[1184],{"type":45,"value":1157},{"type":39,"tag":1069,"props":1186,"children":1188},{"class":1071,"line":1187},5,[1189,1194,1198,1202,1206,1211,1217,1222],{"type":39,"tag":1069,"props":1190,"children":1191},{"style":1091},[1192],{"type":45,"value":1193},"  --sort",{"type":39,"tag":1069,"props":1195,"children":1196},{"style":1112},[1197],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1199,"children":1200},{"style":1091},[1201],{"type":45,"value":799},{"type":39,"tag":1069,"props":1203,"children":1204},{"style":1112},[1205],{"type":45,"value":1180},{"type":39,"tag":1069,"props":1207,"children":1208},{"style":1091},[1209],{"type":45,"value":1210}," --per-page",{"type":39,"tag":1069,"props":1212,"children":1214},{"style":1213},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1215],{"type":45,"value":1216}," 10",{"type":39,"tag":1069,"props":1218,"children":1219},{"style":1112},[1220],{"type":45,"value":1221}," >",{"type":39,"tag":1069,"props":1223,"children":1224},{"style":1091},[1225],{"type":45,"value":1226}," papers.json\n",{"type":39,"tag":1069,"props":1228,"children":1230},{"class":1071,"line":1229},6,[1231,1236,1241,1246,1251,1256,1261],{"type":39,"tag":1069,"props":1232,"children":1233},{"style":1086},[1234],{"type":45,"value":1235},"cat",{"type":39,"tag":1069,"props":1237,"children":1238},{"style":1091},[1239],{"type":45,"value":1240}," papers.json",{"type":39,"tag":1069,"props":1242,"children":1243},{"style":1112},[1244],{"type":45,"value":1245}," |",{"type":39,"tag":1069,"props":1247,"children":1248},{"style":1086},[1249],{"type":45,"value":1250}," jq",{"type":39,"tag":1069,"props":1252,"children":1253},{"style":1112},[1254],{"type":45,"value":1255}," '",{"type":39,"tag":1069,"props":1257,"children":1258},{"style":1091},[1259],{"type":45,"value":1260},"[.results[] | {id, title: .display_name, year: .publication_year, citations: .cited_by_count}]",{"type":39,"tag":1069,"props":1262,"children":1263},{"style":1112},[1264],{"type":45,"value":1265},"'\n",{"type":39,"tag":1069,"props":1267,"children":1269},{"class":1071,"line":1268},7,[1270],{"type":39,"tag":1069,"props":1271,"children":1273},{"emptyLinePlaceholder":1272},true,[1274],{"type":45,"value":1275},"\n",{"type":39,"tag":1069,"props":1277,"children":1279},{"class":1071,"line":1278},8,[1280],{"type":39,"tag":1069,"props":1281,"children":1282},{"style":1076},[1283],{"type":45,"value":1284},"# DOI lookup\n",{"type":39,"tag":1069,"props":1286,"children":1288},{"class":1071,"line":1287},9,[1289,1293,1297,1301,1306,1310,1314,1319],{"type":39,"tag":1069,"props":1290,"children":1291},{"style":1086},[1292],{"type":45,"value":72},{"type":39,"tag":1069,"props":1294,"children":1295},{"style":1091},[1296],{"type":45,"value":1094},{"type":39,"tag":1069,"props":1298,"children":1299},{"style":1091},[1300],{"type":45,"value":1099},{"type":39,"tag":1069,"props":1302,"children":1303},{"style":1091},[1304],{"type":45,"value":1305}," get",{"type":39,"tag":1069,"props":1307,"children":1308},{"style":1091},[1309],{"type":45,"value":1151},{"type":39,"tag":1069,"props":1311,"children":1312},{"style":1112},[1313],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1315,"children":1316},{"style":1091},[1317],{"type":45,"value":1318},"https:\u002F\u002Fdoi.org\u002F10.1038\u002Fs41586-021-03819-2",{"type":39,"tag":1069,"props":1320,"children":1321},{"style":1112},[1322],{"type":45,"value":1125},{"type":39,"tag":1069,"props":1324,"children":1326},{"class":1071,"line":1325},10,[1327],{"type":39,"tag":1069,"props":1328,"children":1329},{"emptyLinePlaceholder":1272},[1330],{"type":45,"value":1275},{"type":39,"tag":1069,"props":1332,"children":1334},{"class":1071,"line":1333},11,[1335],{"type":39,"tag":1069,"props":1336,"children":1337},{"style":1076},[1338],{"type":45,"value":1339},"# Bulk DOI lookup (up to 100)\n",{"type":39,"tag":1069,"props":1341,"children":1343},{"class":1071,"line":1342},12,[1344,1348,1352,1356,1360,1364],{"type":39,"tag":1069,"props":1345,"children":1346},{"style":1086},[1347],{"type":45,"value":72},{"type":39,"tag":1069,"props":1349,"children":1350},{"style":1091},[1351],{"type":45,"value":1094},{"type":39,"tag":1069,"props":1353,"children":1354},{"style":1091},[1355],{"type":45,"value":1099},{"type":39,"tag":1069,"props":1357,"children":1358},{"style":1091},[1359],{"type":45,"value":1146},{"type":39,"tag":1069,"props":1361,"children":1362},{"style":1091},[1363],{"type":45,"value":1151},{"type":39,"tag":1069,"props":1365,"children":1366},{"style":1154},[1367],{"type":45,"value":1157},{"type":39,"tag":1069,"props":1369,"children":1371},{"class":1071,"line":1370},13,[1372,1376,1380,1385,1389,1393,1398,1402],{"type":39,"tag":1069,"props":1373,"children":1374},{"style":1091},[1375],{"type":45,"value":1166},{"type":39,"tag":1069,"props":1377,"children":1378},{"style":1112},[1379],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1381,"children":1382},{"style":1091},[1383],{"type":45,"value":1384},"doi:10.1234\u002Fa|10.1234\u002Fb|10.1234\u002Fc",{"type":39,"tag":1069,"props":1386,"children":1387},{"style":1112},[1388],{"type":45,"value":1180},{"type":39,"tag":1069,"props":1390,"children":1391},{"style":1091},[1392],{"type":45,"value":1210},{"type":39,"tag":1069,"props":1394,"children":1395},{"style":1213},[1396],{"type":45,"value":1397}," 100",{"type":39,"tag":1069,"props":1399,"children":1400},{"style":1112},[1401],{"type":45,"value":1221},{"type":39,"tag":1069,"props":1403,"children":1404},{"style":1091},[1405],{"type":45,"value":1406}," results.json\n",{"type":39,"tag":1069,"props":1408,"children":1410},{"class":1071,"line":1409},14,[1411],{"type":39,"tag":1069,"props":1412,"children":1413},{"emptyLinePlaceholder":1272},[1414],{"type":45,"value":1275},{"type":39,"tag":1069,"props":1416,"children":1418},{"class":1071,"line":1417},15,[1419],{"type":39,"tag":1069,"props":1420,"children":1421},{"style":1076},[1422],{"type":45,"value":1423},"# Institutional impact by year\n",{"type":39,"tag":1069,"props":1425,"children":1427},{"class":1071,"line":1426},16,[1428,1432,1436,1440,1444,1449,1453,1458],{"type":39,"tag":1069,"props":1429,"children":1430},{"style":1086},[1431],{"type":45,"value":72},{"type":39,"tag":1069,"props":1433,"children":1434},{"style":1091},[1435],{"type":45,"value":1094},{"type":39,"tag":1069,"props":1437,"children":1438},{"style":1091},[1439],{"type":45,"value":1099},{"type":39,"tag":1069,"props":1441,"children":1442},{"style":1091},[1443],{"type":45,"value":1104},{"type":39,"tag":1069,"props":1445,"children":1446},{"style":1091},[1447],{"type":45,"value":1448}," institutions",{"type":39,"tag":1069,"props":1450,"children":1451},{"style":1112},[1452],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1454,"children":1455},{"style":1091},[1456],{"type":45,"value":1457},"MIT",{"type":39,"tag":1069,"props":1459,"children":1460},{"style":1112},[1461],{"type":45,"value":1125},{"type":39,"tag":1069,"props":1463,"children":1465},{"class":1071,"line":1464},17,[1466,1470,1474,1478,1482,1486],{"type":39,"tag":1069,"props":1467,"children":1468},{"style":1086},[1469],{"type":45,"value":72},{"type":39,"tag":1069,"props":1471,"children":1472},{"style":1091},[1473],{"type":45,"value":1094},{"type":39,"tag":1069,"props":1475,"children":1476},{"style":1091},[1477],{"type":45,"value":1099},{"type":39,"tag":1069,"props":1479,"children":1480},{"style":1091},[1481],{"type":45,"value":1146},{"type":39,"tag":1069,"props":1483,"children":1484},{"style":1091},[1485],{"type":45,"value":1151},{"type":39,"tag":1069,"props":1487,"children":1488},{"style":1154},[1489],{"type":45,"value":1157},{"type":39,"tag":1069,"props":1491,"children":1493},{"class":1071,"line":1492},18,[1494,1498,1502,1507,1511],{"type":39,"tag":1069,"props":1495,"children":1496},{"style":1091},[1497],{"type":45,"value":1166},{"type":39,"tag":1069,"props":1499,"children":1500},{"style":1112},[1501],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1503,"children":1504},{"style":1091},[1505],{"type":45,"value":1506},"authorships.institutions.id:I63966007",{"type":39,"tag":1069,"props":1508,"children":1509},{"style":1112},[1510],{"type":45,"value":1180},{"type":39,"tag":1069,"props":1512,"children":1513},{"style":1154},[1514],{"type":45,"value":1157},{"type":39,"tag":1069,"props":1516,"children":1518},{"class":1071,"line":1517},19,[1519,1524,1528,1533,1537,1541],{"type":39,"tag":1069,"props":1520,"children":1521},{"style":1091},[1522],{"type":45,"value":1523},"  --group-by",{"type":39,"tag":1069,"props":1525,"children":1526},{"style":1112},[1527],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1529,"children":1530},{"style":1091},[1531],{"type":45,"value":1532},"publication_year",{"type":39,"tag":1069,"props":1534,"children":1535},{"style":1112},[1536],{"type":45,"value":1180},{"type":39,"tag":1069,"props":1538,"children":1539},{"style":1112},[1540],{"type":45,"value":1221},{"type":39,"tag":1069,"props":1542,"children":1543},{"style":1091},[1544],{"type":45,"value":1545}," mit_by_year.json\n",{"type":39,"tag":1069,"props":1547,"children":1549},{"class":1071,"line":1548},20,[1550],{"type":39,"tag":1069,"props":1551,"children":1552},{"emptyLinePlaceholder":1272},[1553],{"type":45,"value":1275},{"type":39,"tag":1069,"props":1555,"children":1557},{"class":1071,"line":1556},21,[1558],{"type":39,"tag":1069,"props":1559,"children":1560},{"style":1076},[1561],{"type":45,"value":1562},"# Random sample\n",{"type":39,"tag":1069,"props":1564,"children":1566},{"class":1071,"line":1565},22,[1567,1571,1575,1579,1583,1587],{"type":39,"tag":1069,"props":1568,"children":1569},{"style":1086},[1570],{"type":45,"value":72},{"type":39,"tag":1069,"props":1572,"children":1573},{"style":1091},[1574],{"type":45,"value":1094},{"type":39,"tag":1069,"props":1576,"children":1577},{"style":1091},[1578],{"type":45,"value":1099},{"type":39,"tag":1069,"props":1580,"children":1581},{"style":1091},[1582],{"type":45,"value":1146},{"type":39,"tag":1069,"props":1584,"children":1585},{"style":1091},[1586],{"type":45,"value":1151},{"type":39,"tag":1069,"props":1588,"children":1589},{"style":1154},[1590],{"type":45,"value":1157},{"type":39,"tag":1069,"props":1592,"children":1594},{"class":1071,"line":1593},23,[1595,1599,1603,1608,1612],{"type":39,"tag":1069,"props":1596,"children":1597},{"style":1091},[1598],{"type":45,"value":1166},{"type":39,"tag":1069,"props":1600,"children":1601},{"style":1112},[1602],{"type":45,"value":1115},{"type":39,"tag":1069,"props":1604,"children":1605},{"style":1091},[1606],{"type":45,"value":1607},"publication_year:2023,is_oa:true",{"type":39,"tag":1069,"props":1609,"children":1610},{"style":1112},[1611],{"type":45,"value":1180},{"type":39,"tag":1069,"props":1613,"children":1614},{"style":1154},[1615],{"type":45,"value":1157},{"type":39,"tag":1069,"props":1617,"children":1619},{"class":1071,"line":1618},24,[1620,1625,1629,1634,1639,1643],{"type":39,"tag":1069,"props":1621,"children":1622},{"style":1091},[1623],{"type":45,"value":1624},"  --sample",{"type":39,"tag":1069,"props":1626,"children":1627},{"style":1213},[1628],{"type":45,"value":1397},{"type":39,"tag":1069,"props":1630,"children":1631},{"style":1091},[1632],{"type":45,"value":1633}," --seed",{"type":39,"tag":1069,"props":1635,"children":1636},{"style":1213},[1637],{"type":45,"value":1638}," 42",{"type":39,"tag":1069,"props":1640,"children":1641},{"style":1112},[1642],{"type":45,"value":1221},{"type":39,"tag":1069,"props":1644,"children":1645},{"style":1091},[1646],{"type":45,"value":1406},{"type":39,"tag":48,"props":1648,"children":1650},{"id":1649},"error-handling",[1651],{"type":45,"value":1652},"Error Handling",{"type":39,"tag":374,"props":1654,"children":1655},{},[1656,1677],{"type":39,"tag":378,"props":1657,"children":1658},{},[1659],{"type":39,"tag":382,"props":1660,"children":1661},{},[1662,1667,1672],{"type":39,"tag":386,"props":1663,"children":1664},{},[1665],{"type":45,"value":1666},"Code",{"type":39,"tag":386,"props":1668,"children":1669},{},[1670],{"type":45,"value":1671},"Meaning",{"type":39,"tag":386,"props":1673,"children":1674},{},[1675],{"type":45,"value":1676},"Action",{"type":39,"tag":397,"props":1678,"children":1679},{},[1680,1698,1712,1726,1747,1765,1786,1809,1823,1841,1855,1869],{"type":39,"tag":382,"props":1681,"children":1682},{},[1683,1688,1693],{"type":39,"tag":404,"props":1684,"children":1685},{},[1686],{"type":45,"value":1687},"401",{"type":39,"tag":404,"props":1689,"children":1690},{},[1691],{"type":45,"value":1692},"Unauthorized",{"type":39,"tag":404,"props":1694,"children":1695},{},[1696],{"type":45,"value":1697},"You MUST use safe credentials",{"type":39,"tag":382,"props":1699,"children":1700},{},[1701,1706,1709],{"type":39,"tag":404,"props":1702,"children":1703},{},[1704],{"type":45,"value":1705},":      :                     : protocol in credentials skill :",{"type":39,"tag":404,"props":1707,"children":1708},{},[],{"type":39,"tag":404,"props":1710,"children":1711},{},[],{"type":39,"tag":382,"props":1713,"children":1714},{},[1715,1720,1723],{"type":39,"tag":404,"props":1716,"children":1717},{},[1718],{"type":45,"value":1719},":      :                     : to help user add API key to   :",{"type":39,"tag":404,"props":1721,"children":1722},{},[],{"type":39,"tag":404,"props":1724,"children":1725},{},[],{"type":39,"tag":382,"props":1727,"children":1728},{},[1729,1741,1744],{"type":39,"tag":404,"props":1730,"children":1731},{},[1732,1734,1739],{"type":45,"value":1733},":      :                     : ",{"type":39,"tag":67,"props":1735,"children":1737},{"className":1736},[],[1738],{"type":45,"value":120},{"type":45,"value":1740},"                        :",{"type":39,"tag":404,"props":1742,"children":1743},{},[],{"type":39,"tag":404,"props":1745,"children":1746},{},[],{"type":39,"tag":382,"props":1748,"children":1749},{},[1750,1755,1760],{"type":39,"tag":404,"props":1751,"children":1752},{},[1753],{"type":45,"value":1754},"403",{"type":39,"tag":404,"props":1756,"children":1757},{},[1758],{"type":45,"value":1759},"Plan upgrade needed",{"type":39,"tag":404,"props":1761,"children":1762},{},[1763],{"type":45,"value":1764},"Inform user; see",{"type":39,"tag":382,"props":1766,"children":1767},{},[1768,1780,1783],{"type":39,"tag":404,"props":1769,"children":1770},{},[1771,1772,1778],{"type":45,"value":1733},{"type":39,"tag":100,"props":1773,"children":1776},{"href":1774,"rel":1775},"https:\u002F\u002Fopenalex.org\u002Fpricing",[104],[1777],{"type":45,"value":1774},{"type":45,"value":1779}," :",{"type":39,"tag":404,"props":1781,"children":1782},{},[],{"type":39,"tag":404,"props":1784,"children":1785},{},[],{"type":39,"tag":382,"props":1787,"children":1788},{},[1789,1794,1799],{"type":39,"tag":404,"props":1790,"children":1791},{},[1792],{"type":45,"value":1793},"404",{"type":39,"tag":404,"props":1795,"children":1796},{},[1797],{"type":45,"value":1798},"Not found",{"type":39,"tag":404,"props":1800,"children":1801},{},[1802,1804],{"type":45,"value":1803},"Verify ID; try ",{"type":39,"tag":67,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":45,"value":195},{"type":39,"tag":382,"props":1810,"children":1811},{},[1812,1817,1820],{"type":39,"tag":404,"props":1813,"children":1814},{},[1815],{"type":45,"value":1816},":      :                     : first                         :",{"type":39,"tag":404,"props":1818,"children":1819},{},[],{"type":39,"tag":404,"props":1821,"children":1822},{},[],{"type":39,"tag":382,"props":1824,"children":1825},{},[1826,1831,1836],{"type":39,"tag":404,"props":1827,"children":1828},{},[1829],{"type":45,"value":1830},"429",{"type":39,"tag":404,"props":1832,"children":1833},{},[1834],{"type":45,"value":1835},"Rate limited",{"type":39,"tag":404,"props":1837,"children":1838},{},[1839],{"type":45,"value":1840},"Wait and retry; you MUST use",{"type":39,"tag":382,"props":1842,"children":1843},{},[1844,1849,1852],{"type":39,"tag":404,"props":1845,"children":1846},{},[1847],{"type":45,"value":1848},":      :                     : safe credentials protocol in  :",{"type":39,"tag":404,"props":1850,"children":1851},{},[],{"type":39,"tag":404,"props":1853,"children":1854},{},[],{"type":39,"tag":382,"props":1856,"children":1857},{},[1858,1863,1866],{"type":39,"tag":404,"props":1859,"children":1860},{},[1861],{"type":45,"value":1862},":      :                     : credentials skill to help     :",{"type":39,"tag":404,"props":1864,"children":1865},{},[],{"type":39,"tag":404,"props":1867,"children":1868},{},[],{"type":39,"tag":382,"props":1870,"children":1871},{},[1872,1884,1887],{"type":39,"tag":404,"props":1873,"children":1874},{},[1875,1877,1882],{"type":45,"value":1876},":      :                     : user add API key to ",{"type":39,"tag":67,"props":1878,"children":1880},{"className":1879},[],[1881],{"type":45,"value":120},{"type":45,"value":1883},"    :",{"type":39,"tag":404,"props":1885,"children":1886},{},[],{"type":39,"tag":404,"props":1888,"children":1889},{},[],{"type":39,"tag":495,"props":1891,"children":1892},{},[1893,1895,1901,1902,1908],{"type":45,"value":1894},"Known premium-only filters: ",{"type":39,"tag":67,"props":1896,"children":1898},{"className":1897},[],[1899],{"type":45,"value":1900},"from_updated_date",{"type":45,"value":507},{"type":39,"tag":67,"props":1903,"children":1905},{"className":1904},[],[1906],{"type":45,"value":1907},"to_updated_date",{"type":45,"value":205},{"type":39,"tag":495,"props":1910,"children":1911},{},[1912],{"type":45,"value":1913},"Never fabricate results on empty responses — report accurately and suggest\nalternate search terms.",{"type":39,"tag":1915,"props":1916,"children":1917},"style",{},[1918],{"type":45,"value":1919},"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":1921,"total":2088},[1922,1939,1954,1974,1986,2001,2016,2029,2041,2056,2067,2077],{"slug":1923,"name":1923,"fn":1924,"description":1925,"org":1926,"tags":1927,"stars":22,"repoUrl":23,"updatedAt":1938},"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},[1928,1931,1934,1937],{"name":1929,"slug":1930,"type":15},"Bioinformatics","bioinformatics",{"name":1932,"slug":1933,"type":15},"Genomics","genomics",{"name":1935,"slug":1936,"type":15},"Life Sciences","life-sciences",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:51.827211",{"slug":1940,"name":1940,"fn":1941,"description":1942,"org":1943,"tags":1944,"stars":22,"repoUrl":23,"updatedAt":1953},"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},[1945,1946,1949,1950],{"name":1929,"slug":1930,"type":15},{"name":1947,"slug":1948,"type":15},"Genetics","genetics",{"name":13,"slug":14,"type":15},{"name":1951,"slug":1952,"type":15},"RNA-seq","rna-seq","2026-07-12T07:51:39.494803",{"slug":1955,"name":1955,"fn":1956,"description":1957,"org":1958,"tags":1959,"stars":22,"repoUrl":23,"updatedAt":1973},"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},[1960,1963,1966,1969,1972],{"name":1961,"slug":1962,"type":15},"ChEMBL","chembl",{"name":1964,"slug":1965,"type":15},"Chemistry","chemistry",{"name":1967,"slug":1968,"type":15},"Database","database",{"name":1970,"slug":1971,"type":15},"Pharmacology","pharmacology",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:35.544306",{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":1978,"tags":1979,"stars":22,"repoUrl":23,"updatedAt":1985},"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},[1980,1983,1984],{"name":1981,"slug":1982,"type":15},"Clinical Trials","clinical-trials",{"name":1935,"slug":1936,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:52:06.846705",{"slug":1987,"name":1987,"fn":1988,"description":1989,"org":1990,"tags":1991,"stars":22,"repoUrl":23,"updatedAt":2000},"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},[1992,1995,1996,1999],{"name":1993,"slug":1994,"type":15},"ClinVar","clinvar",{"name":1947,"slug":1948,"type":15},{"name":1997,"slug":1998,"type":15},"Healthcare","healthcare",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:36.86094",{"slug":158,"name":158,"fn":2002,"description":2003,"org":2004,"tags":2005,"stars":22,"repoUrl":23,"updatedAt":2015},"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},[2006,2009,2012],{"name":2007,"slug":2008,"type":15},"Compliance","compliance",{"name":2010,"slug":2011,"type":15},"Operations","operations",{"name":2013,"slug":2014,"type":15},"Security","security","2026-07-12T07:52:17.355491",{"slug":2017,"name":2017,"fn":2018,"description":2019,"org":2020,"tags":2021,"stars":22,"repoUrl":23,"updatedAt":2028},"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},[2022,2023,2024,2027],{"name":1929,"slug":1930,"type":15},{"name":1947,"slug":1948,"type":15},{"name":2025,"slug":2026,"type":15},"NCBI","ncbi",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:33.054229",{"slug":2030,"name":2030,"fn":2031,"description":2032,"org":2033,"tags":2034,"stars":22,"repoUrl":23,"updatedAt":2040},"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},[2035,2036,2039],{"name":1929,"slug":1930,"type":15},{"name":2037,"slug":2038,"type":15},"Ontology","ontology",{"name":13,"slug":14,"type":15},"2026-07-12T07:51:59.368324",{"slug":2042,"name":2042,"fn":2043,"description":2044,"org":2045,"tags":2046,"stars":22,"repoUrl":23,"updatedAt":2055},"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},[2047,2048,2051,2052],{"name":1929,"slug":1930,"type":15},{"name":2049,"slug":2050,"type":15},"GraphQL","graphql",{"name":13,"slug":14,"type":15},{"name":2053,"slug":2054,"type":15},"REST API","rest-api","2026-07-12T07:52:10.597139",{"slug":2057,"name":2057,"fn":2058,"description":2059,"org":2060,"tags":2061,"stars":22,"repoUrl":23,"updatedAt":2066},"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},[2062,2063,2064,2065],{"name":1929,"slug":1930,"type":15},{"name":1947,"slug":1948,"type":15},{"name":1935,"slug":1936,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:51:41.645835",{"slug":2068,"name":2068,"fn":2069,"description":2070,"org":2071,"tags":2072,"stars":22,"repoUrl":23,"updatedAt":2076},"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},[2073,2074,2075],{"name":1929,"slug":1930,"type":15},{"name":1935,"slug":1936,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:52:09.354992",{"slug":2078,"name":2078,"fn":2079,"description":2080,"org":2081,"tags":2082,"stars":22,"repoUrl":23,"updatedAt":2087},"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},[2083,2084,2085,2086],{"name":1929,"slug":1930,"type":15},{"name":1947,"slug":1948,"type":15},{"name":1935,"slug":1936,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T07:51:38.213009",38,{"items":2090,"total":2088},[2091,2098,2105,2113,2119,2126,2132],{"slug":1923,"name":1923,"fn":1924,"description":1925,"org":2092,"tags":2093,"stars":22,"repoUrl":23,"updatedAt":1938},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2094,2095,2096,2097],{"name":1929,"slug":1930,"type":15},{"name":1932,"slug":1933,"type":15},{"name":1935,"slug":1936,"type":15},{"name":13,"slug":14,"type":15},{"slug":1940,"name":1940,"fn":1941,"description":1942,"org":2099,"tags":2100,"stars":22,"repoUrl":23,"updatedAt":1953},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2101,2102,2103,2104],{"name":1929,"slug":1930,"type":15},{"name":1947,"slug":1948,"type":15},{"name":13,"slug":14,"type":15},{"name":1951,"slug":1952,"type":15},{"slug":1955,"name":1955,"fn":1956,"description":1957,"org":2106,"tags":2107,"stars":22,"repoUrl":23,"updatedAt":1973},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2108,2109,2110,2111,2112],{"name":1961,"slug":1962,"type":15},{"name":1964,"slug":1965,"type":15},{"name":1967,"slug":1968,"type":15},{"name":1970,"slug":1971,"type":15},{"name":13,"slug":14,"type":15},{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":2114,"tags":2115,"stars":22,"repoUrl":23,"updatedAt":1985},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2116,2117,2118],{"name":1981,"slug":1982,"type":15},{"name":1935,"slug":1936,"type":15},{"name":13,"slug":14,"type":15},{"slug":1987,"name":1987,"fn":1988,"description":1989,"org":2120,"tags":2121,"stars":22,"repoUrl":23,"updatedAt":2000},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2122,2123,2124,2125],{"name":1993,"slug":1994,"type":15},{"name":1947,"slug":1948,"type":15},{"name":1997,"slug":1998,"type":15},{"name":13,"slug":14,"type":15},{"slug":158,"name":158,"fn":2002,"description":2003,"org":2127,"tags":2128,"stars":22,"repoUrl":23,"updatedAt":2015},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2129,2130,2131],{"name":2007,"slug":2008,"type":15},{"name":2010,"slug":2011,"type":15},{"name":2013,"slug":2014,"type":15},{"slug":2017,"name":2017,"fn":2018,"description":2019,"org":2133,"tags":2134,"stars":22,"repoUrl":23,"updatedAt":2028},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2135,2136,2137,2138],{"name":1929,"slug":1930,"type":15},{"name":1947,"slug":1948,"type":15},{"name":2025,"slug":2026,"type":15},{"name":13,"slug":14,"type":15}]