[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-huggingface-papers":3,"mdc--4if6y2-key":36,"related-org-openai-huggingface-papers":1919,"related-repo-openai-huggingface-papers":2126},{"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},"huggingface-papers","search and read Hugging Face research papers","Look up and read Hugging Face paper pages in markdown, and use the papers API for structured metadata such as authors, linked models\u002Fdatasets\u002Fspaces, Github repo and project page. Use when the user shares a Hugging Face paper page URL, an arXiv URL or ID, or asks to summarize, explain, or analyze an AI research paper.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"Hugging Face","hugging-face",{"name":20,"slug":21,"type":15},"LLM","llm",{"name":23,"slug":24,"type":15},"Knowledge Management","knowledge-management",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:47.921068",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fhugging-face\u002Fskills\u002Fpapers","---\nname: huggingface-papers\ndescription: Look up and read Hugging Face paper pages in markdown, and use the papers API for structured metadata such as authors, linked models\u002Fdatasets\u002Fspaces, Github repo and project page. Use when the user shares a Hugging Face paper page URL, an arXiv URL or ID, or asks to summarize, explain, or analyze an AI research paper.\n---\n\n# Hugging Face Paper Pages\n\nHugging Face Paper pages (hf.co\u002Fpapers) is a platform built on top of arXiv (arxiv.org), specifically for research papers in the field of artificial intelligence (AI) and computer science. Hugging Face users can submit their paper at hf.co\u002Fpapers\u002Fsubmit, which features it on the Daily Papers feed (hf.co\u002Fpapers). Each day, users can upvote papers and comment on papers. Each paper page allows authors to:\n- claim their paper (by clicking their name on the `authors` field). This makes the paper page appear on their Hugging Face profile.\n- link the associated model checkpoints, datasets and Spaces by including the HF paper or arXiv URL in the model card, dataset card or README of the Space\n- link the Github repository and\u002For project page URLs\n- link the HF organization. This also makes the paper page appear on the Hugging Face organization page.\n\nWhenever someone mentions a HF paper or arXiv abstract\u002FPDF URL in a model card, dataset card or README of a Space repository, the paper will be automatically indexed. Note that not all papers indexed on Hugging Face are also submitted to daily papers. The latter is more a manner of promoting a research paper. Papers can only be submitted to daily papers up until 14 days after their publication date on arXiv.\n\nThe Hugging Face team has built an easy-to-use API to interact with paper pages. Content of the papers can be fetched as markdown, or structured metadata can be returned such as author names, linked models\u002Fdatasets\u002Fspaces, linked Github repo and project page.\n\n## When to Use\n\n- User shares a Hugging Face paper page URL (e.g. `https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2602.08025`)\n- User shares a Hugging Face markdown paper page URL (e.g. `https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2602.08025.md`)\n- User shares an arXiv URL (e.g. `https:\u002F\u002Farxiv.org\u002Fabs\u002F2602.08025` or  `https:\u002F\u002Farxiv.org\u002Fpdf\u002F2602.08025`)\n- User mentions a arXiv ID (e.g. `2602.08025`)\n- User asks you to summarize, explain, or analyze an AI research paper\n\n## Parsing the paper ID\n\nIt's recommended to parse the paper ID (arXiv ID) from whatever the user provides:\n\n| Input | Paper ID |\n| --- | --- |\n| `https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2602.08025` | `2602.08025` |\n| `https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2602.08025.md` | `2602.08025` |\n| `https:\u002F\u002Farxiv.org\u002Fabs\u002F2602.08025` | `2602.08025` |\n| `https:\u002F\u002Farxiv.org\u002Fpdf\u002F2602.08025` | `2602.08025` |\n| `2602.08025v1` | `2602.08025v1` |\n| `2602.08025` | `2602.08025` |\n\nThis allows you to provide the paper ID into any of the hub API endpoints mentioned below.\n\n### Fetch the paper page as markdown\n\nThe content of a paper can be fetched as markdown like so:\n\n```bash\ncurl -s \"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}.md\"\n```\n\nThis should return the Hugging Face paper page as markdown. This relies on the HTML version of the paper at https:\u002F\u002Farxiv.org\u002Fhtml\u002F{PAPER_ID}.\n\nThere are 2 exceptions:\n- Not all arXiv papers have an HTML version. If the HTML version of the paper does not exist, then the content falls back to the HTML of the Hugging Face paper page.\n- If it results in a 404, it means the paper is not yet indexed on hf.co\u002Fpapers. See [Error handling](#error-handling) for info.\n\nAlternatively, you can request markdown from the normal paper page URL, like so:\n\n```bash\ncurl -s -H \"Accept: text\u002Fmarkdown\" \"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}\"\n```\n\n### Paper Pages API Endpoints\n\nAll endpoints use the base URL `https:\u002F\u002Fhuggingface.co`.\n\n#### Get structured metadata\n\nFetch the paper metadata as JSON using the Hugging Face REST API:\n\n```bash\ncurl -s \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002F{PAPER_ID}\"\n```\n\nThis returns structured metadata that can include:\n\n- authors (names and Hugging Face usernames, in case they have claimed the paper)\n- media URLs (uploaded when submitting the paper to Daily Papers)\n- summary (abstract) and AI-generated summary\n- project page and GitHub repository\n- organization and engagement metadata (number of upvotes)\n\nTo find models linked to the paper, use:\n\n```bash\ncurl https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fmodels?filter=arxiv:{PAPER_ID}\n```\n\nTo find datasets linked to the paper, use:\n\n```bash\ncurl https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fdatasets?filter=arxiv:{PAPER_ID}\n```\n\nTo find spaces linked to the paper, use:\n\n```bash\ncurl https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fspaces?filter=arxiv:{PAPER_ID}\n```\n\n#### Claim paper authorship\n\nClaim authorship of a paper for a Hugging Face user:\n\n```bash\ncurl \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fsettings\u002Fpapers\u002Fclaim\" \\\n  --request POST \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"paperId\": \"{PAPER_ID}\",\n    \"claimAuthorId\": \"{AUTHOR_ENTRY_ID}\",\n    \"targetUserId\": \"{USER_ID}\"\n  }'\n```\n\n- Endpoint: `POST \u002Fapi\u002Fsettings\u002Fpapers\u002Fclaim`\n- Body:\n  - `paperId` (string, required): arXiv paper identifier being claimed\n  - `claimAuthorId` (string): author entry on the paper being claimed, 24-char hex ID\n  - `targetUserId` (string): HF user who should receive the claim, 24-char hex ID\n- Response: paper authorship claim result, including the claimed paper ID\n\n#### Get daily papers\n\nFetch the Daily Papers feed:\n\n```bash\ncurl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fdaily_papers?p=0&limit=20&date=2017-07-21&sort=publishedAt\"\n```\n\n- Endpoint: `GET \u002Fapi\u002Fdaily_papers`\n- Query parameters:\n  - `p` (integer): page number\n  - `limit` (integer): number of results, between 1 and 100\n  - `date` (string): RFC 3339 full-date, for example `2017-07-21`\n  - `week` (string): ISO week, for example `2024-W03`\n  - `month` (string): month value, for example `2024-01`\n  - `submitter` (string): filter by submitter\n  - `sort` (enum): `publishedAt` or `trending`\n- Response: list of daily papers\n\n#### List papers\n\nList arXiv papers sorted by published date:\n\n```bash\ncurl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers?cursor={CURSOR}&limit=20\"\n```\n\n- Endpoint: `GET \u002Fapi\u002Fpapers`\n- Query parameters:\n  - `cursor` (string): pagination cursor\n  - `limit` (integer): number of results, between 1 and 100\n- Response: list of papers\n\n#### Search papers\n\nPerform hybrid semantic and full-text search on papers:\n\n```bash\ncurl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002Fsearch?q=vision+language&limit=20\"\n```\n\nThis searches over the paper title, authors, and content.\n\n- Endpoint: `GET \u002Fapi\u002Fpapers\u002Fsearch`\n- Query parameters:\n  - `q` (string): search query, max length 250\n  - `limit` (integer): number of results, between 1 and 120\n- Response: matching papers\n\n#### Index a paper\n\nInsert a paper from arXiv by ID. If the paper is already indexed, only its authors can re-index it:\n\n```bash\ncurl \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002Findex\" \\\n  --request POST \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"arxivId\": \"{ARXIV_ID}\"\n  }'\n```\n\n- Endpoint: `POST \u002Fapi\u002Fpapers\u002Findex`\n- Body:\n  - `arxivId` (string, required): arXiv ID to index, for example `2301.00001`\n- Pattern: `^\\d{4}\\.\\d{4,5}$`\n- Response: empty JSON object on success\n\n#### Update paper links\n\nUpdate the project page, GitHub repository, or submitting organization for a paper. The requester must be the paper author, the Daily Papers submitter, or a papers admin:\n\n```bash\ncurl \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002F{PAPER_OBJECT_ID}\u002Flinks\" \\\n  --request POST \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"projectPage\": \"https:\u002F\u002Fexample.com\",\n    \"githubRepo\": \"https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\",\n    \"organizationId\": \"{ORGANIZATION_ID}\"\n  }'\n```\n\n- Endpoint: `POST \u002Fapi\u002Fpapers\u002F{paperId}\u002Flinks`\n- Path parameters:\n  - `paperId` (string, required): Hugging Face paper object ID\n- Body:\n  - `githubRepo` (string, nullable): GitHub repository URL\n  - `organizationId` (string, nullable): organization ID, 24-char hex ID\n  - `projectPage` (string, nullable): project page URL\n- Response: empty JSON object on success\n\n## Error Handling\n\n- **404 on `https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}` or `md` endpoint**: the paper is not indexed on Hugging Face paper pages yet.\n- **404 on `\u002Fapi\u002Fpapers\u002F{PAPER_ID}`**: the paper may not be indexed on Hugging Face paper pages yet.\n- **Paper ID not found**: verify the extracted arXiv ID, including any version suffix\n\n### Fallbacks\n\nIf the Hugging Face paper page does not contain enough detail for the user's question:\n\n- Check the regular paper page at `https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}`\n- Fall back to the arXiv page or PDF for the original source:\n  - `https:\u002F\u002Farxiv.org\u002Fabs\u002F{PAPER_ID}`\n  - `https:\u002F\u002Farxiv.org\u002Fpdf\u002F{PAPER_ID}`\n\n## Notes\n\n- No authentication is required for public paper pages.\n- Write endpoints such as claim authorship, index paper, and update paper links require `Authorization: Bearer $HF_TOKEN`.\n- Prefer the `.md` endpoint for reliable machine-readable output.\n- Prefer `\u002Fapi\u002Fpapers\u002F{PAPER_ID}` when you need structured JSON fields instead of page markdown.",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,90,95,100,107,172,178,183,326,331,338,343,388,404,409,430,435,485,491,503,510,515,546,551,579,584,603,608,627,632,651,657,662,829,889,895,900,959,1093,1099,1104,1162,1207,1213,1218,1276,1281,1327,1333,1338,1468,1521,1527,1532,1678,1753,1759,1812,1818,1823,1862,1868,1913],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"hugging-face-paper-pages",[47],{"type":48,"value":49},"text","Hugging Face Paper Pages",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Hugging Face Paper pages (hf.co\u002Fpapers) is a platform built on top of arXiv (arxiv.org), specifically for research papers in the field of artificial intelligence (AI) and computer science. Hugging Face users can submit their paper at hf.co\u002Fpapers\u002Fsubmit, which features it on the Daily Papers feed (hf.co\u002Fpapers). Each day, users can upvote papers and comment on papers. Each paper page allows authors to:",{"type":42,"tag":57,"props":58,"children":59},"ul",{},[60,75,80,85],{"type":42,"tag":61,"props":62,"children":63},"li",{},[64,66,73],{"type":48,"value":65},"claim their paper (by clicking their name on the ",{"type":42,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":48,"value":72},"authors",{"type":48,"value":74}," field). This makes the paper page appear on their Hugging Face profile.",{"type":42,"tag":61,"props":76,"children":77},{},[78],{"type":48,"value":79},"link the associated model checkpoints, datasets and Spaces by including the HF paper or arXiv URL in the model card, dataset card or README of the Space",{"type":42,"tag":61,"props":81,"children":82},{},[83],{"type":48,"value":84},"link the Github repository and\u002For project page URLs",{"type":42,"tag":61,"props":86,"children":87},{},[88],{"type":48,"value":89},"link the HF organization. This also makes the paper page appear on the Hugging Face organization page.",{"type":42,"tag":51,"props":91,"children":92},{},[93],{"type":48,"value":94},"Whenever someone mentions a HF paper or arXiv abstract\u002FPDF URL in a model card, dataset card or README of a Space repository, the paper will be automatically indexed. Note that not all papers indexed on Hugging Face are also submitted to daily papers. The latter is more a manner of promoting a research paper. Papers can only be submitted to daily papers up until 14 days after their publication date on arXiv.",{"type":42,"tag":51,"props":96,"children":97},{},[98],{"type":48,"value":99},"The Hugging Face team has built an easy-to-use API to interact with paper pages. Content of the papers can be fetched as markdown, or structured metadata can be returned such as author names, linked models\u002Fdatasets\u002Fspaces, linked Github repo and project page.",{"type":42,"tag":101,"props":102,"children":104},"h2",{"id":103},"when-to-use",[105],{"type":48,"value":106},"When to Use",{"type":42,"tag":57,"props":108,"children":109},{},[110,123,135,155,167],{"type":42,"tag":61,"props":111,"children":112},{},[113,115,121],{"type":48,"value":114},"User shares a Hugging Face paper page URL (e.g. ",{"type":42,"tag":67,"props":116,"children":118},{"className":117},[],[119],{"type":48,"value":120},"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2602.08025",{"type":48,"value":122},")",{"type":42,"tag":61,"props":124,"children":125},{},[126,128,134],{"type":48,"value":127},"User shares a Hugging Face markdown paper page URL (e.g. ",{"type":42,"tag":67,"props":129,"children":131},{"className":130},[],[132],{"type":48,"value":133},"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2602.08025.md",{"type":48,"value":122},{"type":42,"tag":61,"props":136,"children":137},{},[138,140,146,148,154],{"type":48,"value":139},"User shares an arXiv URL (e.g. ",{"type":42,"tag":67,"props":141,"children":143},{"className":142},[],[144],{"type":48,"value":145},"https:\u002F\u002Farxiv.org\u002Fabs\u002F2602.08025",{"type":48,"value":147}," or  ",{"type":42,"tag":67,"props":149,"children":151},{"className":150},[],[152],{"type":48,"value":153},"https:\u002F\u002Farxiv.org\u002Fpdf\u002F2602.08025",{"type":48,"value":122},{"type":42,"tag":61,"props":156,"children":157},{},[158,160,166],{"type":48,"value":159},"User mentions a arXiv ID (e.g. ",{"type":42,"tag":67,"props":161,"children":163},{"className":162},[],[164],{"type":48,"value":165},"2602.08025",{"type":48,"value":122},{"type":42,"tag":61,"props":168,"children":169},{},[170],{"type":48,"value":171},"User asks you to summarize, explain, or analyze an AI research paper",{"type":42,"tag":101,"props":173,"children":175},{"id":174},"parsing-the-paper-id",[176],{"type":48,"value":177},"Parsing the paper ID",{"type":42,"tag":51,"props":179,"children":180},{},[181],{"type":48,"value":182},"It's recommended to parse the paper ID (arXiv ID) from whatever the user provides:",{"type":42,"tag":184,"props":185,"children":186},"table",{},[187,206],{"type":42,"tag":188,"props":189,"children":190},"thead",{},[191],{"type":42,"tag":192,"props":193,"children":194},"tr",{},[195,201],{"type":42,"tag":196,"props":197,"children":198},"th",{},[199],{"type":48,"value":200},"Input",{"type":42,"tag":196,"props":202,"children":203},{},[204],{"type":48,"value":205},"Paper ID",{"type":42,"tag":207,"props":208,"children":209},"tbody",{},[210,230,249,268,287,307],{"type":42,"tag":192,"props":211,"children":212},{},[213,222],{"type":42,"tag":214,"props":215,"children":216},"td",{},[217],{"type":42,"tag":67,"props":218,"children":220},{"className":219},[],[221],{"type":48,"value":120},{"type":42,"tag":214,"props":223,"children":224},{},[225],{"type":42,"tag":67,"props":226,"children":228},{"className":227},[],[229],{"type":48,"value":165},{"type":42,"tag":192,"props":231,"children":232},{},[233,241],{"type":42,"tag":214,"props":234,"children":235},{},[236],{"type":42,"tag":67,"props":237,"children":239},{"className":238},[],[240],{"type":48,"value":133},{"type":42,"tag":214,"props":242,"children":243},{},[244],{"type":42,"tag":67,"props":245,"children":247},{"className":246},[],[248],{"type":48,"value":165},{"type":42,"tag":192,"props":250,"children":251},{},[252,260],{"type":42,"tag":214,"props":253,"children":254},{},[255],{"type":42,"tag":67,"props":256,"children":258},{"className":257},[],[259],{"type":48,"value":145},{"type":42,"tag":214,"props":261,"children":262},{},[263],{"type":42,"tag":67,"props":264,"children":266},{"className":265},[],[267],{"type":48,"value":165},{"type":42,"tag":192,"props":269,"children":270},{},[271,279],{"type":42,"tag":214,"props":272,"children":273},{},[274],{"type":42,"tag":67,"props":275,"children":277},{"className":276},[],[278],{"type":48,"value":153},{"type":42,"tag":214,"props":280,"children":281},{},[282],{"type":42,"tag":67,"props":283,"children":285},{"className":284},[],[286],{"type":48,"value":165},{"type":42,"tag":192,"props":288,"children":289},{},[290,299],{"type":42,"tag":214,"props":291,"children":292},{},[293],{"type":42,"tag":67,"props":294,"children":296},{"className":295},[],[297],{"type":48,"value":298},"2602.08025v1",{"type":42,"tag":214,"props":300,"children":301},{},[302],{"type":42,"tag":67,"props":303,"children":305},{"className":304},[],[306],{"type":48,"value":298},{"type":42,"tag":192,"props":308,"children":309},{},[310,318],{"type":42,"tag":214,"props":311,"children":312},{},[313],{"type":42,"tag":67,"props":314,"children":316},{"className":315},[],[317],{"type":48,"value":165},{"type":42,"tag":214,"props":319,"children":320},{},[321],{"type":42,"tag":67,"props":322,"children":324},{"className":323},[],[325],{"type":48,"value":165},{"type":42,"tag":51,"props":327,"children":328},{},[329],{"type":48,"value":330},"This allows you to provide the paper ID into any of the hub API endpoints mentioned below.",{"type":42,"tag":332,"props":333,"children":335},"h3",{"id":334},"fetch-the-paper-page-as-markdown",[336],{"type":48,"value":337},"Fetch the paper page as markdown",{"type":42,"tag":51,"props":339,"children":340},{},[341],{"type":48,"value":342},"The content of a paper can be fetched as markdown like so:",{"type":42,"tag":344,"props":345,"children":350},"pre",{"className":346,"code":347,"language":348,"meta":349,"style":349},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}.md\"\n","bash","",[351],{"type":42,"tag":67,"props":352,"children":353},{"__ignoreMap":349},[354],{"type":42,"tag":355,"props":356,"children":359},"span",{"class":357,"line":358},"line",1,[360,366,372,378,383],{"type":42,"tag":355,"props":361,"children":363},{"style":362},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[364],{"type":48,"value":365},"curl",{"type":42,"tag":355,"props":367,"children":369},{"style":368},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[370],{"type":48,"value":371}," -s",{"type":42,"tag":355,"props":373,"children":375},{"style":374},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[376],{"type":48,"value":377}," \"",{"type":42,"tag":355,"props":379,"children":380},{"style":368},[381],{"type":48,"value":382},"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}.md",{"type":42,"tag":355,"props":384,"children":385},{"style":374},[386],{"type":48,"value":387},"\"\n",{"type":42,"tag":51,"props":389,"children":390},{},[391,393,402],{"type":48,"value":392},"This should return the Hugging Face paper page as markdown. This relies on the HTML version of the paper at ",{"type":42,"tag":394,"props":395,"children":399},"a",{"href":396,"rel":397},"https:\u002F\u002Farxiv.org\u002Fhtml\u002F%7BPAPER_ID%7D",[398],"nofollow",[400],{"type":48,"value":401},"https:\u002F\u002Farxiv.org\u002Fhtml\u002F{PAPER_ID}",{"type":48,"value":403},".",{"type":42,"tag":51,"props":405,"children":406},{},[407],{"type":48,"value":408},"There are 2 exceptions:",{"type":42,"tag":57,"props":410,"children":411},{},[412,417],{"type":42,"tag":61,"props":413,"children":414},{},[415],{"type":48,"value":416},"Not all arXiv papers have an HTML version. If the HTML version of the paper does not exist, then the content falls back to the HTML of the Hugging Face paper page.",{"type":42,"tag":61,"props":418,"children":419},{},[420,422,428],{"type":48,"value":421},"If it results in a 404, it means the paper is not yet indexed on hf.co\u002Fpapers. See ",{"type":42,"tag":394,"props":423,"children":425},{"href":424},"#error-handling",[426],{"type":48,"value":427},"Error handling",{"type":48,"value":429}," for info.",{"type":42,"tag":51,"props":431,"children":432},{},[433],{"type":48,"value":434},"Alternatively, you can request markdown from the normal paper page URL, like so:",{"type":42,"tag":344,"props":436,"children":438},{"className":346,"code":437,"language":348,"meta":349,"style":349},"curl -s -H \"Accept: text\u002Fmarkdown\" \"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}\"\n",[439],{"type":42,"tag":67,"props":440,"children":441},{"__ignoreMap":349},[442],{"type":42,"tag":355,"props":443,"children":444},{"class":357,"line":358},[445,449,453,458,462,467,472,476,481],{"type":42,"tag":355,"props":446,"children":447},{"style":362},[448],{"type":48,"value":365},{"type":42,"tag":355,"props":450,"children":451},{"style":368},[452],{"type":48,"value":371},{"type":42,"tag":355,"props":454,"children":455},{"style":368},[456],{"type":48,"value":457}," -H",{"type":42,"tag":355,"props":459,"children":460},{"style":374},[461],{"type":48,"value":377},{"type":42,"tag":355,"props":463,"children":464},{"style":368},[465],{"type":48,"value":466},"Accept: text\u002Fmarkdown",{"type":42,"tag":355,"props":468,"children":469},{"style":374},[470],{"type":48,"value":471},"\"",{"type":42,"tag":355,"props":473,"children":474},{"style":374},[475],{"type":48,"value":377},{"type":42,"tag":355,"props":477,"children":478},{"style":368},[479],{"type":48,"value":480},"https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F{PAPER_ID}",{"type":42,"tag":355,"props":482,"children":483},{"style":374},[484],{"type":48,"value":387},{"type":42,"tag":332,"props":486,"children":488},{"id":487},"paper-pages-api-endpoints",[489],{"type":48,"value":490},"Paper Pages API Endpoints",{"type":42,"tag":51,"props":492,"children":493},{},[494,496,502],{"type":48,"value":495},"All endpoints use the base URL ",{"type":42,"tag":67,"props":497,"children":499},{"className":498},[],[500],{"type":48,"value":501},"https:\u002F\u002Fhuggingface.co",{"type":48,"value":403},{"type":42,"tag":504,"props":505,"children":507},"h4",{"id":506},"get-structured-metadata",[508],{"type":48,"value":509},"Get structured metadata",{"type":42,"tag":51,"props":511,"children":512},{},[513],{"type":48,"value":514},"Fetch the paper metadata as JSON using the Hugging Face REST API:",{"type":42,"tag":344,"props":516,"children":518},{"className":346,"code":517,"language":348,"meta":349,"style":349},"curl -s \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002F{PAPER_ID}\"\n",[519],{"type":42,"tag":67,"props":520,"children":521},{"__ignoreMap":349},[522],{"type":42,"tag":355,"props":523,"children":524},{"class":357,"line":358},[525,529,533,537,542],{"type":42,"tag":355,"props":526,"children":527},{"style":362},[528],{"type":48,"value":365},{"type":42,"tag":355,"props":530,"children":531},{"style":368},[532],{"type":48,"value":371},{"type":42,"tag":355,"props":534,"children":535},{"style":374},[536],{"type":48,"value":377},{"type":42,"tag":355,"props":538,"children":539},{"style":368},[540],{"type":48,"value":541},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002F{PAPER_ID}",{"type":42,"tag":355,"props":543,"children":544},{"style":374},[545],{"type":48,"value":387},{"type":42,"tag":51,"props":547,"children":548},{},[549],{"type":48,"value":550},"This returns structured metadata that can include:",{"type":42,"tag":57,"props":552,"children":553},{},[554,559,564,569,574],{"type":42,"tag":61,"props":555,"children":556},{},[557],{"type":48,"value":558},"authors (names and Hugging Face usernames, in case they have claimed the paper)",{"type":42,"tag":61,"props":560,"children":561},{},[562],{"type":48,"value":563},"media URLs (uploaded when submitting the paper to Daily Papers)",{"type":42,"tag":61,"props":565,"children":566},{},[567],{"type":48,"value":568},"summary (abstract) and AI-generated summary",{"type":42,"tag":61,"props":570,"children":571},{},[572],{"type":48,"value":573},"project page and GitHub repository",{"type":42,"tag":61,"props":575,"children":576},{},[577],{"type":48,"value":578},"organization and engagement metadata (number of upvotes)",{"type":42,"tag":51,"props":580,"children":581},{},[582],{"type":48,"value":583},"To find models linked to the paper, use:",{"type":42,"tag":344,"props":585,"children":587},{"className":346,"code":586,"language":348,"meta":349,"style":349},"curl https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fmodels?filter=arxiv:{PAPER_ID}\n",[588],{"type":42,"tag":67,"props":589,"children":590},{"__ignoreMap":349},[591],{"type":42,"tag":355,"props":592,"children":593},{"class":357,"line":358},[594,598],{"type":42,"tag":355,"props":595,"children":596},{"style":362},[597],{"type":48,"value":365},{"type":42,"tag":355,"props":599,"children":600},{"style":368},[601],{"type":48,"value":602}," https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fmodels?filter=arxiv:{PAPER_ID}\n",{"type":42,"tag":51,"props":604,"children":605},{},[606],{"type":48,"value":607},"To find datasets linked to the paper, use:",{"type":42,"tag":344,"props":609,"children":611},{"className":346,"code":610,"language":348,"meta":349,"style":349},"curl https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fdatasets?filter=arxiv:{PAPER_ID}\n",[612],{"type":42,"tag":67,"props":613,"children":614},{"__ignoreMap":349},[615],{"type":42,"tag":355,"props":616,"children":617},{"class":357,"line":358},[618,622],{"type":42,"tag":355,"props":619,"children":620},{"style":362},[621],{"type":48,"value":365},{"type":42,"tag":355,"props":623,"children":624},{"style":368},[625],{"type":48,"value":626}," https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fdatasets?filter=arxiv:{PAPER_ID}\n",{"type":42,"tag":51,"props":628,"children":629},{},[630],{"type":48,"value":631},"To find spaces linked to the paper, use:",{"type":42,"tag":344,"props":633,"children":635},{"className":346,"code":634,"language":348,"meta":349,"style":349},"curl https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fspaces?filter=arxiv:{PAPER_ID}\n",[636],{"type":42,"tag":67,"props":637,"children":638},{"__ignoreMap":349},[639],{"type":42,"tag":355,"props":640,"children":641},{"class":357,"line":358},[642,646],{"type":42,"tag":355,"props":643,"children":644},{"style":362},[645],{"type":48,"value":365},{"type":42,"tag":355,"props":647,"children":648},{"style":368},[649],{"type":48,"value":650}," https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fspaces?filter=arxiv:{PAPER_ID}\n",{"type":42,"tag":504,"props":652,"children":654},{"id":653},"claim-paper-authorship",[655],{"type":48,"value":656},"Claim paper authorship",{"type":42,"tag":51,"props":658,"children":659},{},[660],{"type":48,"value":661},"Claim authorship of a paper for a Hugging Face user:",{"type":42,"tag":344,"props":663,"children":665},{"className":346,"code":664,"language":348,"meta":349,"style":349},"curl \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fsettings\u002Fpapers\u002Fclaim\" \\\n  --request POST \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"paperId\": \"{PAPER_ID}\",\n    \"claimAuthorId\": \"{AUTHOR_ENTRY_ID}\",\n    \"targetUserId\": \"{USER_ID}\"\n  }'\n",[666],{"type":42,"tag":67,"props":667,"children":668},{"__ignoreMap":349},[669,695,713,739,769,788,797,806,815],{"type":42,"tag":355,"props":670,"children":671},{"class":357,"line":358},[672,676,680,685,689],{"type":42,"tag":355,"props":673,"children":674},{"style":362},[675],{"type":48,"value":365},{"type":42,"tag":355,"props":677,"children":678},{"style":374},[679],{"type":48,"value":377},{"type":42,"tag":355,"props":681,"children":682},{"style":368},[683],{"type":48,"value":684},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fsettings\u002Fpapers\u002Fclaim",{"type":42,"tag":355,"props":686,"children":687},{"style":374},[688],{"type":48,"value":471},{"type":42,"tag":355,"props":690,"children":692},{"style":691},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[693],{"type":48,"value":694}," \\\n",{"type":42,"tag":355,"props":696,"children":698},{"class":357,"line":697},2,[699,704,709],{"type":42,"tag":355,"props":700,"children":701},{"style":368},[702],{"type":48,"value":703},"  --request",{"type":42,"tag":355,"props":705,"children":706},{"style":368},[707],{"type":48,"value":708}," POST",{"type":42,"tag":355,"props":710,"children":711},{"style":691},[712],{"type":48,"value":694},{"type":42,"tag":355,"props":714,"children":716},{"class":357,"line":715},3,[717,722,726,731,735],{"type":42,"tag":355,"props":718,"children":719},{"style":368},[720],{"type":48,"value":721},"  --header",{"type":42,"tag":355,"props":723,"children":724},{"style":374},[725],{"type":48,"value":377},{"type":42,"tag":355,"props":727,"children":728},{"style":368},[729],{"type":48,"value":730},"Content-Type: application\u002Fjson",{"type":42,"tag":355,"props":732,"children":733},{"style":374},[734],{"type":48,"value":471},{"type":42,"tag":355,"props":736,"children":737},{"style":691},[738],{"type":48,"value":694},{"type":42,"tag":355,"props":740,"children":742},{"class":357,"line":741},4,[743,747,751,756,761,765],{"type":42,"tag":355,"props":744,"children":745},{"style":368},[746],{"type":48,"value":721},{"type":42,"tag":355,"props":748,"children":749},{"style":374},[750],{"type":48,"value":377},{"type":42,"tag":355,"props":752,"children":753},{"style":368},[754],{"type":48,"value":755},"Authorization: Bearer ",{"type":42,"tag":355,"props":757,"children":758},{"style":691},[759],{"type":48,"value":760},"$HF_TOKEN",{"type":42,"tag":355,"props":762,"children":763},{"style":374},[764],{"type":48,"value":471},{"type":42,"tag":355,"props":766,"children":767},{"style":691},[768],{"type":48,"value":694},{"type":42,"tag":355,"props":770,"children":772},{"class":357,"line":771},5,[773,778,783],{"type":42,"tag":355,"props":774,"children":775},{"style":368},[776],{"type":48,"value":777},"  --data",{"type":42,"tag":355,"props":779,"children":780},{"style":374},[781],{"type":48,"value":782}," '",{"type":42,"tag":355,"props":784,"children":785},{"style":368},[786],{"type":48,"value":787},"{\n",{"type":42,"tag":355,"props":789,"children":791},{"class":357,"line":790},6,[792],{"type":42,"tag":355,"props":793,"children":794},{"style":368},[795],{"type":48,"value":796},"    \"paperId\": \"{PAPER_ID}\",\n",{"type":42,"tag":355,"props":798,"children":800},{"class":357,"line":799},7,[801],{"type":42,"tag":355,"props":802,"children":803},{"style":368},[804],{"type":48,"value":805},"    \"claimAuthorId\": \"{AUTHOR_ENTRY_ID}\",\n",{"type":42,"tag":355,"props":807,"children":809},{"class":357,"line":808},8,[810],{"type":42,"tag":355,"props":811,"children":812},{"style":368},[813],{"type":48,"value":814},"    \"targetUserId\": \"{USER_ID}\"\n",{"type":42,"tag":355,"props":816,"children":818},{"class":357,"line":817},9,[819,824],{"type":42,"tag":355,"props":820,"children":821},{"style":368},[822],{"type":48,"value":823},"  }",{"type":42,"tag":355,"props":825,"children":826},{"style":374},[827],{"type":48,"value":828},"'\n",{"type":42,"tag":57,"props":830,"children":831},{},[832,843,884],{"type":42,"tag":61,"props":833,"children":834},{},[835,837],{"type":48,"value":836},"Endpoint: ",{"type":42,"tag":67,"props":838,"children":840},{"className":839},[],[841],{"type":48,"value":842},"POST \u002Fapi\u002Fsettings\u002Fpapers\u002Fclaim",{"type":42,"tag":61,"props":844,"children":845},{},[846,848],{"type":48,"value":847},"Body:\n",{"type":42,"tag":57,"props":849,"children":850},{},[851,862,873],{"type":42,"tag":61,"props":852,"children":853},{},[854,860],{"type":42,"tag":67,"props":855,"children":857},{"className":856},[],[858],{"type":48,"value":859},"paperId",{"type":48,"value":861}," (string, required): arXiv paper identifier being claimed",{"type":42,"tag":61,"props":863,"children":864},{},[865,871],{"type":42,"tag":67,"props":866,"children":868},{"className":867},[],[869],{"type":48,"value":870},"claimAuthorId",{"type":48,"value":872}," (string): author entry on the paper being claimed, 24-char hex ID",{"type":42,"tag":61,"props":874,"children":875},{},[876,882],{"type":42,"tag":67,"props":877,"children":879},{"className":878},[],[880],{"type":48,"value":881},"targetUserId",{"type":48,"value":883}," (string): HF user who should receive the claim, 24-char hex ID",{"type":42,"tag":61,"props":885,"children":886},{},[887],{"type":48,"value":888},"Response: paper authorship claim result, including the claimed paper ID",{"type":42,"tag":504,"props":890,"children":892},{"id":891},"get-daily-papers",[893],{"type":48,"value":894},"Get daily papers",{"type":42,"tag":51,"props":896,"children":897},{},[898],{"type":48,"value":899},"Fetch the Daily Papers feed:",{"type":42,"tag":344,"props":901,"children":903},{"className":346,"code":902,"language":348,"meta":349,"style":349},"curl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fdaily_papers?p=0&limit=20&date=2017-07-21&sort=publishedAt\"\n",[904],{"type":42,"tag":67,"props":905,"children":906},{"__ignoreMap":349},[907,942],{"type":42,"tag":355,"props":908,"children":909},{"class":357,"line":358},[910,914,918,922,926,930,934,938],{"type":42,"tag":355,"props":911,"children":912},{"style":362},[913],{"type":48,"value":365},{"type":42,"tag":355,"props":915,"children":916},{"style":368},[917],{"type":48,"value":371},{"type":42,"tag":355,"props":919,"children":920},{"style":368},[921],{"type":48,"value":457},{"type":42,"tag":355,"props":923,"children":924},{"style":374},[925],{"type":48,"value":377},{"type":42,"tag":355,"props":927,"children":928},{"style":368},[929],{"type":48,"value":755},{"type":42,"tag":355,"props":931,"children":932},{"style":691},[933],{"type":48,"value":760},{"type":42,"tag":355,"props":935,"children":936},{"style":374},[937],{"type":48,"value":471},{"type":42,"tag":355,"props":939,"children":940},{"style":691},[941],{"type":48,"value":694},{"type":42,"tag":355,"props":943,"children":944},{"class":357,"line":697},[945,950,955],{"type":42,"tag":355,"props":946,"children":947},{"style":374},[948],{"type":48,"value":949},"  \"",{"type":42,"tag":355,"props":951,"children":952},{"style":368},[953],{"type":48,"value":954},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fdaily_papers?p=0&limit=20&date=2017-07-21&sort=publishedAt",{"type":42,"tag":355,"props":956,"children":957},{"style":374},[958],{"type":48,"value":387},{"type":42,"tag":57,"props":960,"children":961},{},[962,972,1088],{"type":42,"tag":61,"props":963,"children":964},{},[965,966],{"type":48,"value":836},{"type":42,"tag":67,"props":967,"children":969},{"className":968},[],[970],{"type":48,"value":971},"GET \u002Fapi\u002Fdaily_papers",{"type":42,"tag":61,"props":973,"children":974},{},[975,977],{"type":48,"value":976},"Query parameters:\n",{"type":42,"tag":57,"props":978,"children":979},{},[980,990,1001,1018,1035,1052,1063],{"type":42,"tag":61,"props":981,"children":982},{},[983,988],{"type":42,"tag":67,"props":984,"children":986},{"className":985},[],[987],{"type":48,"value":51},{"type":48,"value":989}," (integer): page number",{"type":42,"tag":61,"props":991,"children":992},{},[993,999],{"type":42,"tag":67,"props":994,"children":996},{"className":995},[],[997],{"type":48,"value":998},"limit",{"type":48,"value":1000}," (integer): number of results, between 1 and 100",{"type":42,"tag":61,"props":1002,"children":1003},{},[1004,1010,1012],{"type":42,"tag":67,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":48,"value":1009},"date",{"type":48,"value":1011}," (string): RFC 3339 full-date, for example ",{"type":42,"tag":67,"props":1013,"children":1015},{"className":1014},[],[1016],{"type":48,"value":1017},"2017-07-21",{"type":42,"tag":61,"props":1019,"children":1020},{},[1021,1027,1029],{"type":42,"tag":67,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":48,"value":1026},"week",{"type":48,"value":1028}," (string): ISO week, for example ",{"type":42,"tag":67,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":48,"value":1034},"2024-W03",{"type":42,"tag":61,"props":1036,"children":1037},{},[1038,1044,1046],{"type":42,"tag":67,"props":1039,"children":1041},{"className":1040},[],[1042],{"type":48,"value":1043},"month",{"type":48,"value":1045}," (string): month value, for example ",{"type":42,"tag":67,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":48,"value":1051},"2024-01",{"type":42,"tag":61,"props":1053,"children":1054},{},[1055,1061],{"type":42,"tag":67,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":48,"value":1060},"submitter",{"type":48,"value":1062}," (string): filter by submitter",{"type":42,"tag":61,"props":1064,"children":1065},{},[1066,1072,1074,1080,1082],{"type":42,"tag":67,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":48,"value":1071},"sort",{"type":48,"value":1073}," (enum): ",{"type":42,"tag":67,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":48,"value":1079},"publishedAt",{"type":48,"value":1081}," or ",{"type":42,"tag":67,"props":1083,"children":1085},{"className":1084},[],[1086],{"type":48,"value":1087},"trending",{"type":42,"tag":61,"props":1089,"children":1090},{},[1091],{"type":48,"value":1092},"Response: list of daily papers",{"type":42,"tag":504,"props":1094,"children":1096},{"id":1095},"list-papers",[1097],{"type":48,"value":1098},"List papers",{"type":42,"tag":51,"props":1100,"children":1101},{},[1102],{"type":48,"value":1103},"List arXiv papers sorted by published date:",{"type":42,"tag":344,"props":1105,"children":1107},{"className":346,"code":1106,"language":348,"meta":349,"style":349},"curl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers?cursor={CURSOR}&limit=20\"\n",[1108],{"type":42,"tag":67,"props":1109,"children":1110},{"__ignoreMap":349},[1111,1146],{"type":42,"tag":355,"props":1112,"children":1113},{"class":357,"line":358},[1114,1118,1122,1126,1130,1134,1138,1142],{"type":42,"tag":355,"props":1115,"children":1116},{"style":362},[1117],{"type":48,"value":365},{"type":42,"tag":355,"props":1119,"children":1120},{"style":368},[1121],{"type":48,"value":371},{"type":42,"tag":355,"props":1123,"children":1124},{"style":368},[1125],{"type":48,"value":457},{"type":42,"tag":355,"props":1127,"children":1128},{"style":374},[1129],{"type":48,"value":377},{"type":42,"tag":355,"props":1131,"children":1132},{"style":368},[1133],{"type":48,"value":755},{"type":42,"tag":355,"props":1135,"children":1136},{"style":691},[1137],{"type":48,"value":760},{"type":42,"tag":355,"props":1139,"children":1140},{"style":374},[1141],{"type":48,"value":471},{"type":42,"tag":355,"props":1143,"children":1144},{"style":691},[1145],{"type":48,"value":694},{"type":42,"tag":355,"props":1147,"children":1148},{"class":357,"line":697},[1149,1153,1158],{"type":42,"tag":355,"props":1150,"children":1151},{"style":374},[1152],{"type":48,"value":949},{"type":42,"tag":355,"props":1154,"children":1155},{"style":368},[1156],{"type":48,"value":1157},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers?cursor={CURSOR}&limit=20",{"type":42,"tag":355,"props":1159,"children":1160},{"style":374},[1161],{"type":48,"value":387},{"type":42,"tag":57,"props":1163,"children":1164},{},[1165,1175,1202],{"type":42,"tag":61,"props":1166,"children":1167},{},[1168,1169],{"type":48,"value":836},{"type":42,"tag":67,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":48,"value":1174},"GET \u002Fapi\u002Fpapers",{"type":42,"tag":61,"props":1176,"children":1177},{},[1178,1179],{"type":48,"value":976},{"type":42,"tag":57,"props":1180,"children":1181},{},[1182,1193],{"type":42,"tag":61,"props":1183,"children":1184},{},[1185,1191],{"type":42,"tag":67,"props":1186,"children":1188},{"className":1187},[],[1189],{"type":48,"value":1190},"cursor",{"type":48,"value":1192}," (string): pagination cursor",{"type":42,"tag":61,"props":1194,"children":1195},{},[1196,1201],{"type":42,"tag":67,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":48,"value":998},{"type":48,"value":1000},{"type":42,"tag":61,"props":1203,"children":1204},{},[1205],{"type":48,"value":1206},"Response: list of papers",{"type":42,"tag":504,"props":1208,"children":1210},{"id":1209},"search-papers",[1211],{"type":48,"value":1212},"Search papers",{"type":42,"tag":51,"props":1214,"children":1215},{},[1216],{"type":48,"value":1217},"Perform hybrid semantic and full-text search on papers:",{"type":42,"tag":344,"props":1219,"children":1221},{"className":346,"code":1220,"language":348,"meta":349,"style":349},"curl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002Fsearch?q=vision+language&limit=20\"\n",[1222],{"type":42,"tag":67,"props":1223,"children":1224},{"__ignoreMap":349},[1225,1260],{"type":42,"tag":355,"props":1226,"children":1227},{"class":357,"line":358},[1228,1232,1236,1240,1244,1248,1252,1256],{"type":42,"tag":355,"props":1229,"children":1230},{"style":362},[1231],{"type":48,"value":365},{"type":42,"tag":355,"props":1233,"children":1234},{"style":368},[1235],{"type":48,"value":371},{"type":42,"tag":355,"props":1237,"children":1238},{"style":368},[1239],{"type":48,"value":457},{"type":42,"tag":355,"props":1241,"children":1242},{"style":374},[1243],{"type":48,"value":377},{"type":42,"tag":355,"props":1245,"children":1246},{"style":368},[1247],{"type":48,"value":755},{"type":42,"tag":355,"props":1249,"children":1250},{"style":691},[1251],{"type":48,"value":760},{"type":42,"tag":355,"props":1253,"children":1254},{"style":374},[1255],{"type":48,"value":471},{"type":42,"tag":355,"props":1257,"children":1258},{"style":691},[1259],{"type":48,"value":694},{"type":42,"tag":355,"props":1261,"children":1262},{"class":357,"line":697},[1263,1267,1272],{"type":42,"tag":355,"props":1264,"children":1265},{"style":374},[1266],{"type":48,"value":949},{"type":42,"tag":355,"props":1268,"children":1269},{"style":368},[1270],{"type":48,"value":1271},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002Fsearch?q=vision+language&limit=20",{"type":42,"tag":355,"props":1273,"children":1274},{"style":374},[1275],{"type":48,"value":387},{"type":42,"tag":51,"props":1277,"children":1278},{},[1279],{"type":48,"value":1280},"This searches over the paper title, authors, and content.",{"type":42,"tag":57,"props":1282,"children":1283},{},[1284,1294,1322],{"type":42,"tag":61,"props":1285,"children":1286},{},[1287,1288],{"type":48,"value":836},{"type":42,"tag":67,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":48,"value":1293},"GET \u002Fapi\u002Fpapers\u002Fsearch",{"type":42,"tag":61,"props":1295,"children":1296},{},[1297,1298],{"type":48,"value":976},{"type":42,"tag":57,"props":1299,"children":1300},{},[1301,1312],{"type":42,"tag":61,"props":1302,"children":1303},{},[1304,1310],{"type":42,"tag":67,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":48,"value":1309},"q",{"type":48,"value":1311}," (string): search query, max length 250",{"type":42,"tag":61,"props":1313,"children":1314},{},[1315,1320],{"type":42,"tag":67,"props":1316,"children":1318},{"className":1317},[],[1319],{"type":48,"value":998},{"type":48,"value":1321}," (integer): number of results, between 1 and 120",{"type":42,"tag":61,"props":1323,"children":1324},{},[1325],{"type":48,"value":1326},"Response: matching papers",{"type":42,"tag":504,"props":1328,"children":1330},{"id":1329},"index-a-paper",[1331],{"type":48,"value":1332},"Index a paper",{"type":42,"tag":51,"props":1334,"children":1335},{},[1336],{"type":48,"value":1337},"Insert a paper from arXiv by ID. If the paper is already indexed, only its authors can re-index it:",{"type":42,"tag":344,"props":1339,"children":1341},{"className":346,"code":1340,"language":348,"meta":349,"style":349},"curl \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002Findex\" \\\n  --request POST \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"arxivId\": \"{ARXIV_ID}\"\n  }'\n",[1342],{"type":42,"tag":67,"props":1343,"children":1344},{"__ignoreMap":349},[1345,1369,1384,1407,1434,1449,1457],{"type":42,"tag":355,"props":1346,"children":1347},{"class":357,"line":358},[1348,1352,1356,1361,1365],{"type":42,"tag":355,"props":1349,"children":1350},{"style":362},[1351],{"type":48,"value":365},{"type":42,"tag":355,"props":1353,"children":1354},{"style":374},[1355],{"type":48,"value":377},{"type":42,"tag":355,"props":1357,"children":1358},{"style":368},[1359],{"type":48,"value":1360},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002Findex",{"type":42,"tag":355,"props":1362,"children":1363},{"style":374},[1364],{"type":48,"value":471},{"type":42,"tag":355,"props":1366,"children":1367},{"style":691},[1368],{"type":48,"value":694},{"type":42,"tag":355,"props":1370,"children":1371},{"class":357,"line":697},[1372,1376,1380],{"type":42,"tag":355,"props":1373,"children":1374},{"style":368},[1375],{"type":48,"value":703},{"type":42,"tag":355,"props":1377,"children":1378},{"style":368},[1379],{"type":48,"value":708},{"type":42,"tag":355,"props":1381,"children":1382},{"style":691},[1383],{"type":48,"value":694},{"type":42,"tag":355,"props":1385,"children":1386},{"class":357,"line":715},[1387,1391,1395,1399,1403],{"type":42,"tag":355,"props":1388,"children":1389},{"style":368},[1390],{"type":48,"value":721},{"type":42,"tag":355,"props":1392,"children":1393},{"style":374},[1394],{"type":48,"value":377},{"type":42,"tag":355,"props":1396,"children":1397},{"style":368},[1398],{"type":48,"value":730},{"type":42,"tag":355,"props":1400,"children":1401},{"style":374},[1402],{"type":48,"value":471},{"type":42,"tag":355,"props":1404,"children":1405},{"style":691},[1406],{"type":48,"value":694},{"type":42,"tag":355,"props":1408,"children":1409},{"class":357,"line":741},[1410,1414,1418,1422,1426,1430],{"type":42,"tag":355,"props":1411,"children":1412},{"style":368},[1413],{"type":48,"value":721},{"type":42,"tag":355,"props":1415,"children":1416},{"style":374},[1417],{"type":48,"value":377},{"type":42,"tag":355,"props":1419,"children":1420},{"style":368},[1421],{"type":48,"value":755},{"type":42,"tag":355,"props":1423,"children":1424},{"style":691},[1425],{"type":48,"value":760},{"type":42,"tag":355,"props":1427,"children":1428},{"style":374},[1429],{"type":48,"value":471},{"type":42,"tag":355,"props":1431,"children":1432},{"style":691},[1433],{"type":48,"value":694},{"type":42,"tag":355,"props":1435,"children":1436},{"class":357,"line":771},[1437,1441,1445],{"type":42,"tag":355,"props":1438,"children":1439},{"style":368},[1440],{"type":48,"value":777},{"type":42,"tag":355,"props":1442,"children":1443},{"style":374},[1444],{"type":48,"value":782},{"type":42,"tag":355,"props":1446,"children":1447},{"style":368},[1448],{"type":48,"value":787},{"type":42,"tag":355,"props":1450,"children":1451},{"class":357,"line":790},[1452],{"type":42,"tag":355,"props":1453,"children":1454},{"style":368},[1455],{"type":48,"value":1456},"    \"arxivId\": \"{ARXIV_ID}\"\n",{"type":42,"tag":355,"props":1458,"children":1459},{"class":357,"line":799},[1460,1464],{"type":42,"tag":355,"props":1461,"children":1462},{"style":368},[1463],{"type":48,"value":823},{"type":42,"tag":355,"props":1465,"children":1466},{"style":374},[1467],{"type":48,"value":828},{"type":42,"tag":57,"props":1469,"children":1470},{},[1471,1481,1505,1516],{"type":42,"tag":61,"props":1472,"children":1473},{},[1474,1475],{"type":48,"value":836},{"type":42,"tag":67,"props":1476,"children":1478},{"className":1477},[],[1479],{"type":48,"value":1480},"POST \u002Fapi\u002Fpapers\u002Findex",{"type":42,"tag":61,"props":1482,"children":1483},{},[1484,1485],{"type":48,"value":847},{"type":42,"tag":57,"props":1486,"children":1487},{},[1488],{"type":42,"tag":61,"props":1489,"children":1490},{},[1491,1497,1499],{"type":42,"tag":67,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":48,"value":1496},"arxivId",{"type":48,"value":1498}," (string, required): arXiv ID to index, for example ",{"type":42,"tag":67,"props":1500,"children":1502},{"className":1501},[],[1503],{"type":48,"value":1504},"2301.00001",{"type":42,"tag":61,"props":1506,"children":1507},{},[1508,1510],{"type":48,"value":1509},"Pattern: ",{"type":42,"tag":67,"props":1511,"children":1513},{"className":1512},[],[1514],{"type":48,"value":1515},"^\\d{4}\\.\\d{4,5}$",{"type":42,"tag":61,"props":1517,"children":1518},{},[1519],{"type":48,"value":1520},"Response: empty JSON object on success",{"type":42,"tag":504,"props":1522,"children":1524},{"id":1523},"update-paper-links",[1525],{"type":48,"value":1526},"Update paper links",{"type":42,"tag":51,"props":1528,"children":1529},{},[1530],{"type":48,"value":1531},"Update the project page, GitHub repository, or submitting organization for a paper. The requester must be the paper author, the Daily Papers submitter, or a papers admin:",{"type":42,"tag":344,"props":1533,"children":1535},{"className":346,"code":1534,"language":348,"meta":349,"style":349},"curl \"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002F{PAPER_OBJECT_ID}\u002Flinks\" \\\n  --request POST \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"projectPage\": \"https:\u002F\u002Fexample.com\",\n    \"githubRepo\": \"https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\",\n    \"organizationId\": \"{ORGANIZATION_ID}\"\n  }'\n",[1536],{"type":42,"tag":67,"props":1537,"children":1538},{"__ignoreMap":349},[1539,1563,1578,1601,1628,1643,1651,1659,1667],{"type":42,"tag":355,"props":1540,"children":1541},{"class":357,"line":358},[1542,1546,1550,1555,1559],{"type":42,"tag":355,"props":1543,"children":1544},{"style":362},[1545],{"type":48,"value":365},{"type":42,"tag":355,"props":1547,"children":1548},{"style":374},[1549],{"type":48,"value":377},{"type":42,"tag":355,"props":1551,"children":1552},{"style":368},[1553],{"type":48,"value":1554},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fpapers\u002F{PAPER_OBJECT_ID}\u002Flinks",{"type":42,"tag":355,"props":1556,"children":1557},{"style":374},[1558],{"type":48,"value":471},{"type":42,"tag":355,"props":1560,"children":1561},{"style":691},[1562],{"type":48,"value":694},{"type":42,"tag":355,"props":1564,"children":1565},{"class":357,"line":697},[1566,1570,1574],{"type":42,"tag":355,"props":1567,"children":1568},{"style":368},[1569],{"type":48,"value":703},{"type":42,"tag":355,"props":1571,"children":1572},{"style":368},[1573],{"type":48,"value":708},{"type":42,"tag":355,"props":1575,"children":1576},{"style":691},[1577],{"type":48,"value":694},{"type":42,"tag":355,"props":1579,"children":1580},{"class":357,"line":715},[1581,1585,1589,1593,1597],{"type":42,"tag":355,"props":1582,"children":1583},{"style":368},[1584],{"type":48,"value":721},{"type":42,"tag":355,"props":1586,"children":1587},{"style":374},[1588],{"type":48,"value":377},{"type":42,"tag":355,"props":1590,"children":1591},{"style":368},[1592],{"type":48,"value":730},{"type":42,"tag":355,"props":1594,"children":1595},{"style":374},[1596],{"type":48,"value":471},{"type":42,"tag":355,"props":1598,"children":1599},{"style":691},[1600],{"type":48,"value":694},{"type":42,"tag":355,"props":1602,"children":1603},{"class":357,"line":741},[1604,1608,1612,1616,1620,1624],{"type":42,"tag":355,"props":1605,"children":1606},{"style":368},[1607],{"type":48,"value":721},{"type":42,"tag":355,"props":1609,"children":1610},{"style":374},[1611],{"type":48,"value":377},{"type":42,"tag":355,"props":1613,"children":1614},{"style":368},[1615],{"type":48,"value":755},{"type":42,"tag":355,"props":1617,"children":1618},{"style":691},[1619],{"type":48,"value":760},{"type":42,"tag":355,"props":1621,"children":1622},{"style":374},[1623],{"type":48,"value":471},{"type":42,"tag":355,"props":1625,"children":1626},{"style":691},[1627],{"type":48,"value":694},{"type":42,"tag":355,"props":1629,"children":1630},{"class":357,"line":771},[1631,1635,1639],{"type":42,"tag":355,"props":1632,"children":1633},{"style":368},[1634],{"type":48,"value":777},{"type":42,"tag":355,"props":1636,"children":1637},{"style":374},[1638],{"type":48,"value":782},{"type":42,"tag":355,"props":1640,"children":1641},{"style":368},[1642],{"type":48,"value":787},{"type":42,"tag":355,"props":1644,"children":1645},{"class":357,"line":790},[1646],{"type":42,"tag":355,"props":1647,"children":1648},{"style":368},[1649],{"type":48,"value":1650},"    \"projectPage\": \"https:\u002F\u002Fexample.com\",\n",{"type":42,"tag":355,"props":1652,"children":1653},{"class":357,"line":799},[1654],{"type":42,"tag":355,"props":1655,"children":1656},{"style":368},[1657],{"type":48,"value":1658},"    \"githubRepo\": \"https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\",\n",{"type":42,"tag":355,"props":1660,"children":1661},{"class":357,"line":808},[1662],{"type":42,"tag":355,"props":1663,"children":1664},{"style":368},[1665],{"type":48,"value":1666},"    \"organizationId\": \"{ORGANIZATION_ID}\"\n",{"type":42,"tag":355,"props":1668,"children":1669},{"class":357,"line":817},[1670,1674],{"type":42,"tag":355,"props":1671,"children":1672},{"style":368},[1673],{"type":48,"value":823},{"type":42,"tag":355,"props":1675,"children":1676},{"style":374},[1677],{"type":48,"value":828},{"type":42,"tag":57,"props":1679,"children":1680},{},[1681,1691,1709,1749],{"type":42,"tag":61,"props":1682,"children":1683},{},[1684,1685],{"type":48,"value":836},{"type":42,"tag":67,"props":1686,"children":1688},{"className":1687},[],[1689],{"type":48,"value":1690},"POST \u002Fapi\u002Fpapers\u002F{paperId}\u002Flinks",{"type":42,"tag":61,"props":1692,"children":1693},{},[1694,1696],{"type":48,"value":1695},"Path parameters:\n",{"type":42,"tag":57,"props":1697,"children":1698},{},[1699],{"type":42,"tag":61,"props":1700,"children":1701},{},[1702,1707],{"type":42,"tag":67,"props":1703,"children":1705},{"className":1704},[],[1706],{"type":48,"value":859},{"type":48,"value":1708}," (string, required): Hugging Face paper object ID",{"type":42,"tag":61,"props":1710,"children":1711},{},[1712,1713],{"type":48,"value":847},{"type":42,"tag":57,"props":1714,"children":1715},{},[1716,1727,1738],{"type":42,"tag":61,"props":1717,"children":1718},{},[1719,1725],{"type":42,"tag":67,"props":1720,"children":1722},{"className":1721},[],[1723],{"type":48,"value":1724},"githubRepo",{"type":48,"value":1726}," (string, nullable): GitHub repository URL",{"type":42,"tag":61,"props":1728,"children":1729},{},[1730,1736],{"type":42,"tag":67,"props":1731,"children":1733},{"className":1732},[],[1734],{"type":48,"value":1735},"organizationId",{"type":48,"value":1737}," (string, nullable): organization ID, 24-char hex ID",{"type":42,"tag":61,"props":1739,"children":1740},{},[1741,1747],{"type":42,"tag":67,"props":1742,"children":1744},{"className":1743},[],[1745],{"type":48,"value":1746},"projectPage",{"type":48,"value":1748}," (string, nullable): project page URL",{"type":42,"tag":61,"props":1750,"children":1751},{},[1752],{"type":48,"value":1520},{"type":42,"tag":101,"props":1754,"children":1756},{"id":1755},"error-handling",[1757],{"type":48,"value":1758},"Error Handling",{"type":42,"tag":57,"props":1760,"children":1761},{},[1762,1787,1802],{"type":42,"tag":61,"props":1763,"children":1764},{},[1765,1785],{"type":42,"tag":1766,"props":1767,"children":1768},"strong",{},[1769,1771,1776,1777,1783],{"type":48,"value":1770},"404 on ",{"type":42,"tag":67,"props":1772,"children":1774},{"className":1773},[],[1775],{"type":48,"value":480},{"type":48,"value":1081},{"type":42,"tag":67,"props":1778,"children":1780},{"className":1779},[],[1781],{"type":48,"value":1782},"md",{"type":48,"value":1784}," endpoint",{"type":48,"value":1786},": the paper is not indexed on Hugging Face paper pages yet.",{"type":42,"tag":61,"props":1788,"children":1789},{},[1790,1800],{"type":42,"tag":1766,"props":1791,"children":1792},{},[1793,1794],{"type":48,"value":1770},{"type":42,"tag":67,"props":1795,"children":1797},{"className":1796},[],[1798],{"type":48,"value":1799},"\u002Fapi\u002Fpapers\u002F{PAPER_ID}",{"type":48,"value":1801},": the paper may not be indexed on Hugging Face paper pages yet.",{"type":42,"tag":61,"props":1803,"children":1804},{},[1805,1810],{"type":42,"tag":1766,"props":1806,"children":1807},{},[1808],{"type":48,"value":1809},"Paper ID not found",{"type":48,"value":1811},": verify the extracted arXiv ID, including any version suffix",{"type":42,"tag":332,"props":1813,"children":1815},{"id":1814},"fallbacks",[1816],{"type":48,"value":1817},"Fallbacks",{"type":42,"tag":51,"props":1819,"children":1820},{},[1821],{"type":48,"value":1822},"If the Hugging Face paper page does not contain enough detail for the user's question:",{"type":42,"tag":57,"props":1824,"children":1825},{},[1826,1836],{"type":42,"tag":61,"props":1827,"children":1828},{},[1829,1831],{"type":48,"value":1830},"Check the regular paper page at ",{"type":42,"tag":67,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":48,"value":480},{"type":42,"tag":61,"props":1837,"children":1838},{},[1839,1841],{"type":48,"value":1840},"Fall back to the arXiv page or PDF for the original source:\n",{"type":42,"tag":57,"props":1842,"children":1843},{},[1844,1853],{"type":42,"tag":61,"props":1845,"children":1846},{},[1847],{"type":42,"tag":67,"props":1848,"children":1850},{"className":1849},[],[1851],{"type":48,"value":1852},"https:\u002F\u002Farxiv.org\u002Fabs\u002F{PAPER_ID}",{"type":42,"tag":61,"props":1854,"children":1855},{},[1856],{"type":42,"tag":67,"props":1857,"children":1859},{"className":1858},[],[1860],{"type":48,"value":1861},"https:\u002F\u002Farxiv.org\u002Fpdf\u002F{PAPER_ID}",{"type":42,"tag":101,"props":1863,"children":1865},{"id":1864},"notes",[1866],{"type":48,"value":1867},"Notes",{"type":42,"tag":57,"props":1869,"children":1870},{},[1871,1876,1888,1901],{"type":42,"tag":61,"props":1872,"children":1873},{},[1874],{"type":48,"value":1875},"No authentication is required for public paper pages.",{"type":42,"tag":61,"props":1877,"children":1878},{},[1879,1881,1887],{"type":48,"value":1880},"Write endpoints such as claim authorship, index paper, and update paper links require ",{"type":42,"tag":67,"props":1882,"children":1884},{"className":1883},[],[1885],{"type":48,"value":1886},"Authorization: Bearer $HF_TOKEN",{"type":48,"value":403},{"type":42,"tag":61,"props":1889,"children":1890},{},[1891,1893,1899],{"type":48,"value":1892},"Prefer the ",{"type":42,"tag":67,"props":1894,"children":1896},{"className":1895},[],[1897],{"type":48,"value":1898},".md",{"type":48,"value":1900}," endpoint for reliable machine-readable output.",{"type":42,"tag":61,"props":1902,"children":1903},{},[1904,1906,1911],{"type":48,"value":1905},"Prefer ",{"type":42,"tag":67,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":48,"value":1799},{"type":48,"value":1912}," when you need structured JSON fields instead of page markdown.",{"type":42,"tag":1914,"props":1915,"children":1916},"style",{},[1917],{"type":48,"value":1918},"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":1920,"total":2125},[1921,1942,1965,1982,1998,2017,2036,2052,2068,2082,2094,2109],{"slug":1922,"name":1922,"fn":1923,"description":1924,"org":1925,"tags":1926,"stars":1939,"repoUrl":1940,"updatedAt":1941},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1927,1930,1933,1936],{"name":1928,"slug":1929,"type":15},"Documents","documents",{"name":1931,"slug":1932,"type":15},"Healthcare","healthcare",{"name":1934,"slug":1935,"type":15},"Insurance","insurance",{"name":1937,"slug":1938,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1943,"name":1943,"fn":1944,"description":1945,"org":1946,"tags":1947,"stars":1962,"repoUrl":1963,"updatedAt":1964},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1948,1951,1953,1956,1959],{"name":1949,"slug":1950,"type":15},".NET","dotnet",{"name":1952,"slug":1943,"type":15},"ASP.NET Core",{"name":1954,"slug":1955,"type":15},"Blazor","blazor",{"name":1957,"slug":1958,"type":15},"C#","csharp",{"name":1960,"slug":1961,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1966,"name":1966,"fn":1967,"description":1968,"org":1969,"tags":1970,"stars":1962,"repoUrl":1963,"updatedAt":1981},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1971,1974,1977,1980],{"name":1972,"slug":1973,"type":15},"Apps SDK","apps-sdk",{"name":1975,"slug":1976,"type":15},"ChatGPT","chatgpt",{"name":1978,"slug":1979,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1983,"name":1983,"fn":1984,"description":1985,"org":1986,"tags":1987,"stars":1962,"repoUrl":1963,"updatedAt":1997},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1988,1991,1994],{"name":1989,"slug":1990,"type":15},"API Development","api-development",{"name":1992,"slug":1993,"type":15},"CLI","cli",{"name":1995,"slug":1996,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1999,"name":1999,"fn":2000,"description":2001,"org":2002,"tags":2003,"stars":1962,"repoUrl":1963,"updatedAt":2016},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2004,2007,2010,2013],{"name":2005,"slug":2006,"type":15},"Cloudflare","cloudflare",{"name":2008,"slug":2009,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2011,"slug":2012,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2014,"slug":2015,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2018,"name":2018,"fn":2019,"description":2020,"org":2021,"tags":2022,"stars":1962,"repoUrl":1963,"updatedAt":2035},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2023,2026,2029,2032],{"name":2024,"slug":2025,"type":15},"Productivity","productivity",{"name":2027,"slug":2028,"type":15},"Project Management","project-management",{"name":2030,"slug":2031,"type":15},"Strategy","strategy",{"name":2033,"slug":2034,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2037,"name":2037,"fn":2038,"description":2039,"org":2040,"tags":2041,"stars":1962,"repoUrl":1963,"updatedAt":2051},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2042,2045,2047,2050],{"name":2043,"slug":2044,"type":15},"Design","design",{"name":2046,"slug":2037,"type":15},"Figma",{"name":2048,"slug":2049,"type":15},"Frontend","frontend",{"name":1978,"slug":1979,"type":15},"2026-04-12T05:06:47.939943",{"slug":2053,"name":2053,"fn":2054,"description":2055,"org":2056,"tags":2057,"stars":1962,"repoUrl":1963,"updatedAt":2067},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2058,2059,2062,2063,2064],{"name":2043,"slug":2044,"type":15},{"name":2060,"slug":2061,"type":15},"Design System","design-system",{"name":2046,"slug":2037,"type":15},{"name":2048,"slug":2049,"type":15},{"name":2065,"slug":2066,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":2069,"name":2069,"fn":2070,"description":2071,"org":2072,"tags":2073,"stars":1962,"repoUrl":1963,"updatedAt":2081},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2074,2075,2076,2079,2080],{"name":2043,"slug":2044,"type":15},{"name":2060,"slug":2061,"type":15},{"name":2077,"slug":2078,"type":15},"Documentation","documentation",{"name":2046,"slug":2037,"type":15},{"name":2048,"slug":2049,"type":15},"2026-05-16T06:07:47.821474",{"slug":2083,"name":2083,"fn":2084,"description":2085,"org":2086,"tags":2087,"stars":1962,"repoUrl":1963,"updatedAt":2093},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2088,2089,2090,2091,2092],{"name":2043,"slug":2044,"type":15},{"name":2046,"slug":2037,"type":15},{"name":2048,"slug":2049,"type":15},{"name":2065,"slug":2066,"type":15},{"name":1960,"slug":1961,"type":15},"2026-05-16T06:07:40.583615",{"slug":2095,"name":2095,"fn":2096,"description":2097,"org":2098,"tags":2099,"stars":1962,"repoUrl":1963,"updatedAt":2108},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2100,2103,2104,2107],{"name":2101,"slug":2102,"type":15},"Animation","animation",{"name":1995,"slug":1996,"type":15},{"name":2105,"slug":2106,"type":15},"Creative","creative",{"name":2043,"slug":2044,"type":15},"2026-05-02T05:31:48.48485",{"slug":2110,"name":2110,"fn":2111,"description":2112,"org":2113,"tags":2114,"stars":1962,"repoUrl":1963,"updatedAt":2124},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2115,2116,2117,2120,2123],{"name":2105,"slug":2106,"type":15},{"name":2043,"slug":2044,"type":15},{"name":2118,"slug":2119,"type":15},"Image Generation","image-generation",{"name":2121,"slug":2122,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2127,"total":2239},[2128,2145,2161,2173,2191,2209,2227],{"slug":2129,"name":2129,"fn":2130,"description":2131,"org":2132,"tags":2133,"stars":25,"repoUrl":26,"updatedAt":2144},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2134,2137,2140,2143],{"name":2135,"slug":2136,"type":15},"Accessibility","accessibility",{"name":2138,"slug":2139,"type":15},"Charts","charts",{"name":2141,"slug":2142,"type":15},"Data Visualization","data-visualization",{"name":2043,"slug":2044,"type":15},"2026-06-30T19:00:57.102",{"slug":2146,"name":2146,"fn":2147,"description":2148,"org":2149,"tags":2150,"stars":25,"repoUrl":26,"updatedAt":2160},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2151,2154,2157],{"name":2152,"slug":2153,"type":15},"Agents","agents",{"name":2155,"slug":2156,"type":15},"Browser Automation","browser-automation",{"name":2158,"slug":2159,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2162,"name":2162,"fn":2163,"description":2164,"org":2165,"tags":2166,"stars":25,"repoUrl":26,"updatedAt":2172},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2167,2168,2171],{"name":2155,"slug":2156,"type":15},{"name":2169,"slug":2170,"type":15},"Local Development","local-development",{"name":2158,"slug":2159,"type":15},"2026-04-06T18:41:17.526867",{"slug":2174,"name":2174,"fn":2175,"description":2176,"org":2177,"tags":2178,"stars":25,"repoUrl":26,"updatedAt":2190},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2179,2180,2181,2184,2187],{"name":2152,"slug":2153,"type":15},{"name":2011,"slug":2012,"type":15},{"name":2182,"slug":2183,"type":15},"SDK","sdk",{"name":2185,"slug":2186,"type":15},"Serverless","serverless",{"name":2188,"slug":2189,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2192,"name":2192,"fn":2193,"description":2194,"org":2195,"tags":2196,"stars":25,"repoUrl":26,"updatedAt":2208},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2197,2198,2201,2204,2205],{"name":2048,"slug":2049,"type":15},{"name":2199,"slug":2200,"type":15},"React","react",{"name":2202,"slug":2203,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2065,"slug":2066,"type":15},{"name":2206,"slug":2207,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2210,"name":2210,"fn":2211,"description":2212,"org":2213,"tags":2214,"stars":25,"repoUrl":26,"updatedAt":2226},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2215,2218,2221,2222,2225],{"name":2216,"slug":2217,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2219,"slug":2220,"type":15},"Cost Optimization","cost-optimization",{"name":20,"slug":21,"type":15},{"name":2223,"slug":2224,"type":15},"Performance","performance",{"name":2206,"slug":2207,"type":15},"2026-04-06T18:40:44.377464",{"slug":2228,"name":2228,"fn":2229,"description":2230,"org":2231,"tags":2232,"stars":25,"repoUrl":26,"updatedAt":2238},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2233,2234,2237],{"name":2219,"slug":2220,"type":15},{"name":2235,"slug":2236,"type":15},"Database","database",{"name":20,"slug":21,"type":15},"2026-04-06T18:41:08.513425",600]