[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-huggingface-datasets":3,"mdc-9t4b9j-key":39,"related-repo-openai-huggingface-datasets":1220,"related-org-openai-huggingface-datasets":1342},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"huggingface-datasets","browse and search Hugging Face datasets","Use this skill for Hugging Face Dataset Viewer API workflows that fetch subset\u002Fsplit metadata, paginate rows, search text, apply filters, download parquet URLs, and read size or statistics.",{"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,25],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"Datasets","datasets",{"name":20,"slug":21,"type":15},"Hugging Face","hugging-face",{"name":23,"slug":24,"type":15},"LLM","llm",{"name":26,"slug":27,"type":15},"Data Analysis","data-analysis",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:44.132309",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fhugging-face\u002Fskills\u002Fdatasets","---\r\nname: huggingface-datasets\r\ndescription: Use this skill for Hugging Face Dataset Viewer API workflows that fetch subset\u002Fsplit metadata, paginate rows, search text, apply filters, download parquet URLs, and read size or statistics.\r\n---\r\n\r\n# Hugging Face Dataset Viewer\r\n\r\nUse this skill to execute read-only Dataset Viewer API calls for dataset exploration and extraction.\r\n\r\n## Core workflow\r\n\r\n1. Optionally validate dataset availability with `\u002Fis-valid`.\r\n2. Resolve `config` + `split` with `\u002Fsplits`.\r\n3. Preview with `\u002Ffirst-rows`.\r\n4. Paginate content with `\u002Frows` using `offset` and `length` (max 100).\r\n5. Use `\u002Fsearch` for text matching and `\u002Ffilter` for row predicates.\r\n6. Retrieve parquet links via `\u002Fparquet` and totals\u002Fmetadata via `\u002Fsize` and `\u002Fstatistics`.\r\n\r\n## Defaults\r\n\r\n- Base URL: `https:\u002F\u002Fdatasets-server.huggingface.co`\r\n- Default API method: `GET`\r\n- Query params should be URL-encoded.\r\n- `offset` is 0-based.\r\n- `length` max is usually `100` for row-like endpoints.\r\n- Gated\u002Fprivate datasets require `Authorization: Bearer \u003CHF_TOKEN>`.\r\n\r\n## Dataset Viewer\r\n\r\n- `Validate dataset`: `\u002Fis-valid?dataset=\u003Cnamespace\u002Frepo>`\r\n- `List subsets and splits`: `\u002Fsplits?dataset=\u003Cnamespace\u002Frepo>`\r\n- `Preview first rows`: `\u002Ffirst-rows?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>`\r\n- `Paginate rows`: `\u002Frows?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>&offset=\u003Cint>&length=\u003Cint>`\r\n- `Search text`: `\u002Fsearch?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>&query=\u003Ctext>&offset=\u003Cint>&length=\u003Cint>`\r\n- `Filter with predicates`: `\u002Ffilter?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>&where=\u003Cpredicate>&orderby=\u003Csort>&offset=\u003Cint>&length=\u003Cint>`\r\n- `List parquet shards`: `\u002Fparquet?dataset=\u003Cnamespace\u002Frepo>`\r\n- `Get size totals`: `\u002Fsize?dataset=\u003Cnamespace\u002Frepo>`\r\n- `Get column statistics`: `\u002Fstatistics?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>`\r\n- `Get Croissant metadata (if available)`: `\u002Fcroissant?dataset=\u003Cnamespace\u002Frepo>`\r\n\r\nPagination pattern:\r\n\r\n```bash\r\ncurl \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Frows?dataset=stanfordnlp\u002Fimdb&config=plain_text&split=train&offset=0&length=100\"\r\ncurl \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Frows?dataset=stanfordnlp\u002Fimdb&config=plain_text&split=train&offset=100&length=100\"\r\n```\r\n\r\nWhen pagination is partial, use response fields such as `num_rows_total`, `num_rows_per_page`, and `partial` to drive continuation logic.\r\n\r\nSearch\u002Ffilter notes:\r\n\r\n- `\u002Fsearch` matches string columns (full-text style behavior is internal to the API).\r\n- `\u002Ffilter` requires predicate syntax in `where` and optional sort in `orderby`.\r\n- Keep filtering and searches read-only and side-effect free.\r\n\r\n## Querying Datasets\r\n\r\nUse `npx parquetlens` with Hub parquet alias paths for SQL querying.\r\n\r\nParquet alias shape:\r\n\r\n```text\r\nhf:\u002F\u002Fdatasets\u002F\u003Cnamespace>\u002F\u003Crepo>@~parquet\u002F\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>.parquet\r\n```\r\n\r\nDerive `\u003Cconfig>`, `\u003Csplit>`, and `\u003Cshard>` from Dataset Viewer `\u002Fparquet`:\r\n\r\n```bash\r\ncurl -s \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Fparquet?dataset=cfahlgren1\u002Fhub-stats\" \\\r\n  | jq -r '.parquet_files[] | \"hf:\u002F\u002Fdatasets\u002F\\(.dataset)@~parquet\u002F\\(.config)\u002F\\(.split)\u002F\\(.filename)\"'\r\n```\r\n\r\nRun SQL query:\r\n\r\n```bash\r\nnpx -y -p parquetlens -p @parquetlens\u002Fsql parquetlens \\\r\n  \"hf:\u002F\u002Fdatasets\u002F\u003Cnamespace>\u002F\u003Crepo>@~parquet\u002F\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>.parquet\" \\\r\n  --sql \"SELECT * FROM data LIMIT 20\"\r\n```\r\n\r\n### SQL export\r\n\r\n- CSV: `--sql \"COPY (SELECT * FROM data LIMIT 1000) TO 'export.csv' (FORMAT CSV, HEADER, DELIMITER ',')\"`\r\n- JSON: `--sql \"COPY (SELECT * FROM data LIMIT 1000) TO 'export.json' (FORMAT JSON)\"`\r\n- Parquet: `--sql \"COPY (SELECT * FROM data LIMIT 1000) TO 'export.parquet' (FORMAT PARQUET)\"`\r\n\r\n## Creating and Uploading Datasets\r\n\r\nUse one of these flows depending on dependency constraints.\r\n\r\nZero local dependencies (Hub UI):\r\n\r\n- Create dataset repo in browser: `https:\u002F\u002Fhuggingface.co\u002Fnew-dataset`\r\n- Upload parquet files in the repo \"Files and versions\" page.\r\n- Verify shards appear in Dataset Viewer:\r\n\r\n```bash\r\ncurl -s \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Fparquet?dataset=\u003Cnamespace>\u002F\u003Crepo>\"\r\n```\r\n\r\nLow dependency CLI flow (`npx @huggingface\u002Fhub` \u002F `hfjs`):\r\n\r\n- Set auth token:\r\n\r\n```bash\r\nexport HF_TOKEN=\u003Cyour_hf_token>\r\n```\r\n\r\n- Upload parquet folder to a dataset repo (auto-creates repo if missing):\r\n\r\n```bash\r\nnpx -y @huggingface\u002Fhub upload datasets\u002F\u003Cnamespace>\u002F\u003Crepo> .\u002Flocal\u002Fparquet-folder data\r\n```\r\n\r\n- Upload as private repo on creation:\r\n\r\n```bash\r\nnpx -y @huggingface\u002Fhub upload datasets\u002F\u003Cnamespace>\u002F\u003Crepo> .\u002Flocal\u002Fparquet-folder data --private\r\n```\r\n\r\nAfter upload, call `\u002Fparquet` to discover `\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>` values for querying with `@~parquet`.\r\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,59,66,202,208,279,285,449,454,515,544,549,592,598,610,615,625,659,731,736,826,833,869,875,880,885,909,940,961,969,1005,1013,1099,1107,1187,1214],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"hugging-face-dataset-viewer",[50],{"type":51,"value":52},"text","Hugging Face Dataset Viewer",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Use this skill to execute read-only Dataset Viewer API calls for dataset exploration and extraction.",{"type":45,"tag":60,"props":61,"children":63},"h2",{"id":62},"core-workflow",[64],{"type":51,"value":65},"Core workflow",{"type":45,"tag":67,"props":68,"children":69},"ol",{},[70,85,113,125,154,175],{"type":45,"tag":71,"props":72,"children":73},"li",{},[74,76,83],{"type":51,"value":75},"Optionally validate dataset availability with ",{"type":45,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":51,"value":82},"\u002Fis-valid",{"type":51,"value":84},".",{"type":45,"tag":71,"props":86,"children":87},{},[88,90,96,98,104,106,112],{"type":51,"value":89},"Resolve ",{"type":45,"tag":77,"props":91,"children":93},{"className":92},[],[94],{"type":51,"value":95},"config",{"type":51,"value":97}," + ",{"type":45,"tag":77,"props":99,"children":101},{"className":100},[],[102],{"type":51,"value":103},"split",{"type":51,"value":105}," with ",{"type":45,"tag":77,"props":107,"children":109},{"className":108},[],[110],{"type":51,"value":111},"\u002Fsplits",{"type":51,"value":84},{"type":45,"tag":71,"props":114,"children":115},{},[116,118,124],{"type":51,"value":117},"Preview with ",{"type":45,"tag":77,"props":119,"children":121},{"className":120},[],[122],{"type":51,"value":123},"\u002Ffirst-rows",{"type":51,"value":84},{"type":45,"tag":71,"props":126,"children":127},{},[128,130,136,138,144,146,152],{"type":51,"value":129},"Paginate content with ",{"type":45,"tag":77,"props":131,"children":133},{"className":132},[],[134],{"type":51,"value":135},"\u002Frows",{"type":51,"value":137}," using ",{"type":45,"tag":77,"props":139,"children":141},{"className":140},[],[142],{"type":51,"value":143},"offset",{"type":51,"value":145}," and ",{"type":45,"tag":77,"props":147,"children":149},{"className":148},[],[150],{"type":51,"value":151},"length",{"type":51,"value":153}," (max 100).",{"type":45,"tag":71,"props":155,"children":156},{},[157,159,165,167,173],{"type":51,"value":158},"Use ",{"type":45,"tag":77,"props":160,"children":162},{"className":161},[],[163],{"type":51,"value":164},"\u002Fsearch",{"type":51,"value":166}," for text matching and ",{"type":45,"tag":77,"props":168,"children":170},{"className":169},[],[171],{"type":51,"value":172},"\u002Ffilter",{"type":51,"value":174}," for row predicates.",{"type":45,"tag":71,"props":176,"children":177},{},[178,180,186,188,194,195,201],{"type":51,"value":179},"Retrieve parquet links via ",{"type":45,"tag":77,"props":181,"children":183},{"className":182},[],[184],{"type":51,"value":185},"\u002Fparquet",{"type":51,"value":187}," and totals\u002Fmetadata via ",{"type":45,"tag":77,"props":189,"children":191},{"className":190},[],[192],{"type":51,"value":193},"\u002Fsize",{"type":51,"value":145},{"type":45,"tag":77,"props":196,"children":198},{"className":197},[],[199],{"type":51,"value":200},"\u002Fstatistics",{"type":51,"value":84},{"type":45,"tag":60,"props":203,"children":205},{"id":204},"defaults",[206],{"type":51,"value":207},"Defaults",{"type":45,"tag":209,"props":210,"children":211},"ul",{},[212,223,234,239,249,267],{"type":45,"tag":71,"props":213,"children":214},{},[215,217],{"type":51,"value":216},"Base URL: ",{"type":45,"tag":77,"props":218,"children":220},{"className":219},[],[221],{"type":51,"value":222},"https:\u002F\u002Fdatasets-server.huggingface.co",{"type":45,"tag":71,"props":224,"children":225},{},[226,228],{"type":51,"value":227},"Default API method: ",{"type":45,"tag":77,"props":229,"children":231},{"className":230},[],[232],{"type":51,"value":233},"GET",{"type":45,"tag":71,"props":235,"children":236},{},[237],{"type":51,"value":238},"Query params should be URL-encoded.",{"type":45,"tag":71,"props":240,"children":241},{},[242,247],{"type":45,"tag":77,"props":243,"children":245},{"className":244},[],[246],{"type":51,"value":143},{"type":51,"value":248}," is 0-based.",{"type":45,"tag":71,"props":250,"children":251},{},[252,257,259,265],{"type":45,"tag":77,"props":253,"children":255},{"className":254},[],[256],{"type":51,"value":151},{"type":51,"value":258}," max is usually ",{"type":45,"tag":77,"props":260,"children":262},{"className":261},[],[263],{"type":51,"value":264},"100",{"type":51,"value":266}," for row-like endpoints.",{"type":45,"tag":71,"props":268,"children":269},{},[270,272,278],{"type":51,"value":271},"Gated\u002Fprivate datasets require ",{"type":45,"tag":77,"props":273,"children":275},{"className":274},[],[276],{"type":51,"value":277},"Authorization: Bearer \u003CHF_TOKEN>",{"type":51,"value":84},{"type":45,"tag":60,"props":280,"children":282},{"id":281},"dataset-viewer",[283],{"type":51,"value":284},"Dataset Viewer",{"type":45,"tag":209,"props":286,"children":287},{},[288,305,321,337,353,369,385,401,417,433],{"type":45,"tag":71,"props":289,"children":290},{},[291,297,299],{"type":45,"tag":77,"props":292,"children":294},{"className":293},[],[295],{"type":51,"value":296},"Validate dataset",{"type":51,"value":298},": ",{"type":45,"tag":77,"props":300,"children":302},{"className":301},[],[303],{"type":51,"value":304},"\u002Fis-valid?dataset=\u003Cnamespace\u002Frepo>",{"type":45,"tag":71,"props":306,"children":307},{},[308,314,315],{"type":45,"tag":77,"props":309,"children":311},{"className":310},[],[312],{"type":51,"value":313},"List subsets and splits",{"type":51,"value":298},{"type":45,"tag":77,"props":316,"children":318},{"className":317},[],[319],{"type":51,"value":320},"\u002Fsplits?dataset=\u003Cnamespace\u002Frepo>",{"type":45,"tag":71,"props":322,"children":323},{},[324,330,331],{"type":45,"tag":77,"props":325,"children":327},{"className":326},[],[328],{"type":51,"value":329},"Preview first rows",{"type":51,"value":298},{"type":45,"tag":77,"props":332,"children":334},{"className":333},[],[335],{"type":51,"value":336},"\u002Ffirst-rows?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>",{"type":45,"tag":71,"props":338,"children":339},{},[340,346,347],{"type":45,"tag":77,"props":341,"children":343},{"className":342},[],[344],{"type":51,"value":345},"Paginate rows",{"type":51,"value":298},{"type":45,"tag":77,"props":348,"children":350},{"className":349},[],[351],{"type":51,"value":352},"\u002Frows?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>&offset=\u003Cint>&length=\u003Cint>",{"type":45,"tag":71,"props":354,"children":355},{},[356,362,363],{"type":45,"tag":77,"props":357,"children":359},{"className":358},[],[360],{"type":51,"value":361},"Search text",{"type":51,"value":298},{"type":45,"tag":77,"props":364,"children":366},{"className":365},[],[367],{"type":51,"value":368},"\u002Fsearch?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>&query=\u003Ctext>&offset=\u003Cint>&length=\u003Cint>",{"type":45,"tag":71,"props":370,"children":371},{},[372,378,379],{"type":45,"tag":77,"props":373,"children":375},{"className":374},[],[376],{"type":51,"value":377},"Filter with predicates",{"type":51,"value":298},{"type":45,"tag":77,"props":380,"children":382},{"className":381},[],[383],{"type":51,"value":384},"\u002Ffilter?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>&where=\u003Cpredicate>&orderby=\u003Csort>&offset=\u003Cint>&length=\u003Cint>",{"type":45,"tag":71,"props":386,"children":387},{},[388,394,395],{"type":45,"tag":77,"props":389,"children":391},{"className":390},[],[392],{"type":51,"value":393},"List parquet shards",{"type":51,"value":298},{"type":45,"tag":77,"props":396,"children":398},{"className":397},[],[399],{"type":51,"value":400},"\u002Fparquet?dataset=\u003Cnamespace\u002Frepo>",{"type":45,"tag":71,"props":402,"children":403},{},[404,410,411],{"type":45,"tag":77,"props":405,"children":407},{"className":406},[],[408],{"type":51,"value":409},"Get size totals",{"type":51,"value":298},{"type":45,"tag":77,"props":412,"children":414},{"className":413},[],[415],{"type":51,"value":416},"\u002Fsize?dataset=\u003Cnamespace\u002Frepo>",{"type":45,"tag":71,"props":418,"children":419},{},[420,426,427],{"type":45,"tag":77,"props":421,"children":423},{"className":422},[],[424],{"type":51,"value":425},"Get column statistics",{"type":51,"value":298},{"type":45,"tag":77,"props":428,"children":430},{"className":429},[],[431],{"type":51,"value":432},"\u002Fstatistics?dataset=\u003Cnamespace\u002Frepo>&config=\u003Cconfig>&split=\u003Csplit>",{"type":45,"tag":71,"props":434,"children":435},{},[436,442,443],{"type":45,"tag":77,"props":437,"children":439},{"className":438},[],[440],{"type":51,"value":441},"Get Croissant metadata (if available)",{"type":51,"value":298},{"type":45,"tag":77,"props":444,"children":446},{"className":445},[],[447],{"type":51,"value":448},"\u002Fcroissant?dataset=\u003Cnamespace\u002Frepo>",{"type":45,"tag":54,"props":450,"children":451},{},[452],{"type":51,"value":453},"Pagination pattern:",{"type":45,"tag":455,"props":456,"children":461},"pre",{"className":457,"code":458,"language":459,"meta":460,"style":460},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Frows?dataset=stanfordnlp\u002Fimdb&config=plain_text&split=train&offset=0&length=100\"\ncurl \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Frows?dataset=stanfordnlp\u002Fimdb&config=plain_text&split=train&offset=100&length=100\"\n","bash","",[462],{"type":45,"tag":77,"props":463,"children":464},{"__ignoreMap":460},[465,494],{"type":45,"tag":466,"props":467,"children":470},"span",{"class":468,"line":469},"line",1,[471,477,483,489],{"type":45,"tag":466,"props":472,"children":474},{"style":473},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[475],{"type":51,"value":476},"curl",{"type":45,"tag":466,"props":478,"children":480},{"style":479},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[481],{"type":51,"value":482}," \"",{"type":45,"tag":466,"props":484,"children":486},{"style":485},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[487],{"type":51,"value":488},"https:\u002F\u002Fdatasets-server.huggingface.co\u002Frows?dataset=stanfordnlp\u002Fimdb&config=plain_text&split=train&offset=0&length=100",{"type":45,"tag":466,"props":490,"children":491},{"style":479},[492],{"type":51,"value":493},"\"\n",{"type":45,"tag":466,"props":495,"children":497},{"class":468,"line":496},2,[498,502,506,511],{"type":45,"tag":466,"props":499,"children":500},{"style":473},[501],{"type":51,"value":476},{"type":45,"tag":466,"props":503,"children":504},{"style":479},[505],{"type":51,"value":482},{"type":45,"tag":466,"props":507,"children":508},{"style":485},[509],{"type":51,"value":510},"https:\u002F\u002Fdatasets-server.huggingface.co\u002Frows?dataset=stanfordnlp\u002Fimdb&config=plain_text&split=train&offset=100&length=100",{"type":45,"tag":466,"props":512,"children":513},{"style":479},[514],{"type":51,"value":493},{"type":45,"tag":54,"props":516,"children":517},{},[518,520,526,528,534,536,542],{"type":51,"value":519},"When pagination is partial, use response fields such as ",{"type":45,"tag":77,"props":521,"children":523},{"className":522},[],[524],{"type":51,"value":525},"num_rows_total",{"type":51,"value":527},", ",{"type":45,"tag":77,"props":529,"children":531},{"className":530},[],[532],{"type":51,"value":533},"num_rows_per_page",{"type":51,"value":535},", and ",{"type":45,"tag":77,"props":537,"children":539},{"className":538},[],[540],{"type":51,"value":541},"partial",{"type":51,"value":543}," to drive continuation logic.",{"type":45,"tag":54,"props":545,"children":546},{},[547],{"type":51,"value":548},"Search\u002Ffilter notes:",{"type":45,"tag":209,"props":550,"children":551},{},[552,562,587],{"type":45,"tag":71,"props":553,"children":554},{},[555,560],{"type":45,"tag":77,"props":556,"children":558},{"className":557},[],[559],{"type":51,"value":164},{"type":51,"value":561}," matches string columns (full-text style behavior is internal to the API).",{"type":45,"tag":71,"props":563,"children":564},{},[565,570,572,578,580,586],{"type":45,"tag":77,"props":566,"children":568},{"className":567},[],[569],{"type":51,"value":172},{"type":51,"value":571}," requires predicate syntax in ",{"type":45,"tag":77,"props":573,"children":575},{"className":574},[],[576],{"type":51,"value":577},"where",{"type":51,"value":579}," and optional sort in ",{"type":45,"tag":77,"props":581,"children":583},{"className":582},[],[584],{"type":51,"value":585},"orderby",{"type":51,"value":84},{"type":45,"tag":71,"props":588,"children":589},{},[590],{"type":51,"value":591},"Keep filtering and searches read-only and side-effect free.",{"type":45,"tag":60,"props":593,"children":595},{"id":594},"querying-datasets",[596],{"type":51,"value":597},"Querying Datasets",{"type":45,"tag":54,"props":599,"children":600},{},[601,602,608],{"type":51,"value":158},{"type":45,"tag":77,"props":603,"children":605},{"className":604},[],[606],{"type":51,"value":607},"npx parquetlens",{"type":51,"value":609}," with Hub parquet alias paths for SQL querying.",{"type":45,"tag":54,"props":611,"children":612},{},[613],{"type":51,"value":614},"Parquet alias shape:",{"type":45,"tag":455,"props":616,"children":620},{"className":617,"code":619,"language":51,"meta":460},[618],"language-text","hf:\u002F\u002Fdatasets\u002F\u003Cnamespace>\u002F\u003Crepo>@~parquet\u002F\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>.parquet\n",[621],{"type":45,"tag":77,"props":622,"children":623},{"__ignoreMap":460},[624],{"type":51,"value":619},{"type":45,"tag":54,"props":626,"children":627},{},[628,630,636,637,643,644,650,652,657],{"type":51,"value":629},"Derive ",{"type":45,"tag":77,"props":631,"children":633},{"className":632},[],[634],{"type":51,"value":635},"\u003Cconfig>",{"type":51,"value":527},{"type":45,"tag":77,"props":638,"children":640},{"className":639},[],[641],{"type":51,"value":642},"\u003Csplit>",{"type":51,"value":535},{"type":45,"tag":77,"props":645,"children":647},{"className":646},[],[648],{"type":51,"value":649},"\u003Cshard>",{"type":51,"value":651}," from Dataset Viewer ",{"type":45,"tag":77,"props":653,"children":655},{"className":654},[],[656],{"type":51,"value":185},{"type":51,"value":658},":",{"type":45,"tag":455,"props":660,"children":662},{"className":457,"code":661,"language":459,"meta":460,"style":460},"curl -s \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Fparquet?dataset=cfahlgren1\u002Fhub-stats\" \\\n  | jq -r '.parquet_files[] | \"hf:\u002F\u002Fdatasets\u002F\\(.dataset)@~parquet\u002F\\(.config)\u002F\\(.split)\u002F\\(.filename)\"'\n",[663],{"type":45,"tag":77,"props":664,"children":665},{"__ignoreMap":460},[666,698],{"type":45,"tag":466,"props":667,"children":668},{"class":468,"line":469},[669,673,678,682,687,692],{"type":45,"tag":466,"props":670,"children":671},{"style":473},[672],{"type":51,"value":476},{"type":45,"tag":466,"props":674,"children":675},{"style":485},[676],{"type":51,"value":677}," -s",{"type":45,"tag":466,"props":679,"children":680},{"style":479},[681],{"type":51,"value":482},{"type":45,"tag":466,"props":683,"children":684},{"style":485},[685],{"type":51,"value":686},"https:\u002F\u002Fdatasets-server.huggingface.co\u002Fparquet?dataset=cfahlgren1\u002Fhub-stats",{"type":45,"tag":466,"props":688,"children":689},{"style":479},[690],{"type":51,"value":691},"\"",{"type":45,"tag":466,"props":693,"children":695},{"style":694},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[696],{"type":51,"value":697}," \\\n",{"type":45,"tag":466,"props":699,"children":700},{"class":468,"line":496},[701,706,711,716,721,726],{"type":45,"tag":466,"props":702,"children":703},{"style":479},[704],{"type":51,"value":705},"  |",{"type":45,"tag":466,"props":707,"children":708},{"style":473},[709],{"type":51,"value":710}," jq",{"type":45,"tag":466,"props":712,"children":713},{"style":485},[714],{"type":51,"value":715}," -r",{"type":45,"tag":466,"props":717,"children":718},{"style":479},[719],{"type":51,"value":720}," '",{"type":45,"tag":466,"props":722,"children":723},{"style":485},[724],{"type":51,"value":725},".parquet_files[] | \"hf:\u002F\u002Fdatasets\u002F\\(.dataset)@~parquet\u002F\\(.config)\u002F\\(.split)\u002F\\(.filename)\"",{"type":45,"tag":466,"props":727,"children":728},{"style":479},[729],{"type":51,"value":730},"'\n",{"type":45,"tag":54,"props":732,"children":733},{},[734],{"type":51,"value":735},"Run SQL query:",{"type":45,"tag":455,"props":737,"children":739},{"className":457,"code":738,"language":459,"meta":460,"style":460},"npx -y -p parquetlens -p @parquetlens\u002Fsql parquetlens \\\n  \"hf:\u002F\u002Fdatasets\u002F\u003Cnamespace>\u002F\u003Crepo>@~parquet\u002F\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>.parquet\" \\\n  --sql \"SELECT * FROM data LIMIT 20\"\n",[740],{"type":45,"tag":77,"props":741,"children":742},{"__ignoreMap":460},[743,783,804],{"type":45,"tag":466,"props":744,"children":745},{"class":468,"line":469},[746,751,756,761,766,770,775,779],{"type":45,"tag":466,"props":747,"children":748},{"style":473},[749],{"type":51,"value":750},"npx",{"type":45,"tag":466,"props":752,"children":753},{"style":485},[754],{"type":51,"value":755}," -y",{"type":45,"tag":466,"props":757,"children":758},{"style":485},[759],{"type":51,"value":760}," -p",{"type":45,"tag":466,"props":762,"children":763},{"style":485},[764],{"type":51,"value":765}," parquetlens",{"type":45,"tag":466,"props":767,"children":768},{"style":485},[769],{"type":51,"value":760},{"type":45,"tag":466,"props":771,"children":772},{"style":485},[773],{"type":51,"value":774}," @parquetlens\u002Fsql",{"type":45,"tag":466,"props":776,"children":777},{"style":485},[778],{"type":51,"value":765},{"type":45,"tag":466,"props":780,"children":781},{"style":694},[782],{"type":51,"value":697},{"type":45,"tag":466,"props":784,"children":785},{"class":468,"line":496},[786,791,796,800],{"type":45,"tag":466,"props":787,"children":788},{"style":479},[789],{"type":51,"value":790},"  \"",{"type":45,"tag":466,"props":792,"children":793},{"style":485},[794],{"type":51,"value":795},"hf:\u002F\u002Fdatasets\u002F\u003Cnamespace>\u002F\u003Crepo>@~parquet\u002F\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>.parquet",{"type":45,"tag":466,"props":797,"children":798},{"style":479},[799],{"type":51,"value":691},{"type":45,"tag":466,"props":801,"children":802},{"style":694},[803],{"type":51,"value":697},{"type":45,"tag":466,"props":805,"children":807},{"class":468,"line":806},3,[808,813,817,822],{"type":45,"tag":466,"props":809,"children":810},{"style":485},[811],{"type":51,"value":812},"  --sql",{"type":45,"tag":466,"props":814,"children":815},{"style":479},[816],{"type":51,"value":482},{"type":45,"tag":466,"props":818,"children":819},{"style":485},[820],{"type":51,"value":821},"SELECT * FROM data LIMIT 20",{"type":45,"tag":466,"props":823,"children":824},{"style":479},[825],{"type":51,"value":493},{"type":45,"tag":827,"props":828,"children":830},"h3",{"id":829},"sql-export",[831],{"type":51,"value":832},"SQL export",{"type":45,"tag":209,"props":834,"children":835},{},[836,847,858],{"type":45,"tag":71,"props":837,"children":838},{},[839,841],{"type":51,"value":840},"CSV: ",{"type":45,"tag":77,"props":842,"children":844},{"className":843},[],[845],{"type":51,"value":846},"--sql \"COPY (SELECT * FROM data LIMIT 1000) TO 'export.csv' (FORMAT CSV, HEADER, DELIMITER ',')\"",{"type":45,"tag":71,"props":848,"children":849},{},[850,852],{"type":51,"value":851},"JSON: ",{"type":45,"tag":77,"props":853,"children":855},{"className":854},[],[856],{"type":51,"value":857},"--sql \"COPY (SELECT * FROM data LIMIT 1000) TO 'export.json' (FORMAT JSON)\"",{"type":45,"tag":71,"props":859,"children":860},{},[861,863],{"type":51,"value":862},"Parquet: ",{"type":45,"tag":77,"props":864,"children":866},{"className":865},[],[867],{"type":51,"value":868},"--sql \"COPY (SELECT * FROM data LIMIT 1000) TO 'export.parquet' (FORMAT PARQUET)\"",{"type":45,"tag":60,"props":870,"children":872},{"id":871},"creating-and-uploading-datasets",[873],{"type":51,"value":874},"Creating and Uploading Datasets",{"type":45,"tag":54,"props":876,"children":877},{},[878],{"type":51,"value":879},"Use one of these flows depending on dependency constraints.",{"type":45,"tag":54,"props":881,"children":882},{},[883],{"type":51,"value":884},"Zero local dependencies (Hub UI):",{"type":45,"tag":209,"props":886,"children":887},{},[888,899,904],{"type":45,"tag":71,"props":889,"children":890},{},[891,893],{"type":51,"value":892},"Create dataset repo in browser: ",{"type":45,"tag":77,"props":894,"children":896},{"className":895},[],[897],{"type":51,"value":898},"https:\u002F\u002Fhuggingface.co\u002Fnew-dataset",{"type":45,"tag":71,"props":900,"children":901},{},[902],{"type":51,"value":903},"Upload parquet files in the repo \"Files and versions\" page.",{"type":45,"tag":71,"props":905,"children":906},{},[907],{"type":51,"value":908},"Verify shards appear in Dataset Viewer:",{"type":45,"tag":455,"props":910,"children":912},{"className":457,"code":911,"language":459,"meta":460,"style":460},"curl -s \"https:\u002F\u002Fdatasets-server.huggingface.co\u002Fparquet?dataset=\u003Cnamespace>\u002F\u003Crepo>\"\n",[913],{"type":45,"tag":77,"props":914,"children":915},{"__ignoreMap":460},[916],{"type":45,"tag":466,"props":917,"children":918},{"class":468,"line":469},[919,923,927,931,936],{"type":45,"tag":466,"props":920,"children":921},{"style":473},[922],{"type":51,"value":476},{"type":45,"tag":466,"props":924,"children":925},{"style":485},[926],{"type":51,"value":677},{"type":45,"tag":466,"props":928,"children":929},{"style":479},[930],{"type":51,"value":482},{"type":45,"tag":466,"props":932,"children":933},{"style":485},[934],{"type":51,"value":935},"https:\u002F\u002Fdatasets-server.huggingface.co\u002Fparquet?dataset=\u003Cnamespace>\u002F\u003Crepo>",{"type":45,"tag":466,"props":937,"children":938},{"style":479},[939],{"type":51,"value":493},{"type":45,"tag":54,"props":941,"children":942},{},[943,945,951,953,959],{"type":51,"value":944},"Low dependency CLI flow (",{"type":45,"tag":77,"props":946,"children":948},{"className":947},[],[949],{"type":51,"value":950},"npx @huggingface\u002Fhub",{"type":51,"value":952}," \u002F ",{"type":45,"tag":77,"props":954,"children":956},{"className":955},[],[957],{"type":51,"value":958},"hfjs",{"type":51,"value":960},"):",{"type":45,"tag":209,"props":962,"children":963},{},[964],{"type":45,"tag":71,"props":965,"children":966},{},[967],{"type":51,"value":968},"Set auth token:",{"type":45,"tag":455,"props":970,"children":972},{"className":457,"code":971,"language":459,"meta":460,"style":460},"export HF_TOKEN=\u003Cyour_hf_token>\n",[973],{"type":45,"tag":77,"props":974,"children":975},{"__ignoreMap":460},[976],{"type":45,"tag":466,"props":977,"children":978},{"class":468,"line":469},[979,985,990,995,1000],{"type":45,"tag":466,"props":980,"children":982},{"style":981},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[983],{"type":51,"value":984},"export",{"type":45,"tag":466,"props":986,"children":987},{"style":694},[988],{"type":51,"value":989}," HF_TOKEN",{"type":45,"tag":466,"props":991,"children":992},{"style":479},[993],{"type":51,"value":994},"=\u003C",{"type":45,"tag":466,"props":996,"children":997},{"style":694},[998],{"type":51,"value":999},"your_hf_token",{"type":45,"tag":466,"props":1001,"children":1002},{"style":479},[1003],{"type":51,"value":1004},">\n",{"type":45,"tag":209,"props":1006,"children":1007},{},[1008],{"type":45,"tag":71,"props":1009,"children":1010},{},[1011],{"type":51,"value":1012},"Upload parquet folder to a dataset repo (auto-creates repo if missing):",{"type":45,"tag":455,"props":1014,"children":1016},{"className":457,"code":1015,"language":459,"meta":460,"style":460},"npx -y @huggingface\u002Fhub upload datasets\u002F\u003Cnamespace>\u002F\u003Crepo> .\u002Flocal\u002Fparquet-folder data\n",[1017],{"type":45,"tag":77,"props":1018,"children":1019},{"__ignoreMap":460},[1020],{"type":45,"tag":466,"props":1021,"children":1022},{"class":468,"line":469},[1023,1027,1031,1036,1041,1046,1051,1056,1061,1066,1071,1075,1080,1085,1089,1094],{"type":45,"tag":466,"props":1024,"children":1025},{"style":473},[1026],{"type":51,"value":750},{"type":45,"tag":466,"props":1028,"children":1029},{"style":485},[1030],{"type":51,"value":755},{"type":45,"tag":466,"props":1032,"children":1033},{"style":485},[1034],{"type":51,"value":1035}," @huggingface\u002Fhub",{"type":45,"tag":466,"props":1037,"children":1038},{"style":485},[1039],{"type":51,"value":1040}," upload",{"type":45,"tag":466,"props":1042,"children":1043},{"style":485},[1044],{"type":51,"value":1045}," datasets\u002F",{"type":45,"tag":466,"props":1047,"children":1048},{"style":479},[1049],{"type":51,"value":1050},"\u003C",{"type":45,"tag":466,"props":1052,"children":1053},{"style":485},[1054],{"type":51,"value":1055},"namespac",{"type":45,"tag":466,"props":1057,"children":1058},{"style":694},[1059],{"type":51,"value":1060},"e",{"type":45,"tag":466,"props":1062,"children":1063},{"style":479},[1064],{"type":51,"value":1065},">",{"type":45,"tag":466,"props":1067,"children":1068},{"style":485},[1069],{"type":51,"value":1070},"\u002F",{"type":45,"tag":466,"props":1072,"children":1073},{"style":479},[1074],{"type":51,"value":1050},{"type":45,"tag":466,"props":1076,"children":1077},{"style":485},[1078],{"type":51,"value":1079},"rep",{"type":45,"tag":466,"props":1081,"children":1082},{"style":694},[1083],{"type":51,"value":1084},"o",{"type":45,"tag":466,"props":1086,"children":1087},{"style":479},[1088],{"type":51,"value":1065},{"type":45,"tag":466,"props":1090,"children":1091},{"style":485},[1092],{"type":51,"value":1093}," .\u002Flocal\u002Fparquet-folder",{"type":45,"tag":466,"props":1095,"children":1096},{"style":485},[1097],{"type":51,"value":1098}," data\n",{"type":45,"tag":209,"props":1100,"children":1101},{},[1102],{"type":45,"tag":71,"props":1103,"children":1104},{},[1105],{"type":51,"value":1106},"Upload as private repo on creation:",{"type":45,"tag":455,"props":1108,"children":1110},{"className":457,"code":1109,"language":459,"meta":460,"style":460},"npx -y @huggingface\u002Fhub upload datasets\u002F\u003Cnamespace>\u002F\u003Crepo> .\u002Flocal\u002Fparquet-folder data --private\n",[1111],{"type":45,"tag":77,"props":1112,"children":1113},{"__ignoreMap":460},[1114],{"type":45,"tag":466,"props":1115,"children":1116},{"class":468,"line":469},[1117,1121,1125,1129,1133,1137,1141,1145,1149,1153,1157,1161,1165,1169,1173,1177,1182],{"type":45,"tag":466,"props":1118,"children":1119},{"style":473},[1120],{"type":51,"value":750},{"type":45,"tag":466,"props":1122,"children":1123},{"style":485},[1124],{"type":51,"value":755},{"type":45,"tag":466,"props":1126,"children":1127},{"style":485},[1128],{"type":51,"value":1035},{"type":45,"tag":466,"props":1130,"children":1131},{"style":485},[1132],{"type":51,"value":1040},{"type":45,"tag":466,"props":1134,"children":1135},{"style":485},[1136],{"type":51,"value":1045},{"type":45,"tag":466,"props":1138,"children":1139},{"style":479},[1140],{"type":51,"value":1050},{"type":45,"tag":466,"props":1142,"children":1143},{"style":485},[1144],{"type":51,"value":1055},{"type":45,"tag":466,"props":1146,"children":1147},{"style":694},[1148],{"type":51,"value":1060},{"type":45,"tag":466,"props":1150,"children":1151},{"style":479},[1152],{"type":51,"value":1065},{"type":45,"tag":466,"props":1154,"children":1155},{"style":485},[1156],{"type":51,"value":1070},{"type":45,"tag":466,"props":1158,"children":1159},{"style":479},[1160],{"type":51,"value":1050},{"type":45,"tag":466,"props":1162,"children":1163},{"style":485},[1164],{"type":51,"value":1079},{"type":45,"tag":466,"props":1166,"children":1167},{"style":694},[1168],{"type":51,"value":1084},{"type":45,"tag":466,"props":1170,"children":1171},{"style":479},[1172],{"type":51,"value":1065},{"type":45,"tag":466,"props":1174,"children":1175},{"style":485},[1176],{"type":51,"value":1093},{"type":45,"tag":466,"props":1178,"children":1179},{"style":485},[1180],{"type":51,"value":1181}," data",{"type":45,"tag":466,"props":1183,"children":1184},{"style":485},[1185],{"type":51,"value":1186}," --private\n",{"type":45,"tag":54,"props":1188,"children":1189},{},[1190,1192,1197,1199,1205,1207,1213],{"type":51,"value":1191},"After upload, call ",{"type":45,"tag":77,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":51,"value":185},{"type":51,"value":1198}," to discover ",{"type":45,"tag":77,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":51,"value":1204},"\u003Cconfig>\u002F\u003Csplit>\u002F\u003Cshard>",{"type":51,"value":1206}," values for querying with ",{"type":45,"tag":77,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":51,"value":1212},"@~parquet",{"type":51,"value":84},{"type":45,"tag":1215,"props":1216,"children":1217},"style",{},[1218],{"type":51,"value":1219},"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":1221,"total":1341},[1222,1241,1257,1269,1289,1311,1329],{"slug":1223,"name":1223,"fn":1224,"description":1225,"org":1226,"tags":1227,"stars":28,"repoUrl":29,"updatedAt":1240},"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},[1228,1231,1234,1237],{"name":1229,"slug":1230,"type":15},"Accessibility","accessibility",{"name":1232,"slug":1233,"type":15},"Charts","charts",{"name":1235,"slug":1236,"type":15},"Data Visualization","data-visualization",{"name":1238,"slug":1239,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":1242,"name":1242,"fn":1243,"description":1244,"org":1245,"tags":1246,"stars":28,"repoUrl":29,"updatedAt":1256},"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},[1247,1250,1253],{"name":1248,"slug":1249,"type":15},"Agents","agents",{"name":1251,"slug":1252,"type":15},"Browser Automation","browser-automation",{"name":1254,"slug":1255,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1258,"name":1258,"fn":1259,"description":1260,"org":1261,"tags":1262,"stars":28,"repoUrl":29,"updatedAt":1268},"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},[1263,1264,1267],{"name":1251,"slug":1252,"type":15},{"name":1265,"slug":1266,"type":15},"Local Development","local-development",{"name":1254,"slug":1255,"type":15},"2026-04-06T18:41:17.526867",{"slug":1270,"name":1270,"fn":1271,"description":1272,"org":1273,"tags":1274,"stars":28,"repoUrl":29,"updatedAt":1288},"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},[1275,1276,1279,1282,1285],{"name":1248,"slug":1249,"type":15},{"name":1277,"slug":1278,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1280,"slug":1281,"type":15},"SDK","sdk",{"name":1283,"slug":1284,"type":15},"Serverless","serverless",{"name":1286,"slug":1287,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1290,"name":1290,"fn":1291,"description":1292,"org":1293,"tags":1294,"stars":28,"repoUrl":29,"updatedAt":1310},"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},[1295,1298,1301,1304,1307],{"name":1296,"slug":1297,"type":15},"Frontend","frontend",{"name":1299,"slug":1300,"type":15},"React","react",{"name":1302,"slug":1303,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1305,"slug":1306,"type":15},"UI Components","ui-components",{"name":1308,"slug":1309,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1312,"name":1312,"fn":1313,"description":1314,"org":1315,"tags":1316,"stars":28,"repoUrl":29,"updatedAt":1328},"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},[1317,1320,1323,1324,1327],{"name":1318,"slug":1319,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1321,"slug":1322,"type":15},"Cost Optimization","cost-optimization",{"name":23,"slug":24,"type":15},{"name":1325,"slug":1326,"type":15},"Performance","performance",{"name":1308,"slug":1309,"type":15},"2026-04-06T18:40:44.377464",{"slug":1330,"name":1330,"fn":1331,"description":1332,"org":1333,"tags":1334,"stars":28,"repoUrl":29,"updatedAt":1340},"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},[1335,1336,1339],{"name":1321,"slug":1322,"type":15},{"name":1337,"slug":1338,"type":15},"Database","database",{"name":23,"slug":24,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1343,"total":1540},[1344,1365,1388,1405,1421,1438,1457,1469,1483,1497,1509,1524],{"slug":1345,"name":1345,"fn":1346,"description":1347,"org":1348,"tags":1349,"stars":1362,"repoUrl":1363,"updatedAt":1364},"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},[1350,1353,1356,1359],{"name":1351,"slug":1352,"type":15},"Documents","documents",{"name":1354,"slug":1355,"type":15},"Healthcare","healthcare",{"name":1357,"slug":1358,"type":15},"Insurance","insurance",{"name":1360,"slug":1361,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1369,"tags":1370,"stars":1385,"repoUrl":1386,"updatedAt":1387},"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},[1371,1374,1376,1379,1382],{"name":1372,"slug":1373,"type":15},".NET","dotnet",{"name":1375,"slug":1366,"type":15},"ASP.NET Core",{"name":1377,"slug":1378,"type":15},"Blazor","blazor",{"name":1380,"slug":1381,"type":15},"C#","csharp",{"name":1383,"slug":1384,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1389,"name":1389,"fn":1390,"description":1391,"org":1392,"tags":1393,"stars":1385,"repoUrl":1386,"updatedAt":1404},"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},[1394,1397,1400,1403],{"name":1395,"slug":1396,"type":15},"Apps SDK","apps-sdk",{"name":1398,"slug":1399,"type":15},"ChatGPT","chatgpt",{"name":1401,"slug":1402,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1406,"name":1406,"fn":1407,"description":1408,"org":1409,"tags":1410,"stars":1385,"repoUrl":1386,"updatedAt":1420},"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},[1411,1414,1417],{"name":1412,"slug":1413,"type":15},"API Development","api-development",{"name":1415,"slug":1416,"type":15},"CLI","cli",{"name":1418,"slug":1419,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1422,"name":1422,"fn":1423,"description":1424,"org":1425,"tags":1426,"stars":1385,"repoUrl":1386,"updatedAt":1437},"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},[1427,1430,1433,1434],{"name":1428,"slug":1429,"type":15},"Cloudflare","cloudflare",{"name":1431,"slug":1432,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1277,"slug":1278,"type":15},{"name":1435,"slug":1436,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1439,"name":1439,"fn":1440,"description":1441,"org":1442,"tags":1443,"stars":1385,"repoUrl":1386,"updatedAt":1456},"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},[1444,1447,1450,1453],{"name":1445,"slug":1446,"type":15},"Productivity","productivity",{"name":1448,"slug":1449,"type":15},"Project Management","project-management",{"name":1451,"slug":1452,"type":15},"Strategy","strategy",{"name":1454,"slug":1455,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1458,"name":1458,"fn":1459,"description":1460,"org":1461,"tags":1462,"stars":1385,"repoUrl":1386,"updatedAt":1468},"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},[1463,1464,1466,1467],{"name":1238,"slug":1239,"type":15},{"name":1465,"slug":1458,"type":15},"Figma",{"name":1296,"slug":1297,"type":15},{"name":1401,"slug":1402,"type":15},"2026-04-12T05:06:47.939943",{"slug":1470,"name":1470,"fn":1471,"description":1472,"org":1473,"tags":1474,"stars":1385,"repoUrl":1386,"updatedAt":1482},"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},[1475,1476,1479,1480,1481],{"name":1238,"slug":1239,"type":15},{"name":1477,"slug":1478,"type":15},"Design System","design-system",{"name":1465,"slug":1458,"type":15},{"name":1296,"slug":1297,"type":15},{"name":1305,"slug":1306,"type":15},"2026-05-10T05:59:52.971881",{"slug":1484,"name":1484,"fn":1485,"description":1486,"org":1487,"tags":1488,"stars":1385,"repoUrl":1386,"updatedAt":1496},"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},[1489,1490,1491,1494,1495],{"name":1238,"slug":1239,"type":15},{"name":1477,"slug":1478,"type":15},{"name":1492,"slug":1493,"type":15},"Documentation","documentation",{"name":1465,"slug":1458,"type":15},{"name":1296,"slug":1297,"type":15},"2026-05-16T06:07:47.821474",{"slug":1498,"name":1498,"fn":1499,"description":1500,"org":1501,"tags":1502,"stars":1385,"repoUrl":1386,"updatedAt":1508},"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},[1503,1504,1505,1506,1507],{"name":1238,"slug":1239,"type":15},{"name":1465,"slug":1458,"type":15},{"name":1296,"slug":1297,"type":15},{"name":1305,"slug":1306,"type":15},{"name":1383,"slug":1384,"type":15},"2026-05-16T06:07:40.583615",{"slug":1510,"name":1510,"fn":1511,"description":1512,"org":1513,"tags":1514,"stars":1385,"repoUrl":1386,"updatedAt":1523},"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},[1515,1518,1519,1522],{"name":1516,"slug":1517,"type":15},"Animation","animation",{"name":1418,"slug":1419,"type":15},{"name":1520,"slug":1521,"type":15},"Creative","creative",{"name":1238,"slug":1239,"type":15},"2026-05-02T05:31:48.48485",{"slug":1525,"name":1525,"fn":1526,"description":1527,"org":1528,"tags":1529,"stars":1385,"repoUrl":1386,"updatedAt":1539},"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},[1530,1531,1532,1535,1538],{"name":1520,"slug":1521,"type":15},{"name":1238,"slug":1239,"type":15},{"name":1533,"slug":1534,"type":15},"Image Generation","image-generation",{"name":1536,"slug":1537,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]