[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-magicpath":3,"mdc-myes35-key":36,"related-repo-openai-magicpath":1570,"related-org-openai-magicpath":1687},{"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},"magicpath","design and author UI components with MagicPath","Use when the user mentions MagicPath, designs, UI components, themes, canvas selections, or repo-to-canvas UI work; run magicpath-ai to search, inspect, install, or author components.",{"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},"Themes","themes","tag",{"name":17,"slug":18,"type":15},"UI Components","ui-components",{"name":20,"slug":21,"type":15},"Frontend","frontend",{"name":23,"slug":24,"type":15},"Design","design",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\u002Fmagicpath\u002Fskills\u002Fmagicpath","---\nname: magicpath\ndescription: Use when the user mentions MagicPath, designs, UI components, themes, canvas selections, or repo-to-canvas UI work; run magicpath-ai to search, inspect, install, or author components.\nallowed-tools: Bash(npx -y magicpath-ai *)\nuser-invocable: true\n---\n\n# MagicPath\n\nMagicPath is a canvas and component platform. Use this skill when the user mentions MagicPath, designs, UI components, themes\u002Fdesign systems, team projects, selected canvas items, or bringing local\u002Frepository UI into a MagicPath canvas.\n\nAlways run MagicPath CLI commands as:\n\n```bash\nnpx -y magicpath-ai \u003Ccommand> -o json\n```\n\nUse JSON output for data-returning commands and `-y` for non-interactive installs.\n\n## First Step\n\nRun:\n\n```bash\nnpx -y magicpath-ai info -o json\n```\n\nIf the user is not authenticated, run:\n\n```bash\nnpx -y magicpath-ai login\nnpx -y magicpath-ai whoami -o json\n```\n\n## Pick the Workflow\n\n- Find or install a MagicPath component: search\u002Flist, confirm the right component, inspect it, then add\u002Fadapt it.\n- Work with the current canvas: use `selection -o json` for selected components\u002Fimages, or `active-project -o json` for the open project.\n- Use team work: run `list-teams -o json`, then pass `--team \"\u003CnameOrId>\"` to project, search, theme, or member commands.\n- Use a theme\u002Fdesign system: `list-themes -o json`, then `get-theme \u003Cid-or-name> -o json`; apply CSS variables, fonts, and prompt guidance in the target app.\n- Create or edit canvas components from code: use `code start`, edit only allowed files, then `code submit --wait`.\n- Bring an existing repo UI into MagicPath: follow [Working with repositories](references\u002Fworking-with-repositories.md).\n- Keep a MagicPath project open inside Codex's Browser when doing canvas work: follow [Working with embedded browsers](references\u002Fworking-with-embedded-browsers.md).\n\n## Find and Confirm Components\n\n1. If the user refers to a selected design\u002Fcomponent\u002Fimage, run `selection -o json`.\n2. If the user refers to the project they have open, run `active-project -o json`.\n3. Otherwise search or browse:\n\n```bash\nnpx -y magicpath-ai search \"button\" -o json\nnpx -y magicpath-ai list-projects -o json\nnpx -y magicpath-ai list-components \u003CprojectId> -o json\n```\n\nSearch\u002Flist results include `generatedName`, project context, owner fields, and often `previewImageUrl`. Use previews when visual context matters.\n\nStop and ask for confirmation before installing or editing unless the user gave an exact `generatedName`, selected canvas item, or component\u002Fproject id.\n\n## Install Into an App\n\nUse this when MagicPath is the source and the user's app is the destination.\n\n1. Inspect first:\n\n```bash\nnpx -y magicpath-ai inspect \u003CgeneratedName> -o json\n```\n\n2. Read the target code before installing. Understand current props, callbacks, validation, layout, data flow, styling system, and accessibility behavior.\n3. For React\u002FTypeScript apps, install:\n\n```bash\nnpx -y magicpath-ai add \u003CgeneratedName> -y -o json\n```\n\n4. Import and render the installed component using the returned `importStatement` and `usage`.\n5. Adapt the installed source in `src\u002Fcomponents\u002Fmagicpath\u002F\u003Cname>\u002F`:\n   - Replace static text and mock data with props or real project data.\n   - Wire events, loading, error, empty, disabled, focus, and keyboard states.\n   - Make fixed dimensions responsive.\n   - Preserve existing behavior when replacing an existing component.\n   - Match the app's styling and state-management patterns.\n\nDo not run `add` just to read code. Use `inspect` for read-only source. For non-JS projects, inspect and translate the design into the target framework instead of running `add`.\n\n## Create or Edit Canvas Components\n\nUse this when the MagicPath canvas is the destination.\n\n```bash\nnpx -y magicpath-ai code start --project \u003CprojectId> --dir \u003Cworkdir> --name \"Component Name\" --width \u003Cpx> --height \u003Cpx> -o json\nnpx -y magicpath-ai code start --component \u003CcomponentId> --dir \u003Cworkdir> -o json\nnpx -y magicpath-ai code submit --dir \u003Cworkdir> --wait -o json\n```\n\nRules for `code` work:\n\n- Run `code start` before writing files so the canvas shows the pending work.\n- Edit only `src\u002FApp.tsx`, `src\u002Findex.css`, `src\u002Fcomponents\u002Fgenerated\u002F**`, and temporary image assets under `assets\u002F**`.\n- Usually leave `src\u002FApp.tsx` alone except for the theme value.\n- Put real implementation in `src\u002Fcomponents\u002Fgenerated\u002F\u003CName>.tsx`; split larger pieces into sibling files there.\n- Use Tailwind v4 through `src\u002Findex.css`; do not add `tailwind.config.js`.\n- Keep output responsive, centered, and free of device\u002Fbrowser mockups unless explicitly requested.\n- Build one screen per component. For related multi-view flows, use local React state inside one component; for independent screens, create separate components in separate workdirs.\n- Make interactive surfaces actually interactive: controlled inputs, real handlers, toggles, tabs, dialogs, form validation, hover\u002Ffocus\u002Fdisabled states, and useful transitions.\n- If selected canvas images are returned by `code start`, use the downloaded `assetPath`, not the short-lived `accessUrl`.\n- If `code submit` fails, fix only allowed files and resubmit.\n\n`code context` is read-only. Do not use it as the submit path.\n\n## Teams, People, and Ownership\n\n- `list-teams -o json`: discover teams\u002Fworkspaces.\n- `list-members --team \"\u003Cteam>\" -o json`: resolve people to user ids.\n- `list-projects --team \"\u003Cteam>\" -o json`: see team projects only.\n- `list-components \u003CprojectId> --created-by \u003CuserId> -o json`: find work by a person in a team project.\n\nPersonal projects are private to their owner unless shared. Do not search another person's personal work; search team projects instead.\n\n## Project and Share Links\n\nUse `share` when you need a URL without opening a browser:\n\n```bash\nnpx -y magicpath-ai share \u003CgeneratedName> -o json\nnpx -y magicpath-ai share \u003CprojectId> -o json\n```\n\nUse `view` only when intentionally opening the OS browser:\n\n```bash\nnpx -y magicpath-ai view \u003CgeneratedName>\nnpx -y magicpath-ai view \u003CprojectId>\n```\n\nNever run `view` commands in parallel.\n\n## References\n\n- [CLI reference](references\u002Fcli-reference.md)\n- [Working with repositories](references\u002Fworking-with-repositories.md)\n- [Working with embedded browsers](references\u002Fworking-with-embedded-browsers.md)\n",{"data":37,"body":40},{"name":4,"description":6,"allowed-tools":38,"user-invocable":39},"Bash(npx -y magicpath-ai *)",true,{"type":41,"children":42},"root",[43,51,57,62,129,142,149,154,189,194,250,256,375,381,412,536,557,569,575,580,588,641,654,709,774,801,807,812,1087,1099,1248,1259,1265,1311,1316,1322,1335,1429,1441,1520,1532,1538,1564],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":50},"text","MagicPath",{"type":44,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"MagicPath is a canvas and component platform. Use this skill when the user mentions MagicPath, designs, UI components, themes\u002Fdesign systems, team projects, selected canvas items, or bringing local\u002Frepository UI into a MagicPath canvas.",{"type":44,"tag":52,"props":58,"children":59},{},[60],{"type":49,"value":61},"Always run MagicPath CLI commands as:",{"type":44,"tag":63,"props":64,"children":69},"pre",{"className":65,"code":66,"language":67,"meta":68,"style":68},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx -y magicpath-ai \u003Ccommand> -o json\n","bash","",[70],{"type":44,"tag":71,"props":72,"children":73},"code",{"__ignoreMap":68},[74],{"type":44,"tag":75,"props":76,"children":79},"span",{"class":77,"line":78},"line",1,[80,86,92,97,103,108,114,119,124],{"type":44,"tag":75,"props":81,"children":83},{"style":82},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[84],{"type":49,"value":85},"npx",{"type":44,"tag":75,"props":87,"children":89},{"style":88},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[90],{"type":49,"value":91}," -y",{"type":44,"tag":75,"props":93,"children":94},{"style":88},[95],{"type":49,"value":96}," magicpath-ai",{"type":44,"tag":75,"props":98,"children":100},{"style":99},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[101],{"type":49,"value":102}," \u003C",{"type":44,"tag":75,"props":104,"children":105},{"style":88},[106],{"type":49,"value":107},"comman",{"type":44,"tag":75,"props":109,"children":111},{"style":110},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[112],{"type":49,"value":113},"d",{"type":44,"tag":75,"props":115,"children":116},{"style":99},[117],{"type":49,"value":118},">",{"type":44,"tag":75,"props":120,"children":121},{"style":88},[122],{"type":49,"value":123}," -o",{"type":44,"tag":75,"props":125,"children":126},{"style":88},[127],{"type":49,"value":128}," json\n",{"type":44,"tag":52,"props":130,"children":131},{},[132,134,140],{"type":49,"value":133},"Use JSON output for data-returning commands and ",{"type":44,"tag":71,"props":135,"children":137},{"className":136},[],[138],{"type":49,"value":139},"-y",{"type":49,"value":141}," for non-interactive installs.",{"type":44,"tag":143,"props":144,"children":146},"h2",{"id":145},"first-step",[147],{"type":49,"value":148},"First Step",{"type":44,"tag":52,"props":150,"children":151},{},[152],{"type":49,"value":153},"Run:",{"type":44,"tag":63,"props":155,"children":157},{"className":65,"code":156,"language":67,"meta":68,"style":68},"npx -y magicpath-ai info -o json\n",[158],{"type":44,"tag":71,"props":159,"children":160},{"__ignoreMap":68},[161],{"type":44,"tag":75,"props":162,"children":163},{"class":77,"line":78},[164,168,172,176,181,185],{"type":44,"tag":75,"props":165,"children":166},{"style":82},[167],{"type":49,"value":85},{"type":44,"tag":75,"props":169,"children":170},{"style":88},[171],{"type":49,"value":91},{"type":44,"tag":75,"props":173,"children":174},{"style":88},[175],{"type":49,"value":96},{"type":44,"tag":75,"props":177,"children":178},{"style":88},[179],{"type":49,"value":180}," info",{"type":44,"tag":75,"props":182,"children":183},{"style":88},[184],{"type":49,"value":123},{"type":44,"tag":75,"props":186,"children":187},{"style":88},[188],{"type":49,"value":128},{"type":44,"tag":52,"props":190,"children":191},{},[192],{"type":49,"value":193},"If the user is not authenticated, run:",{"type":44,"tag":63,"props":195,"children":197},{"className":65,"code":196,"language":67,"meta":68,"style":68},"npx -y magicpath-ai login\nnpx -y magicpath-ai whoami -o json\n",[198],{"type":44,"tag":71,"props":199,"children":200},{"__ignoreMap":68},[201,221],{"type":44,"tag":75,"props":202,"children":203},{"class":77,"line":78},[204,208,212,216],{"type":44,"tag":75,"props":205,"children":206},{"style":82},[207],{"type":49,"value":85},{"type":44,"tag":75,"props":209,"children":210},{"style":88},[211],{"type":49,"value":91},{"type":44,"tag":75,"props":213,"children":214},{"style":88},[215],{"type":49,"value":96},{"type":44,"tag":75,"props":217,"children":218},{"style":88},[219],{"type":49,"value":220}," login\n",{"type":44,"tag":75,"props":222,"children":224},{"class":77,"line":223},2,[225,229,233,237,242,246],{"type":44,"tag":75,"props":226,"children":227},{"style":82},[228],{"type":49,"value":85},{"type":44,"tag":75,"props":230,"children":231},{"style":88},[232],{"type":49,"value":91},{"type":44,"tag":75,"props":234,"children":235},{"style":88},[236],{"type":49,"value":96},{"type":44,"tag":75,"props":238,"children":239},{"style":88},[240],{"type":49,"value":241}," whoami",{"type":44,"tag":75,"props":243,"children":244},{"style":88},[245],{"type":49,"value":123},{"type":44,"tag":75,"props":247,"children":248},{"style":88},[249],{"type":49,"value":128},{"type":44,"tag":143,"props":251,"children":253},{"id":252},"pick-the-workflow",[254],{"type":49,"value":255},"Pick the Workflow",{"type":44,"tag":257,"props":258,"children":259},"ul",{},[260,266,287,308,329,350,363],{"type":44,"tag":261,"props":262,"children":263},"li",{},[264],{"type":49,"value":265},"Find or install a MagicPath component: search\u002Flist, confirm the right component, inspect it, then add\u002Fadapt it.",{"type":44,"tag":261,"props":267,"children":268},{},[269,271,277,279,285],{"type":49,"value":270},"Work with the current canvas: use ",{"type":44,"tag":71,"props":272,"children":274},{"className":273},[],[275],{"type":49,"value":276},"selection -o json",{"type":49,"value":278}," for selected components\u002Fimages, or ",{"type":44,"tag":71,"props":280,"children":282},{"className":281},[],[283],{"type":49,"value":284},"active-project -o json",{"type":49,"value":286}," for the open project.",{"type":44,"tag":261,"props":288,"children":289},{},[290,292,298,300,306],{"type":49,"value":291},"Use team work: run ",{"type":44,"tag":71,"props":293,"children":295},{"className":294},[],[296],{"type":49,"value":297},"list-teams -o json",{"type":49,"value":299},", then pass ",{"type":44,"tag":71,"props":301,"children":303},{"className":302},[],[304],{"type":49,"value":305},"--team \"\u003CnameOrId>\"",{"type":49,"value":307}," to project, search, theme, or member commands.",{"type":44,"tag":261,"props":309,"children":310},{},[311,313,319,321,327],{"type":49,"value":312},"Use a theme\u002Fdesign system: ",{"type":44,"tag":71,"props":314,"children":316},{"className":315},[],[317],{"type":49,"value":318},"list-themes -o json",{"type":49,"value":320},", then ",{"type":44,"tag":71,"props":322,"children":324},{"className":323},[],[325],{"type":49,"value":326},"get-theme \u003Cid-or-name> -o json",{"type":49,"value":328},"; apply CSS variables, fonts, and prompt guidance in the target app.",{"type":44,"tag":261,"props":330,"children":331},{},[332,334,340,342,348],{"type":49,"value":333},"Create or edit canvas components from code: use ",{"type":44,"tag":71,"props":335,"children":337},{"className":336},[],[338],{"type":49,"value":339},"code start",{"type":49,"value":341},", edit only allowed files, then ",{"type":44,"tag":71,"props":343,"children":345},{"className":344},[],[346],{"type":49,"value":347},"code submit --wait",{"type":49,"value":349},".",{"type":44,"tag":261,"props":351,"children":352},{},[353,355,362],{"type":49,"value":354},"Bring an existing repo UI into MagicPath: follow ",{"type":44,"tag":356,"props":357,"children":359},"a",{"href":358},"references\u002Fworking-with-repositories.md",[360],{"type":49,"value":361},"Working with repositories",{"type":49,"value":349},{"type":44,"tag":261,"props":364,"children":365},{},[366,368,374],{"type":49,"value":367},"Keep a MagicPath project open inside Codex's Browser when doing canvas work: follow ",{"type":44,"tag":356,"props":369,"children":371},{"href":370},"references\u002Fworking-with-embedded-browsers.md",[372],{"type":49,"value":373},"Working with embedded browsers",{"type":49,"value":349},{"type":44,"tag":143,"props":376,"children":378},{"id":377},"find-and-confirm-components",[379],{"type":49,"value":380},"Find and Confirm Components",{"type":44,"tag":382,"props":383,"children":384},"ol",{},[385,396,407],{"type":44,"tag":261,"props":386,"children":387},{},[388,390,395],{"type":49,"value":389},"If the user refers to a selected design\u002Fcomponent\u002Fimage, run ",{"type":44,"tag":71,"props":391,"children":393},{"className":392},[],[394],{"type":49,"value":276},{"type":49,"value":349},{"type":44,"tag":261,"props":397,"children":398},{},[399,401,406],{"type":49,"value":400},"If the user refers to the project they have open, run ",{"type":44,"tag":71,"props":402,"children":404},{"className":403},[],[405],{"type":49,"value":284},{"type":49,"value":349},{"type":44,"tag":261,"props":408,"children":409},{},[410],{"type":49,"value":411},"Otherwise search or browse:",{"type":44,"tag":63,"props":413,"children":415},{"className":65,"code":414,"language":67,"meta":68,"style":68},"npx -y magicpath-ai search \"button\" -o json\nnpx -y magicpath-ai list-projects -o json\nnpx -y magicpath-ai list-components \u003CprojectId> -o json\n",[416],{"type":44,"tag":71,"props":417,"children":418},{"__ignoreMap":68},[419,462,490],{"type":44,"tag":75,"props":420,"children":421},{"class":77,"line":78},[422,426,430,434,439,444,449,454,458],{"type":44,"tag":75,"props":423,"children":424},{"style":82},[425],{"type":49,"value":85},{"type":44,"tag":75,"props":427,"children":428},{"style":88},[429],{"type":49,"value":91},{"type":44,"tag":75,"props":431,"children":432},{"style":88},[433],{"type":49,"value":96},{"type":44,"tag":75,"props":435,"children":436},{"style":88},[437],{"type":49,"value":438}," search",{"type":44,"tag":75,"props":440,"children":441},{"style":99},[442],{"type":49,"value":443}," \"",{"type":44,"tag":75,"props":445,"children":446},{"style":88},[447],{"type":49,"value":448},"button",{"type":44,"tag":75,"props":450,"children":451},{"style":99},[452],{"type":49,"value":453},"\"",{"type":44,"tag":75,"props":455,"children":456},{"style":88},[457],{"type":49,"value":123},{"type":44,"tag":75,"props":459,"children":460},{"style":88},[461],{"type":49,"value":128},{"type":44,"tag":75,"props":463,"children":464},{"class":77,"line":223},[465,469,473,477,482,486],{"type":44,"tag":75,"props":466,"children":467},{"style":82},[468],{"type":49,"value":85},{"type":44,"tag":75,"props":470,"children":471},{"style":88},[472],{"type":49,"value":91},{"type":44,"tag":75,"props":474,"children":475},{"style":88},[476],{"type":49,"value":96},{"type":44,"tag":75,"props":478,"children":479},{"style":88},[480],{"type":49,"value":481}," list-projects",{"type":44,"tag":75,"props":483,"children":484},{"style":88},[485],{"type":49,"value":123},{"type":44,"tag":75,"props":487,"children":488},{"style":88},[489],{"type":49,"value":128},{"type":44,"tag":75,"props":491,"children":493},{"class":77,"line":492},3,[494,498,502,506,511,515,520,524,528,532],{"type":44,"tag":75,"props":495,"children":496},{"style":82},[497],{"type":49,"value":85},{"type":44,"tag":75,"props":499,"children":500},{"style":88},[501],{"type":49,"value":91},{"type":44,"tag":75,"props":503,"children":504},{"style":88},[505],{"type":49,"value":96},{"type":44,"tag":75,"props":507,"children":508},{"style":88},[509],{"type":49,"value":510}," list-components",{"type":44,"tag":75,"props":512,"children":513},{"style":99},[514],{"type":49,"value":102},{"type":44,"tag":75,"props":516,"children":517},{"style":88},[518],{"type":49,"value":519},"projectI",{"type":44,"tag":75,"props":521,"children":522},{"style":110},[523],{"type":49,"value":113},{"type":44,"tag":75,"props":525,"children":526},{"style":99},[527],{"type":49,"value":118},{"type":44,"tag":75,"props":529,"children":530},{"style":88},[531],{"type":49,"value":123},{"type":44,"tag":75,"props":533,"children":534},{"style":88},[535],{"type":49,"value":128},{"type":44,"tag":52,"props":537,"children":538},{},[539,541,547,549,555],{"type":49,"value":540},"Search\u002Flist results include ",{"type":44,"tag":71,"props":542,"children":544},{"className":543},[],[545],{"type":49,"value":546},"generatedName",{"type":49,"value":548},", project context, owner fields, and often ",{"type":44,"tag":71,"props":550,"children":552},{"className":551},[],[553],{"type":49,"value":554},"previewImageUrl",{"type":49,"value":556},". Use previews when visual context matters.",{"type":44,"tag":52,"props":558,"children":559},{},[560,562,567],{"type":49,"value":561},"Stop and ask for confirmation before installing or editing unless the user gave an exact ",{"type":44,"tag":71,"props":563,"children":565},{"className":564},[],[566],{"type":49,"value":546},{"type":49,"value":568},", selected canvas item, or component\u002Fproject id.",{"type":44,"tag":143,"props":570,"children":572},{"id":571},"install-into-an-app",[573],{"type":49,"value":574},"Install Into an App",{"type":44,"tag":52,"props":576,"children":577},{},[578],{"type":49,"value":579},"Use this when MagicPath is the source and the user's app is the destination.",{"type":44,"tag":382,"props":581,"children":582},{},[583],{"type":44,"tag":261,"props":584,"children":585},{},[586],{"type":49,"value":587},"Inspect first:",{"type":44,"tag":63,"props":589,"children":591},{"className":65,"code":590,"language":67,"meta":68,"style":68},"npx -y magicpath-ai inspect \u003CgeneratedName> -o json\n",[592],{"type":44,"tag":71,"props":593,"children":594},{"__ignoreMap":68},[595],{"type":44,"tag":75,"props":596,"children":597},{"class":77,"line":78},[598,602,606,610,615,619,624,629,633,637],{"type":44,"tag":75,"props":599,"children":600},{"style":82},[601],{"type":49,"value":85},{"type":44,"tag":75,"props":603,"children":604},{"style":88},[605],{"type":49,"value":91},{"type":44,"tag":75,"props":607,"children":608},{"style":88},[609],{"type":49,"value":96},{"type":44,"tag":75,"props":611,"children":612},{"style":88},[613],{"type":49,"value":614}," inspect",{"type":44,"tag":75,"props":616,"children":617},{"style":99},[618],{"type":49,"value":102},{"type":44,"tag":75,"props":620,"children":621},{"style":88},[622],{"type":49,"value":623},"generatedNam",{"type":44,"tag":75,"props":625,"children":626},{"style":110},[627],{"type":49,"value":628},"e",{"type":44,"tag":75,"props":630,"children":631},{"style":99},[632],{"type":49,"value":118},{"type":44,"tag":75,"props":634,"children":635},{"style":88},[636],{"type":49,"value":123},{"type":44,"tag":75,"props":638,"children":639},{"style":88},[640],{"type":49,"value":128},{"type":44,"tag":382,"props":642,"children":643},{"start":223},[644,649],{"type":44,"tag":261,"props":645,"children":646},{},[647],{"type":49,"value":648},"Read the target code before installing. Understand current props, callbacks, validation, layout, data flow, styling system, and accessibility behavior.",{"type":44,"tag":261,"props":650,"children":651},{},[652],{"type":49,"value":653},"For React\u002FTypeScript apps, install:",{"type":44,"tag":63,"props":655,"children":657},{"className":65,"code":656,"language":67,"meta":68,"style":68},"npx -y magicpath-ai add \u003CgeneratedName> -y -o json\n",[658],{"type":44,"tag":71,"props":659,"children":660},{"__ignoreMap":68},[661],{"type":44,"tag":75,"props":662,"children":663},{"class":77,"line":78},[664,668,672,676,681,685,689,693,697,701,705],{"type":44,"tag":75,"props":665,"children":666},{"style":82},[667],{"type":49,"value":85},{"type":44,"tag":75,"props":669,"children":670},{"style":88},[671],{"type":49,"value":91},{"type":44,"tag":75,"props":673,"children":674},{"style":88},[675],{"type":49,"value":96},{"type":44,"tag":75,"props":677,"children":678},{"style":88},[679],{"type":49,"value":680}," add",{"type":44,"tag":75,"props":682,"children":683},{"style":99},[684],{"type":49,"value":102},{"type":44,"tag":75,"props":686,"children":687},{"style":88},[688],{"type":49,"value":623},{"type":44,"tag":75,"props":690,"children":691},{"style":110},[692],{"type":49,"value":628},{"type":44,"tag":75,"props":694,"children":695},{"style":99},[696],{"type":49,"value":118},{"type":44,"tag":75,"props":698,"children":699},{"style":88},[700],{"type":49,"value":91},{"type":44,"tag":75,"props":702,"children":703},{"style":88},[704],{"type":49,"value":123},{"type":44,"tag":75,"props":706,"children":707},{"style":88},[708],{"type":49,"value":128},{"type":44,"tag":382,"props":710,"children":712},{"start":711},4,[713,733],{"type":44,"tag":261,"props":714,"children":715},{},[716,718,724,726,732],{"type":49,"value":717},"Import and render the installed component using the returned ",{"type":44,"tag":71,"props":719,"children":721},{"className":720},[],[722],{"type":49,"value":723},"importStatement",{"type":49,"value":725}," and ",{"type":44,"tag":71,"props":727,"children":729},{"className":728},[],[730],{"type":49,"value":731},"usage",{"type":49,"value":349},{"type":44,"tag":261,"props":734,"children":735},{},[736,738,744,746],{"type":49,"value":737},"Adapt the installed source in ",{"type":44,"tag":71,"props":739,"children":741},{"className":740},[],[742],{"type":49,"value":743},"src\u002Fcomponents\u002Fmagicpath\u002F\u003Cname>\u002F",{"type":49,"value":745},":\n",{"type":44,"tag":257,"props":747,"children":748},{},[749,754,759,764,769],{"type":44,"tag":261,"props":750,"children":751},{},[752],{"type":49,"value":753},"Replace static text and mock data with props or real project data.",{"type":44,"tag":261,"props":755,"children":756},{},[757],{"type":49,"value":758},"Wire events, loading, error, empty, disabled, focus, and keyboard states.",{"type":44,"tag":261,"props":760,"children":761},{},[762],{"type":49,"value":763},"Make fixed dimensions responsive.",{"type":44,"tag":261,"props":765,"children":766},{},[767],{"type":49,"value":768},"Preserve existing behavior when replacing an existing component.",{"type":44,"tag":261,"props":770,"children":771},{},[772],{"type":49,"value":773},"Match the app's styling and state-management patterns.",{"type":44,"tag":52,"props":775,"children":776},{},[777,779,785,787,793,795,800],{"type":49,"value":778},"Do not run ",{"type":44,"tag":71,"props":780,"children":782},{"className":781},[],[783],{"type":49,"value":784},"add",{"type":49,"value":786}," just to read code. Use ",{"type":44,"tag":71,"props":788,"children":790},{"className":789},[],[791],{"type":49,"value":792},"inspect",{"type":49,"value":794}," for read-only source. For non-JS projects, inspect and translate the design into the target framework instead of running ",{"type":44,"tag":71,"props":796,"children":798},{"className":797},[],[799],{"type":49,"value":784},{"type":49,"value":349},{"type":44,"tag":143,"props":802,"children":804},{"id":803},"create-or-edit-canvas-components",[805],{"type":49,"value":806},"Create or Edit Canvas Components",{"type":44,"tag":52,"props":808,"children":809},{},[810],{"type":49,"value":811},"Use this when the MagicPath canvas is the destination.",{"type":44,"tag":63,"props":813,"children":815},{"className":65,"code":814,"language":67,"meta":68,"style":68},"npx -y magicpath-ai code start --project \u003CprojectId> --dir \u003Cworkdir> --name \"Component Name\" --width \u003Cpx> --height \u003Cpx> -o json\nnpx -y magicpath-ai code start --component \u003CcomponentId> --dir \u003Cworkdir> -o json\nnpx -y magicpath-ai code submit --dir \u003Cworkdir> --wait -o json\n",[816],{"type":44,"tag":71,"props":817,"children":818},{"__ignoreMap":68},[819,957,1030],{"type":44,"tag":75,"props":820,"children":821},{"class":77,"line":78},[822,826,830,834,839,844,849,853,857,861,865,870,874,879,884,888,893,897,902,906,911,915,919,924,928,933,937,941,945,949,953],{"type":44,"tag":75,"props":823,"children":824},{"style":82},[825],{"type":49,"value":85},{"type":44,"tag":75,"props":827,"children":828},{"style":88},[829],{"type":49,"value":91},{"type":44,"tag":75,"props":831,"children":832},{"style":88},[833],{"type":49,"value":96},{"type":44,"tag":75,"props":835,"children":836},{"style":88},[837],{"type":49,"value":838}," code",{"type":44,"tag":75,"props":840,"children":841},{"style":88},[842],{"type":49,"value":843}," start",{"type":44,"tag":75,"props":845,"children":846},{"style":88},[847],{"type":49,"value":848}," --project",{"type":44,"tag":75,"props":850,"children":851},{"style":99},[852],{"type":49,"value":102},{"type":44,"tag":75,"props":854,"children":855},{"style":88},[856],{"type":49,"value":519},{"type":44,"tag":75,"props":858,"children":859},{"style":110},[860],{"type":49,"value":113},{"type":44,"tag":75,"props":862,"children":863},{"style":99},[864],{"type":49,"value":118},{"type":44,"tag":75,"props":866,"children":867},{"style":88},[868],{"type":49,"value":869}," --dir",{"type":44,"tag":75,"props":871,"children":872},{"style":99},[873],{"type":49,"value":102},{"type":44,"tag":75,"props":875,"children":876},{"style":88},[877],{"type":49,"value":878},"workdi",{"type":44,"tag":75,"props":880,"children":881},{"style":110},[882],{"type":49,"value":883},"r",{"type":44,"tag":75,"props":885,"children":886},{"style":99},[887],{"type":49,"value":118},{"type":44,"tag":75,"props":889,"children":890},{"style":88},[891],{"type":49,"value":892}," --name",{"type":44,"tag":75,"props":894,"children":895},{"style":99},[896],{"type":49,"value":443},{"type":44,"tag":75,"props":898,"children":899},{"style":88},[900],{"type":49,"value":901},"Component Name",{"type":44,"tag":75,"props":903,"children":904},{"style":99},[905],{"type":49,"value":453},{"type":44,"tag":75,"props":907,"children":908},{"style":88},[909],{"type":49,"value":910}," --width",{"type":44,"tag":75,"props":912,"children":913},{"style":99},[914],{"type":49,"value":102},{"type":44,"tag":75,"props":916,"children":917},{"style":88},[918],{"type":49,"value":52},{"type":44,"tag":75,"props":920,"children":921},{"style":110},[922],{"type":49,"value":923},"x",{"type":44,"tag":75,"props":925,"children":926},{"style":99},[927],{"type":49,"value":118},{"type":44,"tag":75,"props":929,"children":930},{"style":88},[931],{"type":49,"value":932}," --height",{"type":44,"tag":75,"props":934,"children":935},{"style":99},[936],{"type":49,"value":102},{"type":44,"tag":75,"props":938,"children":939},{"style":88},[940],{"type":49,"value":52},{"type":44,"tag":75,"props":942,"children":943},{"style":110},[944],{"type":49,"value":923},{"type":44,"tag":75,"props":946,"children":947},{"style":99},[948],{"type":49,"value":118},{"type":44,"tag":75,"props":950,"children":951},{"style":88},[952],{"type":49,"value":123},{"type":44,"tag":75,"props":954,"children":955},{"style":88},[956],{"type":49,"value":128},{"type":44,"tag":75,"props":958,"children":959},{"class":77,"line":223},[960,964,968,972,976,980,985,989,994,998,1002,1006,1010,1014,1018,1022,1026],{"type":44,"tag":75,"props":961,"children":962},{"style":82},[963],{"type":49,"value":85},{"type":44,"tag":75,"props":965,"children":966},{"style":88},[967],{"type":49,"value":91},{"type":44,"tag":75,"props":969,"children":970},{"style":88},[971],{"type":49,"value":96},{"type":44,"tag":75,"props":973,"children":974},{"style":88},[975],{"type":49,"value":838},{"type":44,"tag":75,"props":977,"children":978},{"style":88},[979],{"type":49,"value":843},{"type":44,"tag":75,"props":981,"children":982},{"style":88},[983],{"type":49,"value":984}," --component",{"type":44,"tag":75,"props":986,"children":987},{"style":99},[988],{"type":49,"value":102},{"type":44,"tag":75,"props":990,"children":991},{"style":88},[992],{"type":49,"value":993},"componentI",{"type":44,"tag":75,"props":995,"children":996},{"style":110},[997],{"type":49,"value":113},{"type":44,"tag":75,"props":999,"children":1000},{"style":99},[1001],{"type":49,"value":118},{"type":44,"tag":75,"props":1003,"children":1004},{"style":88},[1005],{"type":49,"value":869},{"type":44,"tag":75,"props":1007,"children":1008},{"style":99},[1009],{"type":49,"value":102},{"type":44,"tag":75,"props":1011,"children":1012},{"style":88},[1013],{"type":49,"value":878},{"type":44,"tag":75,"props":1015,"children":1016},{"style":110},[1017],{"type":49,"value":883},{"type":44,"tag":75,"props":1019,"children":1020},{"style":99},[1021],{"type":49,"value":118},{"type":44,"tag":75,"props":1023,"children":1024},{"style":88},[1025],{"type":49,"value":123},{"type":44,"tag":75,"props":1027,"children":1028},{"style":88},[1029],{"type":49,"value":128},{"type":44,"tag":75,"props":1031,"children":1032},{"class":77,"line":492},[1033,1037,1041,1045,1049,1054,1058,1062,1066,1070,1074,1079,1083],{"type":44,"tag":75,"props":1034,"children":1035},{"style":82},[1036],{"type":49,"value":85},{"type":44,"tag":75,"props":1038,"children":1039},{"style":88},[1040],{"type":49,"value":91},{"type":44,"tag":75,"props":1042,"children":1043},{"style":88},[1044],{"type":49,"value":96},{"type":44,"tag":75,"props":1046,"children":1047},{"style":88},[1048],{"type":49,"value":838},{"type":44,"tag":75,"props":1050,"children":1051},{"style":88},[1052],{"type":49,"value":1053}," submit",{"type":44,"tag":75,"props":1055,"children":1056},{"style":88},[1057],{"type":49,"value":869},{"type":44,"tag":75,"props":1059,"children":1060},{"style":99},[1061],{"type":49,"value":102},{"type":44,"tag":75,"props":1063,"children":1064},{"style":88},[1065],{"type":49,"value":878},{"type":44,"tag":75,"props":1067,"children":1068},{"style":110},[1069],{"type":49,"value":883},{"type":44,"tag":75,"props":1071,"children":1072},{"style":99},[1073],{"type":49,"value":118},{"type":44,"tag":75,"props":1075,"children":1076},{"style":88},[1077],{"type":49,"value":1078}," --wait",{"type":44,"tag":75,"props":1080,"children":1081},{"style":88},[1082],{"type":49,"value":123},{"type":44,"tag":75,"props":1084,"children":1085},{"style":88},[1086],{"type":49,"value":128},{"type":44,"tag":52,"props":1088,"children":1089},{},[1090,1092,1097],{"type":49,"value":1091},"Rules for ",{"type":44,"tag":71,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":49,"value":71},{"type":49,"value":1098}," work:",{"type":44,"tag":257,"props":1100,"children":1101},{},[1102,1114,1149,1161,1174,1193,1198,1203,1208,1235],{"type":44,"tag":261,"props":1103,"children":1104},{},[1105,1107,1112],{"type":49,"value":1106},"Run ",{"type":44,"tag":71,"props":1108,"children":1110},{"className":1109},[],[1111],{"type":49,"value":339},{"type":49,"value":1113}," before writing files so the canvas shows the pending work.",{"type":44,"tag":261,"props":1115,"children":1116},{},[1117,1119,1125,1127,1133,1134,1140,1142,1148],{"type":49,"value":1118},"Edit only ",{"type":44,"tag":71,"props":1120,"children":1122},{"className":1121},[],[1123],{"type":49,"value":1124},"src\u002FApp.tsx",{"type":49,"value":1126},", ",{"type":44,"tag":71,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":49,"value":1132},"src\u002Findex.css",{"type":49,"value":1126},{"type":44,"tag":71,"props":1135,"children":1137},{"className":1136},[],[1138],{"type":49,"value":1139},"src\u002Fcomponents\u002Fgenerated\u002F**",{"type":49,"value":1141},", and temporary image assets under ",{"type":44,"tag":71,"props":1143,"children":1145},{"className":1144},[],[1146],{"type":49,"value":1147},"assets\u002F**",{"type":49,"value":349},{"type":44,"tag":261,"props":1150,"children":1151},{},[1152,1154,1159],{"type":49,"value":1153},"Usually leave ",{"type":44,"tag":71,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":49,"value":1124},{"type":49,"value":1160}," alone except for the theme value.",{"type":44,"tag":261,"props":1162,"children":1163},{},[1164,1166,1172],{"type":49,"value":1165},"Put real implementation in ",{"type":44,"tag":71,"props":1167,"children":1169},{"className":1168},[],[1170],{"type":49,"value":1171},"src\u002Fcomponents\u002Fgenerated\u002F\u003CName>.tsx",{"type":49,"value":1173},"; split larger pieces into sibling files there.",{"type":44,"tag":261,"props":1175,"children":1176},{},[1177,1179,1184,1186,1192],{"type":49,"value":1178},"Use Tailwind v4 through ",{"type":44,"tag":71,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":49,"value":1132},{"type":49,"value":1185},"; do not add ",{"type":44,"tag":71,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":49,"value":1191},"tailwind.config.js",{"type":49,"value":349},{"type":44,"tag":261,"props":1194,"children":1195},{},[1196],{"type":49,"value":1197},"Keep output responsive, centered, and free of device\u002Fbrowser mockups unless explicitly requested.",{"type":44,"tag":261,"props":1199,"children":1200},{},[1201],{"type":49,"value":1202},"Build one screen per component. For related multi-view flows, use local React state inside one component; for independent screens, create separate components in separate workdirs.",{"type":44,"tag":261,"props":1204,"children":1205},{},[1206],{"type":49,"value":1207},"Make interactive surfaces actually interactive: controlled inputs, real handlers, toggles, tabs, dialogs, form validation, hover\u002Ffocus\u002Fdisabled states, and useful transitions.",{"type":44,"tag":261,"props":1209,"children":1210},{},[1211,1213,1218,1220,1226,1228,1234],{"type":49,"value":1212},"If selected canvas images are returned by ",{"type":44,"tag":71,"props":1214,"children":1216},{"className":1215},[],[1217],{"type":49,"value":339},{"type":49,"value":1219},", use the downloaded ",{"type":44,"tag":71,"props":1221,"children":1223},{"className":1222},[],[1224],{"type":49,"value":1225},"assetPath",{"type":49,"value":1227},", not the short-lived ",{"type":44,"tag":71,"props":1229,"children":1231},{"className":1230},[],[1232],{"type":49,"value":1233},"accessUrl",{"type":49,"value":349},{"type":44,"tag":261,"props":1236,"children":1237},{},[1238,1240,1246],{"type":49,"value":1239},"If ",{"type":44,"tag":71,"props":1241,"children":1243},{"className":1242},[],[1244],{"type":49,"value":1245},"code submit",{"type":49,"value":1247}," fails, fix only allowed files and resubmit.",{"type":44,"tag":52,"props":1249,"children":1250},{},[1251,1257],{"type":44,"tag":71,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":49,"value":1256},"code context",{"type":49,"value":1258}," is read-only. Do not use it as the submit path.",{"type":44,"tag":143,"props":1260,"children":1262},{"id":1261},"teams-people-and-ownership",[1263],{"type":49,"value":1264},"Teams, People, and Ownership",{"type":44,"tag":257,"props":1266,"children":1267},{},[1268,1278,1289,1300],{"type":44,"tag":261,"props":1269,"children":1270},{},[1271,1276],{"type":44,"tag":71,"props":1272,"children":1274},{"className":1273},[],[1275],{"type":49,"value":297},{"type":49,"value":1277},": discover teams\u002Fworkspaces.",{"type":44,"tag":261,"props":1279,"children":1280},{},[1281,1287],{"type":44,"tag":71,"props":1282,"children":1284},{"className":1283},[],[1285],{"type":49,"value":1286},"list-members --team \"\u003Cteam>\" -o json",{"type":49,"value":1288},": resolve people to user ids.",{"type":44,"tag":261,"props":1290,"children":1291},{},[1292,1298],{"type":44,"tag":71,"props":1293,"children":1295},{"className":1294},[],[1296],{"type":49,"value":1297},"list-projects --team \"\u003Cteam>\" -o json",{"type":49,"value":1299},": see team projects only.",{"type":44,"tag":261,"props":1301,"children":1302},{},[1303,1309],{"type":44,"tag":71,"props":1304,"children":1306},{"className":1305},[],[1307],{"type":49,"value":1308},"list-components \u003CprojectId> --created-by \u003CuserId> -o json",{"type":49,"value":1310},": find work by a person in a team project.",{"type":44,"tag":52,"props":1312,"children":1313},{},[1314],{"type":49,"value":1315},"Personal projects are private to their owner unless shared. Do not search another person's personal work; search team projects instead.",{"type":44,"tag":143,"props":1317,"children":1319},{"id":1318},"project-and-share-links",[1320],{"type":49,"value":1321},"Project and Share Links",{"type":44,"tag":52,"props":1323,"children":1324},{},[1325,1327,1333],{"type":49,"value":1326},"Use ",{"type":44,"tag":71,"props":1328,"children":1330},{"className":1329},[],[1331],{"type":49,"value":1332},"share",{"type":49,"value":1334}," when you need a URL without opening a browser:",{"type":44,"tag":63,"props":1336,"children":1338},{"className":65,"code":1337,"language":67,"meta":68,"style":68},"npx -y magicpath-ai share \u003CgeneratedName> -o json\nnpx -y magicpath-ai share \u003CprojectId> -o json\n",[1339],{"type":44,"tag":71,"props":1340,"children":1341},{"__ignoreMap":68},[1342,1386],{"type":44,"tag":75,"props":1343,"children":1344},{"class":77,"line":78},[1345,1349,1353,1357,1362,1366,1370,1374,1378,1382],{"type":44,"tag":75,"props":1346,"children":1347},{"style":82},[1348],{"type":49,"value":85},{"type":44,"tag":75,"props":1350,"children":1351},{"style":88},[1352],{"type":49,"value":91},{"type":44,"tag":75,"props":1354,"children":1355},{"style":88},[1356],{"type":49,"value":96},{"type":44,"tag":75,"props":1358,"children":1359},{"style":88},[1360],{"type":49,"value":1361}," share",{"type":44,"tag":75,"props":1363,"children":1364},{"style":99},[1365],{"type":49,"value":102},{"type":44,"tag":75,"props":1367,"children":1368},{"style":88},[1369],{"type":49,"value":623},{"type":44,"tag":75,"props":1371,"children":1372},{"style":110},[1373],{"type":49,"value":628},{"type":44,"tag":75,"props":1375,"children":1376},{"style":99},[1377],{"type":49,"value":118},{"type":44,"tag":75,"props":1379,"children":1380},{"style":88},[1381],{"type":49,"value":123},{"type":44,"tag":75,"props":1383,"children":1384},{"style":88},[1385],{"type":49,"value":128},{"type":44,"tag":75,"props":1387,"children":1388},{"class":77,"line":223},[1389,1393,1397,1401,1405,1409,1413,1417,1421,1425],{"type":44,"tag":75,"props":1390,"children":1391},{"style":82},[1392],{"type":49,"value":85},{"type":44,"tag":75,"props":1394,"children":1395},{"style":88},[1396],{"type":49,"value":91},{"type":44,"tag":75,"props":1398,"children":1399},{"style":88},[1400],{"type":49,"value":96},{"type":44,"tag":75,"props":1402,"children":1403},{"style":88},[1404],{"type":49,"value":1361},{"type":44,"tag":75,"props":1406,"children":1407},{"style":99},[1408],{"type":49,"value":102},{"type":44,"tag":75,"props":1410,"children":1411},{"style":88},[1412],{"type":49,"value":519},{"type":44,"tag":75,"props":1414,"children":1415},{"style":110},[1416],{"type":49,"value":113},{"type":44,"tag":75,"props":1418,"children":1419},{"style":99},[1420],{"type":49,"value":118},{"type":44,"tag":75,"props":1422,"children":1423},{"style":88},[1424],{"type":49,"value":123},{"type":44,"tag":75,"props":1426,"children":1427},{"style":88},[1428],{"type":49,"value":128},{"type":44,"tag":52,"props":1430,"children":1431},{},[1432,1433,1439],{"type":49,"value":1326},{"type":44,"tag":71,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":49,"value":1438},"view",{"type":49,"value":1440}," only when intentionally opening the OS browser:",{"type":44,"tag":63,"props":1442,"children":1444},{"className":65,"code":1443,"language":67,"meta":68,"style":68},"npx -y magicpath-ai view \u003CgeneratedName>\nnpx -y magicpath-ai view \u003CprojectId>\n",[1445],{"type":44,"tag":71,"props":1446,"children":1447},{"__ignoreMap":68},[1448,1485],{"type":44,"tag":75,"props":1449,"children":1450},{"class":77,"line":78},[1451,1455,1459,1463,1468,1472,1476,1480],{"type":44,"tag":75,"props":1452,"children":1453},{"style":82},[1454],{"type":49,"value":85},{"type":44,"tag":75,"props":1456,"children":1457},{"style":88},[1458],{"type":49,"value":91},{"type":44,"tag":75,"props":1460,"children":1461},{"style":88},[1462],{"type":49,"value":96},{"type":44,"tag":75,"props":1464,"children":1465},{"style":88},[1466],{"type":49,"value":1467}," view",{"type":44,"tag":75,"props":1469,"children":1470},{"style":99},[1471],{"type":49,"value":102},{"type":44,"tag":75,"props":1473,"children":1474},{"style":88},[1475],{"type":49,"value":623},{"type":44,"tag":75,"props":1477,"children":1478},{"style":110},[1479],{"type":49,"value":628},{"type":44,"tag":75,"props":1481,"children":1482},{"style":99},[1483],{"type":49,"value":1484},">\n",{"type":44,"tag":75,"props":1486,"children":1487},{"class":77,"line":223},[1488,1492,1496,1500,1504,1508,1512,1516],{"type":44,"tag":75,"props":1489,"children":1490},{"style":82},[1491],{"type":49,"value":85},{"type":44,"tag":75,"props":1493,"children":1494},{"style":88},[1495],{"type":49,"value":91},{"type":44,"tag":75,"props":1497,"children":1498},{"style":88},[1499],{"type":49,"value":96},{"type":44,"tag":75,"props":1501,"children":1502},{"style":88},[1503],{"type":49,"value":1467},{"type":44,"tag":75,"props":1505,"children":1506},{"style":99},[1507],{"type":49,"value":102},{"type":44,"tag":75,"props":1509,"children":1510},{"style":88},[1511],{"type":49,"value":519},{"type":44,"tag":75,"props":1513,"children":1514},{"style":110},[1515],{"type":49,"value":113},{"type":44,"tag":75,"props":1517,"children":1518},{"style":99},[1519],{"type":49,"value":1484},{"type":44,"tag":52,"props":1521,"children":1522},{},[1523,1525,1530],{"type":49,"value":1524},"Never run ",{"type":44,"tag":71,"props":1526,"children":1528},{"className":1527},[],[1529],{"type":49,"value":1438},{"type":49,"value":1531}," commands in parallel.",{"type":44,"tag":143,"props":1533,"children":1535},{"id":1534},"references",[1536],{"type":49,"value":1537},"References",{"type":44,"tag":257,"props":1539,"children":1540},{},[1541,1550,1557],{"type":44,"tag":261,"props":1542,"children":1543},{},[1544],{"type":44,"tag":356,"props":1545,"children":1547},{"href":1546},"references\u002Fcli-reference.md",[1548],{"type":49,"value":1549},"CLI reference",{"type":44,"tag":261,"props":1551,"children":1552},{},[1553],{"type":44,"tag":356,"props":1554,"children":1555},{"href":358},[1556],{"type":49,"value":361},{"type":44,"tag":261,"props":1558,"children":1559},{},[1560],{"type":44,"tag":356,"props":1561,"children":1562},{"href":370},[1563],{"type":49,"value":373},{"type":44,"tag":1565,"props":1566,"children":1567},"style",{},[1568],{"type":49,"value":1569},"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":1571,"total":1686},[1572,1588,1604,1616,1636,1654,1674],{"slug":1573,"name":1573,"fn":1574,"description":1575,"org":1576,"tags":1577,"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},[1578,1581,1584,1587],{"name":1579,"slug":1580,"type":15},"Accessibility","accessibility",{"name":1582,"slug":1583,"type":15},"Charts","charts",{"name":1585,"slug":1586,"type":15},"Data Visualization","data-visualization",{"name":23,"slug":24,"type":15},{"slug":1589,"name":1589,"fn":1590,"description":1591,"org":1592,"tags":1593,"stars":25,"repoUrl":26,"updatedAt":1603},"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},[1594,1597,1600],{"name":1595,"slug":1596,"type":15},"Agents","agents",{"name":1598,"slug":1599,"type":15},"Browser Automation","browser-automation",{"name":1601,"slug":1602,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1605,"name":1605,"fn":1606,"description":1607,"org":1608,"tags":1609,"stars":25,"repoUrl":26,"updatedAt":1615},"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},[1610,1611,1614],{"name":1598,"slug":1599,"type":15},{"name":1612,"slug":1613,"type":15},"Local Development","local-development",{"name":1601,"slug":1602,"type":15},"2026-04-06T18:41:17.526867",{"slug":1617,"name":1617,"fn":1618,"description":1619,"org":1620,"tags":1621,"stars":25,"repoUrl":26,"updatedAt":1635},"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},[1622,1623,1626,1629,1632],{"name":1595,"slug":1596,"type":15},{"name":1624,"slug":1625,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1627,"slug":1628,"type":15},"SDK","sdk",{"name":1630,"slug":1631,"type":15},"Serverless","serverless",{"name":1633,"slug":1634,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1637,"name":1637,"fn":1638,"description":1639,"org":1640,"tags":1641,"stars":25,"repoUrl":26,"updatedAt":1653},"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},[1642,1643,1646,1649,1650],{"name":20,"slug":21,"type":15},{"name":1644,"slug":1645,"type":15},"React","react",{"name":1647,"slug":1648,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":17,"slug":18,"type":15},{"name":1651,"slug":1652,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1655,"name":1655,"fn":1656,"description":1657,"org":1658,"tags":1659,"stars":25,"repoUrl":26,"updatedAt":1673},"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},[1660,1663,1666,1669,1672],{"name":1661,"slug":1662,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1664,"slug":1665,"type":15},"Cost Optimization","cost-optimization",{"name":1667,"slug":1668,"type":15},"LLM","llm",{"name":1670,"slug":1671,"type":15},"Performance","performance",{"name":1651,"slug":1652,"type":15},"2026-04-06T18:40:44.377464",{"slug":1675,"name":1675,"fn":1676,"description":1677,"org":1678,"tags":1679,"stars":25,"repoUrl":26,"updatedAt":1685},"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},[1680,1681,1684],{"name":1664,"slug":1665,"type":15},{"name":1682,"slug":1683,"type":15},"Database","database",{"name":1667,"slug":1668,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1688,"total":1885},[1689,1710,1733,1750,1766,1783,1802,1814,1828,1842,1854,1869],{"slug":1690,"name":1690,"fn":1691,"description":1692,"org":1693,"tags":1694,"stars":1707,"repoUrl":1708,"updatedAt":1709},"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},[1695,1698,1701,1704],{"name":1696,"slug":1697,"type":15},"Documents","documents",{"name":1699,"slug":1700,"type":15},"Healthcare","healthcare",{"name":1702,"slug":1703,"type":15},"Insurance","insurance",{"name":1705,"slug":1706,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1711,"name":1711,"fn":1712,"description":1713,"org":1714,"tags":1715,"stars":1730,"repoUrl":1731,"updatedAt":1732},"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},[1716,1719,1721,1724,1727],{"name":1717,"slug":1718,"type":15},".NET","dotnet",{"name":1720,"slug":1711,"type":15},"ASP.NET Core",{"name":1722,"slug":1723,"type":15},"Blazor","blazor",{"name":1725,"slug":1726,"type":15},"C#","csharp",{"name":1728,"slug":1729,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1734,"name":1734,"fn":1735,"description":1736,"org":1737,"tags":1738,"stars":1730,"repoUrl":1731,"updatedAt":1749},"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},[1739,1742,1745,1748],{"name":1740,"slug":1741,"type":15},"Apps SDK","apps-sdk",{"name":1743,"slug":1744,"type":15},"ChatGPT","chatgpt",{"name":1746,"slug":1747,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1751,"name":1751,"fn":1752,"description":1753,"org":1754,"tags":1755,"stars":1730,"repoUrl":1731,"updatedAt":1765},"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},[1756,1759,1762],{"name":1757,"slug":1758,"type":15},"API Development","api-development",{"name":1760,"slug":1761,"type":15},"CLI","cli",{"name":1763,"slug":1764,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":1730,"repoUrl":1731,"updatedAt":1782},"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},[1772,1775,1778,1779],{"name":1773,"slug":1774,"type":15},"Cloudflare","cloudflare",{"name":1776,"slug":1777,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1624,"slug":1625,"type":15},{"name":1780,"slug":1781,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1784,"name":1784,"fn":1785,"description":1786,"org":1787,"tags":1788,"stars":1730,"repoUrl":1731,"updatedAt":1801},"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},[1789,1792,1795,1798],{"name":1790,"slug":1791,"type":15},"Productivity","productivity",{"name":1793,"slug":1794,"type":15},"Project Management","project-management",{"name":1796,"slug":1797,"type":15},"Strategy","strategy",{"name":1799,"slug":1800,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1803,"name":1803,"fn":1804,"description":1805,"org":1806,"tags":1807,"stars":1730,"repoUrl":1731,"updatedAt":1813},"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},[1808,1809,1811,1812],{"name":23,"slug":24,"type":15},{"name":1810,"slug":1803,"type":15},"Figma",{"name":20,"slug":21,"type":15},{"name":1746,"slug":1747,"type":15},"2026-04-12T05:06:47.939943",{"slug":1815,"name":1815,"fn":1816,"description":1817,"org":1818,"tags":1819,"stars":1730,"repoUrl":1731,"updatedAt":1827},"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},[1820,1821,1824,1825,1826],{"name":23,"slug":24,"type":15},{"name":1822,"slug":1823,"type":15},"Design System","design-system",{"name":1810,"slug":1803,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},"2026-05-10T05:59:52.971881",{"slug":1829,"name":1829,"fn":1830,"description":1831,"org":1832,"tags":1833,"stars":1730,"repoUrl":1731,"updatedAt":1841},"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},[1834,1835,1836,1839,1840],{"name":23,"slug":24,"type":15},{"name":1822,"slug":1823,"type":15},{"name":1837,"slug":1838,"type":15},"Documentation","documentation",{"name":1810,"slug":1803,"type":15},{"name":20,"slug":21,"type":15},"2026-05-16T06:07:47.821474",{"slug":1843,"name":1843,"fn":1844,"description":1845,"org":1846,"tags":1847,"stars":1730,"repoUrl":1731,"updatedAt":1853},"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},[1848,1849,1850,1851,1852],{"name":23,"slug":24,"type":15},{"name":1810,"slug":1803,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":1728,"slug":1729,"type":15},"2026-05-16T06:07:40.583615",{"slug":1855,"name":1855,"fn":1856,"description":1857,"org":1858,"tags":1859,"stars":1730,"repoUrl":1731,"updatedAt":1868},"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},[1860,1863,1864,1867],{"name":1861,"slug":1862,"type":15},"Animation","animation",{"name":1763,"slug":1764,"type":15},{"name":1865,"slug":1866,"type":15},"Creative","creative",{"name":23,"slug":24,"type":15},"2026-05-02T05:31:48.48485",{"slug":1870,"name":1870,"fn":1871,"description":1872,"org":1873,"tags":1874,"stars":1730,"repoUrl":1731,"updatedAt":1884},"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},[1875,1876,1877,1880,1883],{"name":1865,"slug":1866,"type":15},{"name":23,"slug":24,"type":15},{"name":1878,"slug":1879,"type":15},"Image Generation","image-generation",{"name":1881,"slug":1882,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]