[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-wix-design-system":3,"mdc-1rahqv-key":36,"related-repo-openai-wix-design-system":1584,"related-org-openai-wix-design-system":1703},{"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},"wix-design-system","build UI with Wix Design System","Wix Design System component reference. Use when building UI with @wix\u002Fdesign-system, choosing components, checking props and examples, or writing tests with component testkits. Triggers on \"what component\", \"how do I make\", \"WDS\", \"show me props\", \"testkit\", \"driver\", or component names like Button, Card, Modal, Box, Text.",{"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},"Wix","wix","tag",{"name":17,"slug":18,"type":15},"Design System","design-system",{"name":20,"slug":21,"type":15},"UI Components","ui-components",{"name":23,"slug":24,"type":15},"Frontend","frontend",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fwix\u002Fskills\u002Fwix-design-system","---\nname: wix-design-system\ndescription: Wix Design System component reference. Use when building UI with @wix\u002Fdesign-system, choosing components, checking props and examples, or writing tests with component testkits. Triggers on \"what component\", \"how do I make\", \"WDS\", \"show me props\", \"testkit\", \"driver\", or component names like Button, Card, Modal, Box, Text.\n---\n\n# WDS Documentation Navigator\n\n**Prerequisite:** `@wix\u002Fdesign-system` must be installed (`npm i @wix\u002Fdesign-system` or `yarn add @wix\u002Fdesign-system`).\n\n## Helper Script\n\nThis skill bundles `scripts\u002Fwds.cjs` — a Node.js helper that auto-discovers `@wix\u002Fdesign-system` in node_modules (handles monorepos and workspaces) and provides focused lookups. Run it from the user's project directory using the absolute path to the bundled script:\n\n```bash\n# WDS is the absolute path to this skill's scripts\u002Fwds.cjs\nWDS=\"\u003Cthis-skill-dir>\u002Fscripts\u002Fwds.cjs\"\n\nnode $WDS search \u003Ckeyword>                 # Find components by keyword\nnode $WDS component \u003CName>                 # Get props + example list (one component)\nnode $WDS components \u003CName1> \u003CName2>...    # Same as `component`, but for several at once\nnode $WDS example \u003CName> \"\u003CExampleName>\"   # Get a specific example\nnode $WDS testkit \u003CName> [method]          # Get testkit imports + driver API\nnode $WDS icons \u003Cquery>                    # Search for icons\n```\n\n## Workflow\n\n### Step 1: Find the right component\n\n```bash\nnode $WDS search table\nnode $WDS search form input validation\nnode $WDS search modal dialog popup\n```\n\nMultiple keywords are OR-matched. Returns component names, descriptions, and usage guidance.\n\n### Step 2: Get props and available examples\n\n```bash\nnode $WDS component Button\n```\n\nReturns the full props list (types and descriptions) plus a list of all available examples. For large prop files (>200 lines), returns a summary with prop names and types.\n\nIf you already know which several components you'll need (e.g. after Step 1 returned a shortlist), prefer the batch form to avoid one round-trip per component:\n\n```bash\nnode $WDS components Button Card Table Input Text Thumbnail\n```\n\nOutput is each component's props block separated by `---`. Missing components are logged to stderr and skipped; the command only fails if every requested component is missing.\n\n### Step 3: Get a specific example\n\n```bash\nnode $WDS example Button \"Loading state\"\n```\n\nReturns the example description and JSX code. Matching is case-insensitive and supports substrings (e.g., \"loading\" matches \"Loading state\").\n\n### Step 4: Write tests with the component testkit\n\n```bash\nnode $WDS testkit Button             # Imports + full driver API for Button\nnode $WDS testkit Button click       # Just the click() method details\n```\n\nReturns import snippets for unidriver, vanilla, puppeteer, and playwright flavors plus the driver method API (name, args, return type, description). Method name matching is case-insensitive substring.\n\n### Step 5: Find icons\n\n```bash\nnode $WDS icons Add Edit Delete\n```\n\nIcons are from `@wix\u002Fwix-ui-icons-common`. Each icon has a `Small` variant (e.g., `Add` + `AddSmall`).\n\n## Fallback: Direct File Access\n\nIf the script is unavailable, docs are at `node_modules\u002F@wix\u002Fdesign-system\u002Fdist\u002Fdocs\u002F`:\n\n- `components.md` — component catalog (~978 lines, grep only)\n- `components\u002F{Name}Props.md` — props per component\n- `components\u002F{Name}Examples.md` — examples per component (grep `^### ` for section list)\n- `components\u002F{Name}Testkit.md` — testkit imports + driver API per component (grep `^### ` for method list)\n- `testkits.md` — testkit catalog (list of components with generated testkit docs)\n- `icons.md` — icon catalog (~818 lines, grep only)\n\nDon't read these files fully. Grep for keywords, then read specific sections with offset\u002Flimit. See [references\u002Ffile-structure.md](references\u002Ffile-structure.md) for the exact docs file layout and section shapes.\n\n---\n\n## Quick Component Mapping (Design to WDS)\n\n| Design Element | WDS Component | Notes |\n| --- | --- | --- |\n| Rectangle\u002Fcontainer | `\u003CBox>` | Layout wrapper |\n| Text button | `\u003CTextButton>` | Secondary actions |\n| Input with label | `\u003CFormField>` + `\u003CInput>` | Wrap inputs |\n| Toggle | `\u003CToggleSwitch>` | On\u002Foff settings |\n| Modal | `\u003CModal>` + `\u003CCustomModalLayout>` | Use together |\n| Grid | `\u003CLayout>` + `\u003CCell>` | Responsive |\n\n## Spacing (px to SP conversion)\n\nWhen designer specifies pixels, convert to the nearest SP token:\n\n| Token | Classic | Studio |\n| --- | --- | --- |\n| `SP1` | 6px | 4px |\n| `SP2` | 12px | 8px |\n| `SP3` | 18px | 12px |\n| `SP4` | 24px | 16px |\n| `SP5` | 30px | 20px |\n| `SP6` | 36px | 24px |\n\n```tsx\n\u003CBox gap=\"SP2\" padding=\"SP3\">\n```\n\nOnly use SP tokens for `gap`, `padding`, `margin` — not for width\u002Fheight.\n\n## Imports\n\n```tsx\nimport { Button, Card, Image } from \"@wix\u002Fdesign-system\";\nimport { Add, Edit, Delete } from \"@wix\u002Fwix-ui-icons-common\";\n```\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,87,94,114,453,459,466,553,558,564,591,596,601,653,666,672,711,716,722,782,787,793,830,866,872,885,971,984,988,994,1180,1186,1191,1348,1418,1446,1452,1578],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"wds-documentation-navigator",[47],{"type":48,"value":49},"text","WDS Documentation Navigator",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,60,62,69,71,77,79,85],{"type":42,"tag":55,"props":56,"children":57},"strong",{},[58],{"type":48,"value":59},"Prerequisite:",{"type":48,"value":61}," ",{"type":42,"tag":63,"props":64,"children":66},"code",{"className":65},[],[67],{"type":48,"value":68},"@wix\u002Fdesign-system",{"type":48,"value":70}," must be installed (",{"type":42,"tag":63,"props":72,"children":74},{"className":73},[],[75],{"type":48,"value":76},"npm i @wix\u002Fdesign-system",{"type":48,"value":78}," or ",{"type":42,"tag":63,"props":80,"children":82},{"className":81},[],[83],{"type":48,"value":84},"yarn add @wix\u002Fdesign-system",{"type":48,"value":86},").",{"type":42,"tag":88,"props":89,"children":91},"h2",{"id":90},"helper-script",[92],{"type":48,"value":93},"Helper Script",{"type":42,"tag":51,"props":95,"children":96},{},[97,99,105,107,112],{"type":48,"value":98},"This skill bundles ",{"type":42,"tag":63,"props":100,"children":102},{"className":101},[],[103],{"type":48,"value":104},"scripts\u002Fwds.cjs",{"type":48,"value":106}," — a Node.js helper that auto-discovers ",{"type":42,"tag":63,"props":108,"children":110},{"className":109},[],[111],{"type":48,"value":68},{"type":48,"value":113}," in node_modules (handles monorepos and workspaces) and provides focused lookups. Run it from the user's project directory using the absolute path to the bundled script:",{"type":42,"tag":115,"props":116,"children":121},"pre",{"className":117,"code":118,"language":119,"meta":120,"style":120},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# WDS is the absolute path to this skill's scripts\u002Fwds.cjs\nWDS=\"\u003Cthis-skill-dir>\u002Fscripts\u002Fwds.cjs\"\n\nnode $WDS search \u003Ckeyword>                 # Find components by keyword\nnode $WDS component \u003CName>                 # Get props + example list (one component)\nnode $WDS components \u003CName1> \u003CName2>...    # Same as `component`, but for several at once\nnode $WDS example \u003CName> \"\u003CExampleName>\"   # Get a specific example\nnode $WDS testkit \u003CName> [method]          # Get testkit imports + driver API\nnode $WDS icons \u003Cquery>                    # Search for icons\n","bash","",[122],{"type":42,"tag":63,"props":123,"children":124},{"__ignoreMap":120},[125,137,169,179,224,264,318,370,413],{"type":42,"tag":126,"props":127,"children":130},"span",{"class":128,"line":129},"line",1,[131],{"type":42,"tag":126,"props":132,"children":134},{"style":133},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[135],{"type":48,"value":136},"# WDS is the absolute path to this skill's scripts\u002Fwds.cjs\n",{"type":42,"tag":126,"props":138,"children":140},{"class":128,"line":139},2,[141,147,153,158,164],{"type":42,"tag":126,"props":142,"children":144},{"style":143},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[145],{"type":48,"value":146},"WDS",{"type":42,"tag":126,"props":148,"children":150},{"style":149},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[151],{"type":48,"value":152},"=",{"type":42,"tag":126,"props":154,"children":155},{"style":149},[156],{"type":48,"value":157},"\"",{"type":42,"tag":126,"props":159,"children":161},{"style":160},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[162],{"type":48,"value":163},"\u003Cthis-skill-dir>\u002Fscripts\u002Fwds.cjs",{"type":42,"tag":126,"props":165,"children":166},{"style":149},[167],{"type":48,"value":168},"\"\n",{"type":42,"tag":126,"props":170,"children":172},{"class":128,"line":171},3,[173],{"type":42,"tag":126,"props":174,"children":176},{"emptyLinePlaceholder":175},true,[177],{"type":48,"value":178},"\n",{"type":42,"tag":126,"props":180,"children":182},{"class":128,"line":181},4,[183,189,194,199,204,209,214,219],{"type":42,"tag":126,"props":184,"children":186},{"style":185},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[187],{"type":48,"value":188},"node",{"type":42,"tag":126,"props":190,"children":191},{"style":143},[192],{"type":48,"value":193}," $WDS ",{"type":42,"tag":126,"props":195,"children":196},{"style":160},[197],{"type":48,"value":198},"search",{"type":42,"tag":126,"props":200,"children":201},{"style":149},[202],{"type":48,"value":203}," \u003C",{"type":42,"tag":126,"props":205,"children":206},{"style":160},[207],{"type":48,"value":208},"keywor",{"type":42,"tag":126,"props":210,"children":211},{"style":143},[212],{"type":48,"value":213},"d",{"type":42,"tag":126,"props":215,"children":216},{"style":149},[217],{"type":48,"value":218},">",{"type":42,"tag":126,"props":220,"children":221},{"style":133},[222],{"type":48,"value":223},"                 # Find components by keyword\n",{"type":42,"tag":126,"props":225,"children":227},{"class":128,"line":226},5,[228,232,236,241,245,250,255,259],{"type":42,"tag":126,"props":229,"children":230},{"style":185},[231],{"type":48,"value":188},{"type":42,"tag":126,"props":233,"children":234},{"style":143},[235],{"type":48,"value":193},{"type":42,"tag":126,"props":237,"children":238},{"style":160},[239],{"type":48,"value":240},"component",{"type":42,"tag":126,"props":242,"children":243},{"style":149},[244],{"type":48,"value":203},{"type":42,"tag":126,"props":246,"children":247},{"style":160},[248],{"type":48,"value":249},"Nam",{"type":42,"tag":126,"props":251,"children":252},{"style":143},[253],{"type":48,"value":254},"e",{"type":42,"tag":126,"props":256,"children":257},{"style":149},[258],{"type":48,"value":218},{"type":42,"tag":126,"props":260,"children":261},{"style":133},[262],{"type":48,"value":263},"                 # Get props + example list (one component)\n",{"type":42,"tag":126,"props":265,"children":267},{"class":128,"line":266},6,[268,272,276,281,285,290,295,299,303,308,313],{"type":42,"tag":126,"props":269,"children":270},{"style":185},[271],{"type":48,"value":188},{"type":42,"tag":126,"props":273,"children":274},{"style":143},[275],{"type":48,"value":193},{"type":42,"tag":126,"props":277,"children":278},{"style":160},[279],{"type":48,"value":280},"components",{"type":42,"tag":126,"props":282,"children":283},{"style":149},[284],{"type":48,"value":203},{"type":42,"tag":126,"props":286,"children":287},{"style":160},[288],{"type":48,"value":289},"Name",{"type":42,"tag":126,"props":291,"children":292},{"style":149},[293],{"type":48,"value":294},"1>",{"type":42,"tag":126,"props":296,"children":297},{"style":149},[298],{"type":48,"value":203},{"type":42,"tag":126,"props":300,"children":301},{"style":160},[302],{"type":48,"value":289},{"type":42,"tag":126,"props":304,"children":305},{"style":149},[306],{"type":48,"value":307},"2>",{"type":42,"tag":126,"props":309,"children":310},{"style":160},[311],{"type":48,"value":312},"...",{"type":42,"tag":126,"props":314,"children":315},{"style":133},[316],{"type":48,"value":317},"    # Same as `component`, but for several at once\n",{"type":42,"tag":126,"props":319,"children":321},{"class":128,"line":320},7,[322,326,330,335,339,343,347,351,356,361,365],{"type":42,"tag":126,"props":323,"children":324},{"style":185},[325],{"type":48,"value":188},{"type":42,"tag":126,"props":327,"children":328},{"style":143},[329],{"type":48,"value":193},{"type":42,"tag":126,"props":331,"children":332},{"style":160},[333],{"type":48,"value":334},"example",{"type":42,"tag":126,"props":336,"children":337},{"style":149},[338],{"type":48,"value":203},{"type":42,"tag":126,"props":340,"children":341},{"style":160},[342],{"type":48,"value":249},{"type":42,"tag":126,"props":344,"children":345},{"style":143},[346],{"type":48,"value":254},{"type":42,"tag":126,"props":348,"children":349},{"style":149},[350],{"type":48,"value":218},{"type":42,"tag":126,"props":352,"children":353},{"style":149},[354],{"type":48,"value":355}," \"",{"type":42,"tag":126,"props":357,"children":358},{"style":160},[359],{"type":48,"value":360},"\u003CExampleName>",{"type":42,"tag":126,"props":362,"children":363},{"style":149},[364],{"type":48,"value":157},{"type":42,"tag":126,"props":366,"children":367},{"style":133},[368],{"type":48,"value":369},"   # Get a specific example\n",{"type":42,"tag":126,"props":371,"children":373},{"class":128,"line":372},8,[374,378,382,387,391,395,399,403,408],{"type":42,"tag":126,"props":375,"children":376},{"style":185},[377],{"type":48,"value":188},{"type":42,"tag":126,"props":379,"children":380},{"style":143},[381],{"type":48,"value":193},{"type":42,"tag":126,"props":383,"children":384},{"style":160},[385],{"type":48,"value":386},"testkit",{"type":42,"tag":126,"props":388,"children":389},{"style":149},[390],{"type":48,"value":203},{"type":42,"tag":126,"props":392,"children":393},{"style":160},[394],{"type":48,"value":249},{"type":42,"tag":126,"props":396,"children":397},{"style":143},[398],{"type":48,"value":254},{"type":42,"tag":126,"props":400,"children":401},{"style":149},[402],{"type":48,"value":218},{"type":42,"tag":126,"props":404,"children":405},{"style":143},[406],{"type":48,"value":407}," [method]          ",{"type":42,"tag":126,"props":409,"children":410},{"style":133},[411],{"type":48,"value":412},"# Get testkit imports + driver API\n",{"type":42,"tag":126,"props":414,"children":416},{"class":128,"line":415},9,[417,421,425,430,434,439,444,448],{"type":42,"tag":126,"props":418,"children":419},{"style":185},[420],{"type":48,"value":188},{"type":42,"tag":126,"props":422,"children":423},{"style":143},[424],{"type":48,"value":193},{"type":42,"tag":126,"props":426,"children":427},{"style":160},[428],{"type":48,"value":429},"icons",{"type":42,"tag":126,"props":431,"children":432},{"style":149},[433],{"type":48,"value":203},{"type":42,"tag":126,"props":435,"children":436},{"style":160},[437],{"type":48,"value":438},"quer",{"type":42,"tag":126,"props":440,"children":441},{"style":143},[442],{"type":48,"value":443},"y",{"type":42,"tag":126,"props":445,"children":446},{"style":149},[447],{"type":48,"value":218},{"type":42,"tag":126,"props":449,"children":450},{"style":133},[451],{"type":48,"value":452},"                    # Search for icons\n",{"type":42,"tag":88,"props":454,"children":456},{"id":455},"workflow",[457],{"type":48,"value":458},"Workflow",{"type":42,"tag":460,"props":461,"children":463},"h3",{"id":462},"step-1-find-the-right-component",[464],{"type":48,"value":465},"Step 1: Find the right component",{"type":42,"tag":115,"props":467,"children":469},{"className":117,"code":468,"language":119,"meta":120,"style":120},"node $WDS search table\nnode $WDS search form input validation\nnode $WDS search modal dialog popup\n",[470],{"type":42,"tag":63,"props":471,"children":472},{"__ignoreMap":120},[473,493,523],{"type":42,"tag":126,"props":474,"children":475},{"class":128,"line":129},[476,480,484,488],{"type":42,"tag":126,"props":477,"children":478},{"style":185},[479],{"type":48,"value":188},{"type":42,"tag":126,"props":481,"children":482},{"style":143},[483],{"type":48,"value":193},{"type":42,"tag":126,"props":485,"children":486},{"style":160},[487],{"type":48,"value":198},{"type":42,"tag":126,"props":489,"children":490},{"style":160},[491],{"type":48,"value":492}," table\n",{"type":42,"tag":126,"props":494,"children":495},{"class":128,"line":139},[496,500,504,508,513,518],{"type":42,"tag":126,"props":497,"children":498},{"style":185},[499],{"type":48,"value":188},{"type":42,"tag":126,"props":501,"children":502},{"style":143},[503],{"type":48,"value":193},{"type":42,"tag":126,"props":505,"children":506},{"style":160},[507],{"type":48,"value":198},{"type":42,"tag":126,"props":509,"children":510},{"style":160},[511],{"type":48,"value":512}," form",{"type":42,"tag":126,"props":514,"children":515},{"style":160},[516],{"type":48,"value":517}," input",{"type":42,"tag":126,"props":519,"children":520},{"style":160},[521],{"type":48,"value":522}," validation\n",{"type":42,"tag":126,"props":524,"children":525},{"class":128,"line":171},[526,530,534,538,543,548],{"type":42,"tag":126,"props":527,"children":528},{"style":185},[529],{"type":48,"value":188},{"type":42,"tag":126,"props":531,"children":532},{"style":143},[533],{"type":48,"value":193},{"type":42,"tag":126,"props":535,"children":536},{"style":160},[537],{"type":48,"value":198},{"type":42,"tag":126,"props":539,"children":540},{"style":160},[541],{"type":48,"value":542}," modal",{"type":42,"tag":126,"props":544,"children":545},{"style":160},[546],{"type":48,"value":547}," dialog",{"type":42,"tag":126,"props":549,"children":550},{"style":160},[551],{"type":48,"value":552}," popup\n",{"type":42,"tag":51,"props":554,"children":555},{},[556],{"type":48,"value":557},"Multiple keywords are OR-matched. Returns component names, descriptions, and usage guidance.",{"type":42,"tag":460,"props":559,"children":561},{"id":560},"step-2-get-props-and-available-examples",[562],{"type":48,"value":563},"Step 2: Get props and available examples",{"type":42,"tag":115,"props":565,"children":567},{"className":117,"code":566,"language":119,"meta":120,"style":120},"node $WDS component Button\n",[568],{"type":42,"tag":63,"props":569,"children":570},{"__ignoreMap":120},[571],{"type":42,"tag":126,"props":572,"children":573},{"class":128,"line":129},[574,578,582,586],{"type":42,"tag":126,"props":575,"children":576},{"style":185},[577],{"type":48,"value":188},{"type":42,"tag":126,"props":579,"children":580},{"style":143},[581],{"type":48,"value":193},{"type":42,"tag":126,"props":583,"children":584},{"style":160},[585],{"type":48,"value":240},{"type":42,"tag":126,"props":587,"children":588},{"style":160},[589],{"type":48,"value":590}," Button\n",{"type":42,"tag":51,"props":592,"children":593},{},[594],{"type":48,"value":595},"Returns the full props list (types and descriptions) plus a list of all available examples. For large prop files (>200 lines), returns a summary with prop names and types.",{"type":42,"tag":51,"props":597,"children":598},{},[599],{"type":48,"value":600},"If you already know which several components you'll need (e.g. after Step 1 returned a shortlist), prefer the batch form to avoid one round-trip per component:",{"type":42,"tag":115,"props":602,"children":604},{"className":117,"code":603,"language":119,"meta":120,"style":120},"node $WDS components Button Card Table Input Text Thumbnail\n",[605],{"type":42,"tag":63,"props":606,"children":607},{"__ignoreMap":120},[608],{"type":42,"tag":126,"props":609,"children":610},{"class":128,"line":129},[611,615,619,623,628,633,638,643,648],{"type":42,"tag":126,"props":612,"children":613},{"style":185},[614],{"type":48,"value":188},{"type":42,"tag":126,"props":616,"children":617},{"style":143},[618],{"type":48,"value":193},{"type":42,"tag":126,"props":620,"children":621},{"style":160},[622],{"type":48,"value":280},{"type":42,"tag":126,"props":624,"children":625},{"style":160},[626],{"type":48,"value":627}," Button",{"type":42,"tag":126,"props":629,"children":630},{"style":160},[631],{"type":48,"value":632}," Card",{"type":42,"tag":126,"props":634,"children":635},{"style":160},[636],{"type":48,"value":637}," Table",{"type":42,"tag":126,"props":639,"children":640},{"style":160},[641],{"type":48,"value":642}," Input",{"type":42,"tag":126,"props":644,"children":645},{"style":160},[646],{"type":48,"value":647}," Text",{"type":42,"tag":126,"props":649,"children":650},{"style":160},[651],{"type":48,"value":652}," Thumbnail\n",{"type":42,"tag":51,"props":654,"children":655},{},[656,658,664],{"type":48,"value":657},"Output is each component's props block separated by ",{"type":42,"tag":63,"props":659,"children":661},{"className":660},[],[662],{"type":48,"value":663},"---",{"type":48,"value":665},". Missing components are logged to stderr and skipped; the command only fails if every requested component is missing.",{"type":42,"tag":460,"props":667,"children":669},{"id":668},"step-3-get-a-specific-example",[670],{"type":48,"value":671},"Step 3: Get a specific example",{"type":42,"tag":115,"props":673,"children":675},{"className":117,"code":674,"language":119,"meta":120,"style":120},"node $WDS example Button \"Loading state\"\n",[676],{"type":42,"tag":63,"props":677,"children":678},{"__ignoreMap":120},[679],{"type":42,"tag":126,"props":680,"children":681},{"class":128,"line":129},[682,686,690,694,698,702,707],{"type":42,"tag":126,"props":683,"children":684},{"style":185},[685],{"type":48,"value":188},{"type":42,"tag":126,"props":687,"children":688},{"style":143},[689],{"type":48,"value":193},{"type":42,"tag":126,"props":691,"children":692},{"style":160},[693],{"type":48,"value":334},{"type":42,"tag":126,"props":695,"children":696},{"style":160},[697],{"type":48,"value":627},{"type":42,"tag":126,"props":699,"children":700},{"style":149},[701],{"type":48,"value":355},{"type":42,"tag":126,"props":703,"children":704},{"style":160},[705],{"type":48,"value":706},"Loading state",{"type":42,"tag":126,"props":708,"children":709},{"style":149},[710],{"type":48,"value":168},{"type":42,"tag":51,"props":712,"children":713},{},[714],{"type":48,"value":715},"Returns the example description and JSX code. Matching is case-insensitive and supports substrings (e.g., \"loading\" matches \"Loading state\").",{"type":42,"tag":460,"props":717,"children":719},{"id":718},"step-4-write-tests-with-the-component-testkit",[720],{"type":48,"value":721},"Step 4: Write tests with the component testkit",{"type":42,"tag":115,"props":723,"children":725},{"className":117,"code":724,"language":119,"meta":120,"style":120},"node $WDS testkit Button             # Imports + full driver API for Button\nnode $WDS testkit Button click       # Just the click() method details\n",[726],{"type":42,"tag":63,"props":727,"children":728},{"__ignoreMap":120},[729,753],{"type":42,"tag":126,"props":730,"children":731},{"class":128,"line":129},[732,736,740,744,748],{"type":42,"tag":126,"props":733,"children":734},{"style":185},[735],{"type":48,"value":188},{"type":42,"tag":126,"props":737,"children":738},{"style":143},[739],{"type":48,"value":193},{"type":42,"tag":126,"props":741,"children":742},{"style":160},[743],{"type":48,"value":386},{"type":42,"tag":126,"props":745,"children":746},{"style":160},[747],{"type":48,"value":627},{"type":42,"tag":126,"props":749,"children":750},{"style":133},[751],{"type":48,"value":752},"             # Imports + full driver API for Button\n",{"type":42,"tag":126,"props":754,"children":755},{"class":128,"line":139},[756,760,764,768,772,777],{"type":42,"tag":126,"props":757,"children":758},{"style":185},[759],{"type":48,"value":188},{"type":42,"tag":126,"props":761,"children":762},{"style":143},[763],{"type":48,"value":193},{"type":42,"tag":126,"props":765,"children":766},{"style":160},[767],{"type":48,"value":386},{"type":42,"tag":126,"props":769,"children":770},{"style":160},[771],{"type":48,"value":627},{"type":42,"tag":126,"props":773,"children":774},{"style":160},[775],{"type":48,"value":776}," click",{"type":42,"tag":126,"props":778,"children":779},{"style":133},[780],{"type":48,"value":781},"       # Just the click() method details\n",{"type":42,"tag":51,"props":783,"children":784},{},[785],{"type":48,"value":786},"Returns import snippets for unidriver, vanilla, puppeteer, and playwright flavors plus the driver method API (name, args, return type, description). Method name matching is case-insensitive substring.",{"type":42,"tag":460,"props":788,"children":790},{"id":789},"step-5-find-icons",[791],{"type":48,"value":792},"Step 5: Find icons",{"type":42,"tag":115,"props":794,"children":796},{"className":117,"code":795,"language":119,"meta":120,"style":120},"node $WDS icons Add Edit Delete\n",[797],{"type":42,"tag":63,"props":798,"children":799},{"__ignoreMap":120},[800],{"type":42,"tag":126,"props":801,"children":802},{"class":128,"line":129},[803,807,811,815,820,825],{"type":42,"tag":126,"props":804,"children":805},{"style":185},[806],{"type":48,"value":188},{"type":42,"tag":126,"props":808,"children":809},{"style":143},[810],{"type":48,"value":193},{"type":42,"tag":126,"props":812,"children":813},{"style":160},[814],{"type":48,"value":429},{"type":42,"tag":126,"props":816,"children":817},{"style":160},[818],{"type":48,"value":819}," Add",{"type":42,"tag":126,"props":821,"children":822},{"style":160},[823],{"type":48,"value":824}," Edit",{"type":42,"tag":126,"props":826,"children":827},{"style":160},[828],{"type":48,"value":829}," Delete\n",{"type":42,"tag":51,"props":831,"children":832},{},[833,835,841,843,849,851,857,859,865],{"type":48,"value":834},"Icons are from ",{"type":42,"tag":63,"props":836,"children":838},{"className":837},[],[839],{"type":48,"value":840},"@wix\u002Fwix-ui-icons-common",{"type":48,"value":842},". Each icon has a ",{"type":42,"tag":63,"props":844,"children":846},{"className":845},[],[847],{"type":48,"value":848},"Small",{"type":48,"value":850}," variant (e.g., ",{"type":42,"tag":63,"props":852,"children":854},{"className":853},[],[855],{"type":48,"value":856},"Add",{"type":48,"value":858}," + ",{"type":42,"tag":63,"props":860,"children":862},{"className":861},[],[863],{"type":48,"value":864},"AddSmall",{"type":48,"value":86},{"type":42,"tag":88,"props":867,"children":869},{"id":868},"fallback-direct-file-access",[870],{"type":48,"value":871},"Fallback: Direct File Access",{"type":42,"tag":51,"props":873,"children":874},{},[875,877,883],{"type":48,"value":876},"If the script is unavailable, docs are at ",{"type":42,"tag":63,"props":878,"children":880},{"className":879},[],[881],{"type":48,"value":882},"node_modules\u002F@wix\u002Fdesign-system\u002Fdist\u002Fdocs\u002F",{"type":48,"value":884},":",{"type":42,"tag":886,"props":887,"children":888},"ul",{},[889,901,912,931,949,960],{"type":42,"tag":890,"props":891,"children":892},"li",{},[893,899],{"type":42,"tag":63,"props":894,"children":896},{"className":895},[],[897],{"type":48,"value":898},"components.md",{"type":48,"value":900}," — component catalog (~978 lines, grep only)",{"type":42,"tag":890,"props":902,"children":903},{},[904,910],{"type":42,"tag":63,"props":905,"children":907},{"className":906},[],[908],{"type":48,"value":909},"components\u002F{Name}Props.md",{"type":48,"value":911}," — props per component",{"type":42,"tag":890,"props":913,"children":914},{},[915,921,923,929],{"type":42,"tag":63,"props":916,"children":918},{"className":917},[],[919],{"type":48,"value":920},"components\u002F{Name}Examples.md",{"type":48,"value":922}," — examples per component (grep ",{"type":42,"tag":63,"props":924,"children":926},{"className":925},[],[927],{"type":48,"value":928},"^### ",{"type":48,"value":930}," for section list)",{"type":42,"tag":890,"props":932,"children":933},{},[934,940,942,947],{"type":42,"tag":63,"props":935,"children":937},{"className":936},[],[938],{"type":48,"value":939},"components\u002F{Name}Testkit.md",{"type":48,"value":941}," — testkit imports + driver API per component (grep ",{"type":42,"tag":63,"props":943,"children":945},{"className":944},[],[946],{"type":48,"value":928},{"type":48,"value":948}," for method list)",{"type":42,"tag":890,"props":950,"children":951},{},[952,958],{"type":42,"tag":63,"props":953,"children":955},{"className":954},[],[956],{"type":48,"value":957},"testkits.md",{"type":48,"value":959}," — testkit catalog (list of components with generated testkit docs)",{"type":42,"tag":890,"props":961,"children":962},{},[963,969],{"type":42,"tag":63,"props":964,"children":966},{"className":965},[],[967],{"type":48,"value":968},"icons.md",{"type":48,"value":970}," — icon catalog (~818 lines, grep only)",{"type":42,"tag":51,"props":972,"children":973},{},[974,976,982],{"type":48,"value":975},"Don't read these files fully. Grep for keywords, then read specific sections with offset\u002Flimit. See ",{"type":42,"tag":977,"props":978,"children":980},"a",{"href":979},"references\u002Ffile-structure.md",[981],{"type":48,"value":979},{"type":48,"value":983}," for the exact docs file layout and section shapes.",{"type":42,"tag":985,"props":986,"children":987},"hr",{},[],{"type":42,"tag":88,"props":989,"children":991},{"id":990},"quick-component-mapping-design-to-wds",[992],{"type":48,"value":993},"Quick Component Mapping (Design to WDS)",{"type":42,"tag":995,"props":996,"children":997},"table",{},[998,1022],{"type":42,"tag":999,"props":1000,"children":1001},"thead",{},[1002],{"type":42,"tag":1003,"props":1004,"children":1005},"tr",{},[1006,1012,1017],{"type":42,"tag":1007,"props":1008,"children":1009},"th",{},[1010],{"type":48,"value":1011},"Design Element",{"type":42,"tag":1007,"props":1013,"children":1014},{},[1015],{"type":48,"value":1016},"WDS Component",{"type":42,"tag":1007,"props":1018,"children":1019},{},[1020],{"type":48,"value":1021},"Notes",{"type":42,"tag":1023,"props":1024,"children":1025},"tbody",{},[1026,1049,1071,1100,1122,1151],{"type":42,"tag":1003,"props":1027,"children":1028},{},[1029,1035,1044],{"type":42,"tag":1030,"props":1031,"children":1032},"td",{},[1033],{"type":48,"value":1034},"Rectangle\u002Fcontainer",{"type":42,"tag":1030,"props":1036,"children":1037},{},[1038],{"type":42,"tag":63,"props":1039,"children":1041},{"className":1040},[],[1042],{"type":48,"value":1043},"\u003CBox>",{"type":42,"tag":1030,"props":1045,"children":1046},{},[1047],{"type":48,"value":1048},"Layout wrapper",{"type":42,"tag":1003,"props":1050,"children":1051},{},[1052,1057,1066],{"type":42,"tag":1030,"props":1053,"children":1054},{},[1055],{"type":48,"value":1056},"Text button",{"type":42,"tag":1030,"props":1058,"children":1059},{},[1060],{"type":42,"tag":63,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":48,"value":1065},"\u003CTextButton>",{"type":42,"tag":1030,"props":1067,"children":1068},{},[1069],{"type":48,"value":1070},"Secondary actions",{"type":42,"tag":1003,"props":1072,"children":1073},{},[1074,1079,1095],{"type":42,"tag":1030,"props":1075,"children":1076},{},[1077],{"type":48,"value":1078},"Input with label",{"type":42,"tag":1030,"props":1080,"children":1081},{},[1082,1088,1089],{"type":42,"tag":63,"props":1083,"children":1085},{"className":1084},[],[1086],{"type":48,"value":1087},"\u003CFormField>",{"type":48,"value":858},{"type":42,"tag":63,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":48,"value":1094},"\u003CInput>",{"type":42,"tag":1030,"props":1096,"children":1097},{},[1098],{"type":48,"value":1099},"Wrap inputs",{"type":42,"tag":1003,"props":1101,"children":1102},{},[1103,1108,1117],{"type":42,"tag":1030,"props":1104,"children":1105},{},[1106],{"type":48,"value":1107},"Toggle",{"type":42,"tag":1030,"props":1109,"children":1110},{},[1111],{"type":42,"tag":63,"props":1112,"children":1114},{"className":1113},[],[1115],{"type":48,"value":1116},"\u003CToggleSwitch>",{"type":42,"tag":1030,"props":1118,"children":1119},{},[1120],{"type":48,"value":1121},"On\u002Foff settings",{"type":42,"tag":1003,"props":1123,"children":1124},{},[1125,1130,1146],{"type":42,"tag":1030,"props":1126,"children":1127},{},[1128],{"type":48,"value":1129},"Modal",{"type":42,"tag":1030,"props":1131,"children":1132},{},[1133,1139,1140],{"type":42,"tag":63,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":48,"value":1138},"\u003CModal>",{"type":48,"value":858},{"type":42,"tag":63,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":48,"value":1145},"\u003CCustomModalLayout>",{"type":42,"tag":1030,"props":1147,"children":1148},{},[1149],{"type":48,"value":1150},"Use together",{"type":42,"tag":1003,"props":1152,"children":1153},{},[1154,1159,1175],{"type":42,"tag":1030,"props":1155,"children":1156},{},[1157],{"type":48,"value":1158},"Grid",{"type":42,"tag":1030,"props":1160,"children":1161},{},[1162,1168,1169],{"type":42,"tag":63,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":48,"value":1167},"\u003CLayout>",{"type":48,"value":858},{"type":42,"tag":63,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":48,"value":1174},"\u003CCell>",{"type":42,"tag":1030,"props":1176,"children":1177},{},[1178],{"type":48,"value":1179},"Responsive",{"type":42,"tag":88,"props":1181,"children":1183},{"id":1182},"spacing-px-to-sp-conversion",[1184],{"type":48,"value":1185},"Spacing (px to SP conversion)",{"type":42,"tag":51,"props":1187,"children":1188},{},[1189],{"type":48,"value":1190},"When designer specifies pixels, convert to the nearest SP token:",{"type":42,"tag":995,"props":1192,"children":1193},{},[1194,1215],{"type":42,"tag":999,"props":1195,"children":1196},{},[1197],{"type":42,"tag":1003,"props":1198,"children":1199},{},[1200,1205,1210],{"type":42,"tag":1007,"props":1201,"children":1202},{},[1203],{"type":48,"value":1204},"Token",{"type":42,"tag":1007,"props":1206,"children":1207},{},[1208],{"type":48,"value":1209},"Classic",{"type":42,"tag":1007,"props":1211,"children":1212},{},[1213],{"type":48,"value":1214},"Studio",{"type":42,"tag":1023,"props":1216,"children":1217},{},[1218,1240,1262,1283,1305,1327],{"type":42,"tag":1003,"props":1219,"children":1220},{},[1221,1230,1235],{"type":42,"tag":1030,"props":1222,"children":1223},{},[1224],{"type":42,"tag":63,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":48,"value":1229},"SP1",{"type":42,"tag":1030,"props":1231,"children":1232},{},[1233],{"type":48,"value":1234},"6px",{"type":42,"tag":1030,"props":1236,"children":1237},{},[1238],{"type":48,"value":1239},"4px",{"type":42,"tag":1003,"props":1241,"children":1242},{},[1243,1252,1257],{"type":42,"tag":1030,"props":1244,"children":1245},{},[1246],{"type":42,"tag":63,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":48,"value":1251},"SP2",{"type":42,"tag":1030,"props":1253,"children":1254},{},[1255],{"type":48,"value":1256},"12px",{"type":42,"tag":1030,"props":1258,"children":1259},{},[1260],{"type":48,"value":1261},"8px",{"type":42,"tag":1003,"props":1263,"children":1264},{},[1265,1274,1279],{"type":42,"tag":1030,"props":1266,"children":1267},{},[1268],{"type":42,"tag":63,"props":1269,"children":1271},{"className":1270},[],[1272],{"type":48,"value":1273},"SP3",{"type":42,"tag":1030,"props":1275,"children":1276},{},[1277],{"type":48,"value":1278},"18px",{"type":42,"tag":1030,"props":1280,"children":1281},{},[1282],{"type":48,"value":1256},{"type":42,"tag":1003,"props":1284,"children":1285},{},[1286,1295,1300],{"type":42,"tag":1030,"props":1287,"children":1288},{},[1289],{"type":42,"tag":63,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":48,"value":1294},"SP4",{"type":42,"tag":1030,"props":1296,"children":1297},{},[1298],{"type":48,"value":1299},"24px",{"type":42,"tag":1030,"props":1301,"children":1302},{},[1303],{"type":48,"value":1304},"16px",{"type":42,"tag":1003,"props":1306,"children":1307},{},[1308,1317,1322],{"type":42,"tag":1030,"props":1309,"children":1310},{},[1311],{"type":42,"tag":63,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":48,"value":1316},"SP5",{"type":42,"tag":1030,"props":1318,"children":1319},{},[1320],{"type":48,"value":1321},"30px",{"type":42,"tag":1030,"props":1323,"children":1324},{},[1325],{"type":48,"value":1326},"20px",{"type":42,"tag":1003,"props":1328,"children":1329},{},[1330,1339,1344],{"type":42,"tag":1030,"props":1331,"children":1332},{},[1333],{"type":42,"tag":63,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":48,"value":1338},"SP6",{"type":42,"tag":1030,"props":1340,"children":1341},{},[1342],{"type":48,"value":1343},"36px",{"type":42,"tag":1030,"props":1345,"children":1346},{},[1347],{"type":48,"value":1299},{"type":42,"tag":115,"props":1349,"children":1353},{"className":1350,"code":1351,"language":1352,"meta":120,"style":120},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CBox gap=\"SP2\" padding=\"SP3\">\n","tsx",[1354],{"type":42,"tag":63,"props":1355,"children":1356},{"__ignoreMap":120},[1357],{"type":42,"tag":126,"props":1358,"children":1359},{"class":128,"line":129},[1360,1365,1370,1376,1380,1384,1388,1392,1397,1401,1405,1409,1413],{"type":42,"tag":126,"props":1361,"children":1362},{"style":149},[1363],{"type":48,"value":1364},"\u003C",{"type":42,"tag":126,"props":1366,"children":1367},{"style":185},[1368],{"type":48,"value":1369},"Box",{"type":42,"tag":126,"props":1371,"children":1373},{"style":1372},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1374],{"type":48,"value":1375}," gap",{"type":42,"tag":126,"props":1377,"children":1378},{"style":149},[1379],{"type":48,"value":152},{"type":42,"tag":126,"props":1381,"children":1382},{"style":149},[1383],{"type":48,"value":157},{"type":42,"tag":126,"props":1385,"children":1386},{"style":160},[1387],{"type":48,"value":1251},{"type":42,"tag":126,"props":1389,"children":1390},{"style":149},[1391],{"type":48,"value":157},{"type":42,"tag":126,"props":1393,"children":1394},{"style":1372},[1395],{"type":48,"value":1396}," padding",{"type":42,"tag":126,"props":1398,"children":1399},{"style":149},[1400],{"type":48,"value":152},{"type":42,"tag":126,"props":1402,"children":1403},{"style":149},[1404],{"type":48,"value":157},{"type":42,"tag":126,"props":1406,"children":1407},{"style":160},[1408],{"type":48,"value":1273},{"type":42,"tag":126,"props":1410,"children":1411},{"style":149},[1412],{"type":48,"value":157},{"type":42,"tag":126,"props":1414,"children":1415},{"style":149},[1416],{"type":48,"value":1417},">\n",{"type":42,"tag":51,"props":1419,"children":1420},{},[1421,1423,1429,1431,1437,1438,1444],{"type":48,"value":1422},"Only use SP tokens for ",{"type":42,"tag":63,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":48,"value":1428},"gap",{"type":48,"value":1430},", ",{"type":42,"tag":63,"props":1432,"children":1434},{"className":1433},[],[1435],{"type":48,"value":1436},"padding",{"type":48,"value":1430},{"type":42,"tag":63,"props":1439,"children":1441},{"className":1440},[],[1442],{"type":48,"value":1443},"margin",{"type":48,"value":1445}," — not for width\u002Fheight.",{"type":42,"tag":88,"props":1447,"children":1449},{"id":1448},"imports",[1450],{"type":48,"value":1451},"Imports",{"type":42,"tag":115,"props":1453,"children":1455},{"className":1350,"code":1454,"language":1352,"meta":120,"style":120},"import { Button, Card, Image } from \"@wix\u002Fdesign-system\";\nimport { Add, Edit, Delete } from \"@wix\u002Fwix-ui-icons-common\";\n",[1456],{"type":42,"tag":63,"props":1457,"children":1458},{"__ignoreMap":120},[1459,1522],{"type":42,"tag":126,"props":1460,"children":1461},{"class":128,"line":129},[1462,1468,1473,1477,1482,1486,1490,1495,1500,1505,1509,1513,1517],{"type":42,"tag":126,"props":1463,"children":1465},{"style":1464},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1466],{"type":48,"value":1467},"import",{"type":42,"tag":126,"props":1469,"children":1470},{"style":149},[1471],{"type":48,"value":1472}," {",{"type":42,"tag":126,"props":1474,"children":1475},{"style":143},[1476],{"type":48,"value":627},{"type":42,"tag":126,"props":1478,"children":1479},{"style":149},[1480],{"type":48,"value":1481},",",{"type":42,"tag":126,"props":1483,"children":1484},{"style":143},[1485],{"type":48,"value":632},{"type":42,"tag":126,"props":1487,"children":1488},{"style":149},[1489],{"type":48,"value":1481},{"type":42,"tag":126,"props":1491,"children":1492},{"style":143},[1493],{"type":48,"value":1494}," Image",{"type":42,"tag":126,"props":1496,"children":1497},{"style":149},[1498],{"type":48,"value":1499}," }",{"type":42,"tag":126,"props":1501,"children":1502},{"style":1464},[1503],{"type":48,"value":1504}," from",{"type":42,"tag":126,"props":1506,"children":1507},{"style":149},[1508],{"type":48,"value":355},{"type":42,"tag":126,"props":1510,"children":1511},{"style":160},[1512],{"type":48,"value":68},{"type":42,"tag":126,"props":1514,"children":1515},{"style":149},[1516],{"type":48,"value":157},{"type":42,"tag":126,"props":1518,"children":1519},{"style":149},[1520],{"type":48,"value":1521},";\n",{"type":42,"tag":126,"props":1523,"children":1524},{"class":128,"line":139},[1525,1529,1533,1537,1541,1545,1549,1554,1558,1562,1566,1570,1574],{"type":42,"tag":126,"props":1526,"children":1527},{"style":1464},[1528],{"type":48,"value":1467},{"type":42,"tag":126,"props":1530,"children":1531},{"style":149},[1532],{"type":48,"value":1472},{"type":42,"tag":126,"props":1534,"children":1535},{"style":143},[1536],{"type":48,"value":819},{"type":42,"tag":126,"props":1538,"children":1539},{"style":149},[1540],{"type":48,"value":1481},{"type":42,"tag":126,"props":1542,"children":1543},{"style":143},[1544],{"type":48,"value":824},{"type":42,"tag":126,"props":1546,"children":1547},{"style":149},[1548],{"type":48,"value":1481},{"type":42,"tag":126,"props":1550,"children":1551},{"style":143},[1552],{"type":48,"value":1553}," Delete",{"type":42,"tag":126,"props":1555,"children":1556},{"style":149},[1557],{"type":48,"value":1499},{"type":42,"tag":126,"props":1559,"children":1560},{"style":1464},[1561],{"type":48,"value":1504},{"type":42,"tag":126,"props":1563,"children":1564},{"style":149},[1565],{"type":48,"value":355},{"type":42,"tag":126,"props":1567,"children":1568},{"style":160},[1569],{"type":48,"value":840},{"type":42,"tag":126,"props":1571,"children":1572},{"style":149},[1573],{"type":48,"value":157},{"type":42,"tag":126,"props":1575,"children":1576},{"style":149},[1577],{"type":48,"value":1521},{"type":42,"tag":1579,"props":1580,"children":1581},"style",{},[1582],{"type":48,"value":1583},"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":1585,"total":1702},[1586,1604,1620,1632,1652,1670,1690],{"slug":1587,"name":1587,"fn":1588,"description":1589,"org":1590,"tags":1591,"stars":25,"repoUrl":26,"updatedAt":27},"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},[1592,1595,1598,1601],{"name":1593,"slug":1594,"type":15},"Accessibility","accessibility",{"name":1596,"slug":1597,"type":15},"Charts","charts",{"name":1599,"slug":1600,"type":15},"Data Visualization","data-visualization",{"name":1602,"slug":1603,"type":15},"Design","design",{"slug":1605,"name":1605,"fn":1606,"description":1607,"org":1608,"tags":1609,"stars":25,"repoUrl":26,"updatedAt":1619},"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},[1610,1613,1616],{"name":1611,"slug":1612,"type":15},"Agents","agents",{"name":1614,"slug":1615,"type":15},"Browser Automation","browser-automation",{"name":1617,"slug":1618,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1621,"name":1621,"fn":1622,"description":1623,"org":1624,"tags":1625,"stars":25,"repoUrl":26,"updatedAt":1631},"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},[1626,1627,1630],{"name":1614,"slug":1615,"type":15},{"name":1628,"slug":1629,"type":15},"Local Development","local-development",{"name":1617,"slug":1618,"type":15},"2026-04-06T18:41:17.526867",{"slug":1633,"name":1633,"fn":1634,"description":1635,"org":1636,"tags":1637,"stars":25,"repoUrl":26,"updatedAt":1651},"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},[1638,1639,1642,1645,1648],{"name":1611,"slug":1612,"type":15},{"name":1640,"slug":1641,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1643,"slug":1644,"type":15},"SDK","sdk",{"name":1646,"slug":1647,"type":15},"Serverless","serverless",{"name":1649,"slug":1650,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1653,"name":1653,"fn":1654,"description":1655,"org":1656,"tags":1657,"stars":25,"repoUrl":26,"updatedAt":1669},"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},[1658,1659,1662,1665,1666],{"name":23,"slug":24,"type":15},{"name":1660,"slug":1661,"type":15},"React","react",{"name":1663,"slug":1664,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":20,"slug":21,"type":15},{"name":1667,"slug":1668,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1671,"name":1671,"fn":1672,"description":1673,"org":1674,"tags":1675,"stars":25,"repoUrl":26,"updatedAt":1689},"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},[1676,1679,1682,1685,1688],{"name":1677,"slug":1678,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1680,"slug":1681,"type":15},"Cost Optimization","cost-optimization",{"name":1683,"slug":1684,"type":15},"LLM","llm",{"name":1686,"slug":1687,"type":15},"Performance","performance",{"name":1667,"slug":1668,"type":15},"2026-04-06T18:40:44.377464",{"slug":1691,"name":1691,"fn":1692,"description":1693,"org":1694,"tags":1695,"stars":25,"repoUrl":26,"updatedAt":1701},"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},[1696,1697,1700],{"name":1680,"slug":1681,"type":15},{"name":1698,"slug":1699,"type":15},"Database","database",{"name":1683,"slug":1684,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1704,"total":1899},[1705,1726,1749,1766,1782,1799,1818,1830,1842,1856,1868,1883],{"slug":1706,"name":1706,"fn":1707,"description":1708,"org":1709,"tags":1710,"stars":1723,"repoUrl":1724,"updatedAt":1725},"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},[1711,1714,1717,1720],{"name":1712,"slug":1713,"type":15},"Documents","documents",{"name":1715,"slug":1716,"type":15},"Healthcare","healthcare",{"name":1718,"slug":1719,"type":15},"Insurance","insurance",{"name":1721,"slug":1722,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1727,"name":1727,"fn":1728,"description":1729,"org":1730,"tags":1731,"stars":1746,"repoUrl":1747,"updatedAt":1748},"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},[1732,1735,1737,1740,1743],{"name":1733,"slug":1734,"type":15},".NET","dotnet",{"name":1736,"slug":1727,"type":15},"ASP.NET Core",{"name":1738,"slug":1739,"type":15},"Blazor","blazor",{"name":1741,"slug":1742,"type":15},"C#","csharp",{"name":1744,"slug":1745,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1750,"name":1750,"fn":1751,"description":1752,"org":1753,"tags":1754,"stars":1746,"repoUrl":1747,"updatedAt":1765},"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},[1755,1758,1761,1764],{"name":1756,"slug":1757,"type":15},"Apps SDK","apps-sdk",{"name":1759,"slug":1760,"type":15},"ChatGPT","chatgpt",{"name":1762,"slug":1763,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":1746,"repoUrl":1747,"updatedAt":1781},"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},[1772,1775,1778],{"name":1773,"slug":1774,"type":15},"API Development","api-development",{"name":1776,"slug":1777,"type":15},"CLI","cli",{"name":1779,"slug":1780,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1783,"name":1783,"fn":1784,"description":1785,"org":1786,"tags":1787,"stars":1746,"repoUrl":1747,"updatedAt":1798},"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},[1788,1791,1794,1795],{"name":1789,"slug":1790,"type":15},"Cloudflare","cloudflare",{"name":1792,"slug":1793,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1640,"slug":1641,"type":15},{"name":1796,"slug":1797,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1800,"name":1800,"fn":1801,"description":1802,"org":1803,"tags":1804,"stars":1746,"repoUrl":1747,"updatedAt":1817},"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},[1805,1808,1811,1814],{"name":1806,"slug":1807,"type":15},"Productivity","productivity",{"name":1809,"slug":1810,"type":15},"Project Management","project-management",{"name":1812,"slug":1813,"type":15},"Strategy","strategy",{"name":1815,"slug":1816,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1819,"name":1819,"fn":1820,"description":1821,"org":1822,"tags":1823,"stars":1746,"repoUrl":1747,"updatedAt":1829},"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},[1824,1825,1827,1828],{"name":1602,"slug":1603,"type":15},{"name":1826,"slug":1819,"type":15},"Figma",{"name":23,"slug":24,"type":15},{"name":1762,"slug":1763,"type":15},"2026-04-12T05:06:47.939943",{"slug":1831,"name":1831,"fn":1832,"description":1833,"org":1834,"tags":1835,"stars":1746,"repoUrl":1747,"updatedAt":1841},"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},[1836,1837,1838,1839,1840],{"name":1602,"slug":1603,"type":15},{"name":17,"slug":18,"type":15},{"name":1826,"slug":1819,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},"2026-05-10T05:59:52.971881",{"slug":1843,"name":1843,"fn":1844,"description":1845,"org":1846,"tags":1847,"stars":1746,"repoUrl":1747,"updatedAt":1855},"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},[1848,1849,1850,1853,1854],{"name":1602,"slug":1603,"type":15},{"name":17,"slug":18,"type":15},{"name":1851,"slug":1852,"type":15},"Documentation","documentation",{"name":1826,"slug":1819,"type":15},{"name":23,"slug":24,"type":15},"2026-05-16T06:07:47.821474",{"slug":1857,"name":1857,"fn":1858,"description":1859,"org":1860,"tags":1861,"stars":1746,"repoUrl":1747,"updatedAt":1867},"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},[1862,1863,1864,1865,1866],{"name":1602,"slug":1603,"type":15},{"name":1826,"slug":1819,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":1744,"slug":1745,"type":15},"2026-05-16T06:07:40.583615",{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":1872,"tags":1873,"stars":1746,"repoUrl":1747,"updatedAt":1882},"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},[1874,1877,1878,1881],{"name":1875,"slug":1876,"type":15},"Animation","animation",{"name":1779,"slug":1780,"type":15},{"name":1879,"slug":1880,"type":15},"Creative","creative",{"name":1602,"slug":1603,"type":15},"2026-05-02T05:31:48.48485",{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1887,"tags":1888,"stars":1746,"repoUrl":1747,"updatedAt":1898},"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},[1889,1890,1891,1894,1897],{"name":1879,"slug":1880,"type":15},{"name":1602,"slug":1603,"type":15},{"name":1892,"slug":1893,"type":15},"Image Generation","image-generation",{"name":1895,"slug":1896,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]