[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-plugin-creator":3,"mdc--pm9djt-key":33,"related-org-openai-plugin-creator":1936,"related-repo-openai-plugin-creator":2138},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"plugin-creator","scaffold and create Codex plugins","Create and scaffold plugin directories for Codex with a required `.codex-plugin\u002Fplugin.json`, optional plugin folders\u002Ffiles, and baseline placeholders you can edit before publishing or testing. Use when Codex needs to create a new local plugin, add optional plugin structure, or generate or update repo-root `.agents\u002Fplugins\u002Fmarketplace.json` entries for plugin ordering and availability metadata.",{"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],{"name":13,"slug":14,"type":15},"Automation","automation","tag",{"name":17,"slug":18,"type":15},"Codex","codex",{"name":20,"slug":21,"type":15},"Plugin Development","plugin-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-19T05:06:01.641837",null,1614,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Skills Catalog for Codex","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002F.system\u002Fplugin-creator","---\nname: plugin-creator\ndescription: Create and scaffold plugin directories for Codex with a required `.codex-plugin\u002Fplugin.json`, optional plugin folders\u002Ffiles, and baseline placeholders you can edit before publishing or testing. Use when Codex needs to create a new local plugin, add optional plugin structure, or generate or update repo-root `.agents\u002Fplugins\u002Fmarketplace.json` entries for plugin ordering and availability metadata.\n---\n\n# Plugin Creator\n\n## Quick Start\n\n1. Run the scaffold script:\n\n```bash\n  # Plugin names are normalized to lower-case hyphen-case and must be \u003C= 64 chars.\n  # The generated folder and plugin.json name are always the same.\n# Run from repo root (or replace .agents\u002F... with the absolute path to this SKILL).\n# By default creates in \u003Crepo_root>\u002Fplugins\u002F\u003Cplugin-name>.\npython3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py \u003Cplugin-name>\n```\n\n2. Open `\u003Cplugin-path>\u002F.codex-plugin\u002Fplugin.json` and replace `[TODO: ...]` placeholders.\n\n3. Generate or update the repo marketplace entry when the plugin should appear in Codex UI ordering:\n\n```bash\n# marketplace.json always lives at \u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json\npython3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py my-plugin --with-marketplace\n```\n\nFor a home-local plugin, treat `\u003Chome>` as the root and use:\n\n```bash\npython3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py my-plugin \\\n  --path ~\u002Fplugins \\\n  --marketplace-path ~\u002F.agents\u002Fplugins\u002Fmarketplace.json \\\n  --with-marketplace\n```\n\n4. Generate\u002Fadjust optional companion folders as needed:\n\n```bash\npython3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py my-plugin --path \u003Cparent-plugin-directory> \\\n  --with-skills --with-hooks --with-scripts --with-assets --with-mcp --with-apps --with-marketplace\n```\n\n`\u003Cparent-plugin-directory>` is the directory where the plugin folder `\u003Cplugin-name>` will be created (for example `~\u002Fcode\u002Fplugins`).\n\n## What this skill creates\n\n- If the user has not made the plugin location explicit, ask whether they want a repo-local plugin or a home-local plugin before generating marketplace entries.\n- Creates plugin root at `\u002F\u003Cparent-plugin-directory>\u002F\u003Cplugin-name>\u002F`.\n- Always creates `\u002F\u003Cparent-plugin-directory>\u002F\u003Cplugin-name>\u002F.codex-plugin\u002Fplugin.json`.\n- Fills the manifest with the full schema shape, placeholder values, and the complete `interface` section.\n- Creates or updates `\u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json` when `--with-marketplace` is set.\n  - If the marketplace file does not exist yet, seed top-level `name` plus `interface.displayName` placeholders before adding the first plugin entry.\n- `\u003Cplugin-name>` is normalized using skill-creator naming rules:\n  - `My Plugin` → `my-plugin`\n  - `My--Plugin` → `my-plugin`\n  - underscores, spaces, and punctuation are converted to `-`\n  - result is lower-case hyphen-delimited with consecutive hyphens collapsed\n- Supports optional creation of:\n  - `skills\u002F`\n  - `hooks\u002F`\n  - `scripts\u002F`\n  - `assets\u002F`\n  - `.mcp.json`\n  - `.app.json`\n\n## Marketplace workflow\n\n- `marketplace.json` always lives at `\u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json`.\n- For a home-local plugin, use the same convention with `\u003Chome>` as the root:\n  `~\u002F.agents\u002Fplugins\u002Fmarketplace.json` plus `.\u002Fplugins\u002F\u003Cplugin-name>`.\n- Marketplace root metadata supports top-level `name` plus optional `interface.displayName`.\n- Treat plugin order in `plugins[]` as render order in Codex. Append new entries unless a user explicitly asks to reorder the list.\n- `displayName` belongs inside the marketplace `interface` object, not individual `plugins[]` entries.\n- Each generated marketplace entry must include all of:\n  - `policy.installation`\n  - `policy.authentication`\n  - `category`\n- Default new entries to:\n  - `policy.installation: \"AVAILABLE\"`\n  - `policy.authentication: \"ON_INSTALL\"`\n- Override defaults only when the user explicitly specifies another allowed value.\n- Allowed `policy.installation` values:\n  - `NOT_AVAILABLE`\n  - `AVAILABLE`\n  - `INSTALLED_BY_DEFAULT`\n- Allowed `policy.authentication` values:\n  - `ON_INSTALL`\n  - `ON_USE`\n- Treat `policy.products` as an override. Omit it unless the user explicitly requests product gating.\n- The generated plugin entry shape is:\n\n```json\n{\n  \"name\": \"plugin-name\",\n  \"source\": {\n    \"source\": \"local\",\n    \"path\": \".\u002Fplugins\u002Fplugin-name\"\n  },\n  \"policy\": {\n    \"installation\": \"AVAILABLE\",\n    \"authentication\": \"ON_INSTALL\"\n  },\n  \"category\": \"Productivity\"\n}\n```\n\n- Use `--force` only when intentionally replacing an existing marketplace entry for the same plugin name.\n- If `\u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json` does not exist yet, create it with top-level `\"name\"`, an `\"interface\"` object containing `\"displayName\"`, and a `plugins` array, then add the new entry.\n\n- For a brand-new marketplace file, the root object should look like:\n\n```json\n{\n  \"name\": \"[TODO: marketplace-name]\",\n  \"interface\": {\n    \"displayName\": \"[TODO: Marketplace Display Name]\"\n  },\n  \"plugins\": [\n    {\n      \"name\": \"plugin-name\",\n      \"source\": {\n        \"source\": \"local\",\n        \"path\": \".\u002Fplugins\u002Fplugin-name\"\n      },\n      \"policy\": {\n        \"installation\": \"AVAILABLE\",\n        \"authentication\": \"ON_INSTALL\"\n      },\n      \"category\": \"Productivity\"\n    }\n  ]\n}\n```\n\n## Required behavior\n\n- Outer folder name and `plugin.json` `\"name\"` are always the same normalized plugin name.\n- Do not remove required structure; keep `.codex-plugin\u002Fplugin.json` present.\n- Keep manifest values as placeholders until a human or follow-up step explicitly fills them.\n- If creating files inside an existing plugin path, use `--force` only when overwrite is intentional.\n- Preserve any existing marketplace `interface.displayName`.\n- When generating marketplace entries, always write `policy.installation`, `policy.authentication`, and `category` even if their values are defaults.\n- Add `policy.products` only when the user explicitly asks for that override.\n- Keep marketplace `source.path` relative to repo root as `.\u002Fplugins\u002F\u003Cplugin-name>`.\n\n## Reference to exact spec sample\n\nFor the exact canonical sample JSON for both plugin manifests and marketplace entries, use:\n\n- `references\u002Fplugin-json-spec.md`\n\n## Validation\n\nAfter editing `SKILL.md`, run:\n\n```bash\npython3 \u003Cpath-to-skill-creator>\u002Fscripts\u002Fquick_validate.py .agents\u002Fskills\u002Fplugin-creator\n```\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,46,53,63,152,181,217,231,300,308,395,422,428,643,649,908,1217,1282,1719,1725,1846,1852,1857,1869,1875,1888,1930],{"type":39,"tag":40,"props":41,"children":42},"element","h1",{"id":4},[43],{"type":44,"value":45},"text","Plugin Creator",{"type":39,"tag":47,"props":48,"children":50},"h2",{"id":49},"quick-start",[51],{"type":44,"value":52},"Quick Start",{"type":39,"tag":54,"props":55,"children":56},"ol",{},[57],{"type":39,"tag":58,"props":59,"children":60},"li",{},[61],{"type":44,"value":62},"Run the scaffold script:",{"type":39,"tag":64,"props":65,"children":70},"pre",{"className":66,"code":67,"language":68,"meta":69,"style":69},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","  # Plugin names are normalized to lower-case hyphen-case and must be \u003C= 64 chars.\n  # The generated folder and plugin.json name are always the same.\n# Run from repo root (or replace .agents\u002F... with the absolute path to this SKILL).\n# By default creates in \u003Crepo_root>\u002Fplugins\u002F\u003Cplugin-name>.\npython3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py \u003Cplugin-name>\n","bash","",[71],{"type":39,"tag":72,"props":73,"children":74},"code",{"__ignoreMap":69},[75,87,96,105,114],{"type":39,"tag":76,"props":77,"children":80},"span",{"class":78,"line":79},"line",1,[81],{"type":39,"tag":76,"props":82,"children":84},{"style":83},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[85],{"type":44,"value":86},"  # Plugin names are normalized to lower-case hyphen-case and must be \u003C= 64 chars.\n",{"type":39,"tag":76,"props":88,"children":90},{"class":78,"line":89},2,[91],{"type":39,"tag":76,"props":92,"children":93},{"style":83},[94],{"type":44,"value":95},"  # The generated folder and plugin.json name are always the same.\n",{"type":39,"tag":76,"props":97,"children":99},{"class":78,"line":98},3,[100],{"type":39,"tag":76,"props":101,"children":102},{"style":83},[103],{"type":44,"value":104},"# Run from repo root (or replace .agents\u002F... with the absolute path to this SKILL).\n",{"type":39,"tag":76,"props":106,"children":108},{"class":78,"line":107},4,[109],{"type":39,"tag":76,"props":110,"children":111},{"style":83},[112],{"type":44,"value":113},"# By default creates in \u003Crepo_root>\u002Fplugins\u002F\u003Cplugin-name>.\n",{"type":39,"tag":76,"props":115,"children":117},{"class":78,"line":116},5,[118,124,130,136,141,147],{"type":39,"tag":76,"props":119,"children":121},{"style":120},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[122],{"type":44,"value":123},"python3",{"type":39,"tag":76,"props":125,"children":127},{"style":126},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[128],{"type":44,"value":129}," .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py",{"type":39,"tag":76,"props":131,"children":133},{"style":132},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[134],{"type":44,"value":135}," \u003C",{"type":39,"tag":76,"props":137,"children":138},{"style":126},[139],{"type":44,"value":140},"plugin-nam",{"type":39,"tag":76,"props":142,"children":144},{"style":143},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[145],{"type":44,"value":146},"e",{"type":39,"tag":76,"props":148,"children":149},{"style":132},[150],{"type":44,"value":151},">\n",{"type":39,"tag":54,"props":153,"children":154},{"start":89},[155,176],{"type":39,"tag":58,"props":156,"children":157},{},[158,160,166,168,174],{"type":44,"value":159},"Open ",{"type":39,"tag":72,"props":161,"children":163},{"className":162},[],[164],{"type":44,"value":165},"\u003Cplugin-path>\u002F.codex-plugin\u002Fplugin.json",{"type":44,"value":167}," and replace ",{"type":39,"tag":72,"props":169,"children":171},{"className":170},[],[172],{"type":44,"value":173},"[TODO: ...]",{"type":44,"value":175}," placeholders.",{"type":39,"tag":58,"props":177,"children":178},{},[179],{"type":44,"value":180},"Generate or update the repo marketplace entry when the plugin should appear in Codex UI ordering:",{"type":39,"tag":64,"props":182,"children":184},{"className":66,"code":183,"language":68,"meta":69,"style":69},"# marketplace.json always lives at \u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json\npython3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py my-plugin --with-marketplace\n",[185],{"type":39,"tag":72,"props":186,"children":187},{"__ignoreMap":69},[188,196],{"type":39,"tag":76,"props":189,"children":190},{"class":78,"line":79},[191],{"type":39,"tag":76,"props":192,"children":193},{"style":83},[194],{"type":44,"value":195},"# marketplace.json always lives at \u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json\n",{"type":39,"tag":76,"props":197,"children":198},{"class":78,"line":89},[199,203,207,212],{"type":39,"tag":76,"props":200,"children":201},{"style":120},[202],{"type":44,"value":123},{"type":39,"tag":76,"props":204,"children":205},{"style":126},[206],{"type":44,"value":129},{"type":39,"tag":76,"props":208,"children":209},{"style":126},[210],{"type":44,"value":211}," my-plugin",{"type":39,"tag":76,"props":213,"children":214},{"style":126},[215],{"type":44,"value":216}," --with-marketplace\n",{"type":39,"tag":218,"props":219,"children":220},"p",{},[221,223,229],{"type":44,"value":222},"For a home-local plugin, treat ",{"type":39,"tag":72,"props":224,"children":226},{"className":225},[],[227],{"type":44,"value":228},"\u003Chome>",{"type":44,"value":230}," as the root and use:",{"type":39,"tag":64,"props":232,"children":234},{"className":66,"code":233,"language":68,"meta":69,"style":69},"python3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py my-plugin \\\n  --path ~\u002Fplugins \\\n  --marketplace-path ~\u002F.agents\u002Fplugins\u002Fmarketplace.json \\\n  --with-marketplace\n",[235],{"type":39,"tag":72,"props":236,"children":237},{"__ignoreMap":69},[238,258,275,292],{"type":39,"tag":76,"props":239,"children":240},{"class":78,"line":79},[241,245,249,253],{"type":39,"tag":76,"props":242,"children":243},{"style":120},[244],{"type":44,"value":123},{"type":39,"tag":76,"props":246,"children":247},{"style":126},[248],{"type":44,"value":129},{"type":39,"tag":76,"props":250,"children":251},{"style":126},[252],{"type":44,"value":211},{"type":39,"tag":76,"props":254,"children":255},{"style":143},[256],{"type":44,"value":257}," \\\n",{"type":39,"tag":76,"props":259,"children":260},{"class":78,"line":89},[261,266,271],{"type":39,"tag":76,"props":262,"children":263},{"style":126},[264],{"type":44,"value":265},"  --path",{"type":39,"tag":76,"props":267,"children":268},{"style":126},[269],{"type":44,"value":270}," ~\u002Fplugins",{"type":39,"tag":76,"props":272,"children":273},{"style":143},[274],{"type":44,"value":257},{"type":39,"tag":76,"props":276,"children":277},{"class":78,"line":98},[278,283,288],{"type":39,"tag":76,"props":279,"children":280},{"style":126},[281],{"type":44,"value":282},"  --marketplace-path",{"type":39,"tag":76,"props":284,"children":285},{"style":126},[286],{"type":44,"value":287}," ~\u002F.agents\u002Fplugins\u002Fmarketplace.json",{"type":39,"tag":76,"props":289,"children":290},{"style":143},[291],{"type":44,"value":257},{"type":39,"tag":76,"props":293,"children":294},{"class":78,"line":107},[295],{"type":39,"tag":76,"props":296,"children":297},{"style":126},[298],{"type":44,"value":299},"  --with-marketplace\n",{"type":39,"tag":54,"props":301,"children":302},{"start":107},[303],{"type":39,"tag":58,"props":304,"children":305},{},[306],{"type":44,"value":307},"Generate\u002Fadjust optional companion folders as needed:",{"type":39,"tag":64,"props":309,"children":311},{"className":66,"code":310,"language":68,"meta":69,"style":69},"python3 .agents\u002Fskills\u002Fplugin-creator\u002Fscripts\u002Fcreate_basic_plugin.py my-plugin --path \u003Cparent-plugin-directory> \\\n  --with-skills --with-hooks --with-scripts --with-assets --with-mcp --with-apps --with-marketplace\n",[312],{"type":39,"tag":72,"props":313,"children":314},{"__ignoreMap":69},[315,358],{"type":39,"tag":76,"props":316,"children":317},{"class":78,"line":79},[318,322,326,330,335,339,344,349,354],{"type":39,"tag":76,"props":319,"children":320},{"style":120},[321],{"type":44,"value":123},{"type":39,"tag":76,"props":323,"children":324},{"style":126},[325],{"type":44,"value":129},{"type":39,"tag":76,"props":327,"children":328},{"style":126},[329],{"type":44,"value":211},{"type":39,"tag":76,"props":331,"children":332},{"style":126},[333],{"type":44,"value":334}," --path",{"type":39,"tag":76,"props":336,"children":337},{"style":132},[338],{"type":44,"value":135},{"type":39,"tag":76,"props":340,"children":341},{"style":126},[342],{"type":44,"value":343},"parent-plugin-director",{"type":39,"tag":76,"props":345,"children":346},{"style":143},[347],{"type":44,"value":348},"y",{"type":39,"tag":76,"props":350,"children":351},{"style":132},[352],{"type":44,"value":353},">",{"type":39,"tag":76,"props":355,"children":356},{"style":143},[357],{"type":44,"value":257},{"type":39,"tag":76,"props":359,"children":360},{"class":78,"line":89},[361,366,371,376,381,386,391],{"type":39,"tag":76,"props":362,"children":363},{"style":126},[364],{"type":44,"value":365},"  --with-skills",{"type":39,"tag":76,"props":367,"children":368},{"style":126},[369],{"type":44,"value":370}," --with-hooks",{"type":39,"tag":76,"props":372,"children":373},{"style":126},[374],{"type":44,"value":375}," --with-scripts",{"type":39,"tag":76,"props":377,"children":378},{"style":126},[379],{"type":44,"value":380}," --with-assets",{"type":39,"tag":76,"props":382,"children":383},{"style":126},[384],{"type":44,"value":385}," --with-mcp",{"type":39,"tag":76,"props":387,"children":388},{"style":126},[389],{"type":44,"value":390}," --with-apps",{"type":39,"tag":76,"props":392,"children":393},{"style":126},[394],{"type":44,"value":216},{"type":39,"tag":218,"props":396,"children":397},{},[398,404,406,412,414,420],{"type":39,"tag":72,"props":399,"children":401},{"className":400},[],[402],{"type":44,"value":403},"\u003Cparent-plugin-directory>",{"type":44,"value":405}," is the directory where the plugin folder ",{"type":39,"tag":72,"props":407,"children":409},{"className":408},[],[410],{"type":44,"value":411},"\u003Cplugin-name>",{"type":44,"value":413}," will be created (for example ",{"type":39,"tag":72,"props":415,"children":417},{"className":416},[],[418],{"type":44,"value":419},"~\u002Fcode\u002Fplugins",{"type":44,"value":421},").",{"type":39,"tag":47,"props":423,"children":425},{"id":424},"what-this-skill-creates",[426],{"type":44,"value":427},"What this skill creates",{"type":39,"tag":429,"props":430,"children":431},"ul",{},[432,437,450,462,475,520,581],{"type":39,"tag":58,"props":433,"children":434},{},[435],{"type":44,"value":436},"If the user has not made the plugin location explicit, ask whether they want a repo-local plugin or a home-local plugin before generating marketplace entries.",{"type":39,"tag":58,"props":438,"children":439},{},[440,442,448],{"type":44,"value":441},"Creates plugin root at ",{"type":39,"tag":72,"props":443,"children":445},{"className":444},[],[446],{"type":44,"value":447},"\u002F\u003Cparent-plugin-directory>\u002F\u003Cplugin-name>\u002F",{"type":44,"value":449},".",{"type":39,"tag":58,"props":451,"children":452},{},[453,455,461],{"type":44,"value":454},"Always creates ",{"type":39,"tag":72,"props":456,"children":458},{"className":457},[],[459],{"type":44,"value":460},"\u002F\u003Cparent-plugin-directory>\u002F\u003Cplugin-name>\u002F.codex-plugin\u002Fplugin.json",{"type":44,"value":449},{"type":39,"tag":58,"props":463,"children":464},{},[465,467,473],{"type":44,"value":466},"Fills the manifest with the full schema shape, placeholder values, and the complete ",{"type":39,"tag":72,"props":468,"children":470},{"className":469},[],[471],{"type":44,"value":472},"interface",{"type":44,"value":474}," section.",{"type":39,"tag":58,"props":476,"children":477},{},[478,480,486,488,494,496],{"type":44,"value":479},"Creates or updates ",{"type":39,"tag":72,"props":481,"children":483},{"className":482},[],[484],{"type":44,"value":485},"\u003Crepo-root>\u002F.agents\u002Fplugins\u002Fmarketplace.json",{"type":44,"value":487}," when ",{"type":39,"tag":72,"props":489,"children":491},{"className":490},[],[492],{"type":44,"value":493},"--with-marketplace",{"type":44,"value":495}," is set.\n",{"type":39,"tag":429,"props":497,"children":498},{},[499],{"type":39,"tag":58,"props":500,"children":501},{},[502,504,510,512,518],{"type":44,"value":503},"If the marketplace file does not exist yet, seed top-level ",{"type":39,"tag":72,"props":505,"children":507},{"className":506},[],[508],{"type":44,"value":509},"name",{"type":44,"value":511}," plus ",{"type":39,"tag":72,"props":513,"children":515},{"className":514},[],[516],{"type":44,"value":517},"interface.displayName",{"type":44,"value":519}," placeholders before adding the first plugin entry.",{"type":39,"tag":58,"props":521,"children":522},{},[523,528,530],{"type":39,"tag":72,"props":524,"children":526},{"className":525},[],[527],{"type":44,"value":411},{"type":44,"value":529}," is normalized using skill-creator naming rules:\n",{"type":39,"tag":429,"props":531,"children":532},{},[533,550,565,576],{"type":39,"tag":58,"props":534,"children":535},{},[536,542,544],{"type":39,"tag":72,"props":537,"children":539},{"className":538},[],[540],{"type":44,"value":541},"My Plugin",{"type":44,"value":543}," → ",{"type":39,"tag":72,"props":545,"children":547},{"className":546},[],[548],{"type":44,"value":549},"my-plugin",{"type":39,"tag":58,"props":551,"children":552},{},[553,559,560],{"type":39,"tag":72,"props":554,"children":556},{"className":555},[],[557],{"type":44,"value":558},"My--Plugin",{"type":44,"value":543},{"type":39,"tag":72,"props":561,"children":563},{"className":562},[],[564],{"type":44,"value":549},{"type":39,"tag":58,"props":566,"children":567},{},[568,570],{"type":44,"value":569},"underscores, spaces, and punctuation are converted to ",{"type":39,"tag":72,"props":571,"children":573},{"className":572},[],[574],{"type":44,"value":575},"-",{"type":39,"tag":58,"props":577,"children":578},{},[579],{"type":44,"value":580},"result is lower-case hyphen-delimited with consecutive hyphens collapsed",{"type":39,"tag":58,"props":582,"children":583},{},[584,586],{"type":44,"value":585},"Supports optional creation of:\n",{"type":39,"tag":429,"props":587,"children":588},{},[589,598,607,616,625,634],{"type":39,"tag":58,"props":590,"children":591},{},[592],{"type":39,"tag":72,"props":593,"children":595},{"className":594},[],[596],{"type":44,"value":597},"skills\u002F",{"type":39,"tag":58,"props":599,"children":600},{},[601],{"type":39,"tag":72,"props":602,"children":604},{"className":603},[],[605],{"type":44,"value":606},"hooks\u002F",{"type":39,"tag":58,"props":608,"children":609},{},[610],{"type":39,"tag":72,"props":611,"children":613},{"className":612},[],[614],{"type":44,"value":615},"scripts\u002F",{"type":39,"tag":58,"props":617,"children":618},{},[619],{"type":39,"tag":72,"props":620,"children":622},{"className":621},[],[623],{"type":44,"value":624},"assets\u002F",{"type":39,"tag":58,"props":626,"children":627},{},[628],{"type":39,"tag":72,"props":629,"children":631},{"className":630},[],[632],{"type":44,"value":633},".mcp.json",{"type":39,"tag":58,"props":635,"children":636},{},[637],{"type":39,"tag":72,"props":638,"children":640},{"className":639},[],[641],{"type":44,"value":642},".app.json",{"type":39,"tag":47,"props":644,"children":646},{"id":645},"marketplace-workflow",[647],{"type":44,"value":648},"Marketplace workflow",{"type":39,"tag":429,"props":650,"children":651},{},[652,669,695,713,726,751,786,812,817,859,890,903],{"type":39,"tag":58,"props":653,"children":654},{},[655,661,663,668],{"type":39,"tag":72,"props":656,"children":658},{"className":657},[],[659],{"type":44,"value":660},"marketplace.json",{"type":44,"value":662}," always lives at ",{"type":39,"tag":72,"props":664,"children":666},{"className":665},[],[667],{"type":44,"value":485},{"type":44,"value":449},{"type":39,"tag":58,"props":670,"children":671},{},[672,674,679,681,687,688,694],{"type":44,"value":673},"For a home-local plugin, use the same convention with ",{"type":39,"tag":72,"props":675,"children":677},{"className":676},[],[678],{"type":44,"value":228},{"type":44,"value":680}," as the root:\n",{"type":39,"tag":72,"props":682,"children":684},{"className":683},[],[685],{"type":44,"value":686},"~\u002F.agents\u002Fplugins\u002Fmarketplace.json",{"type":44,"value":511},{"type":39,"tag":72,"props":689,"children":691},{"className":690},[],[692],{"type":44,"value":693},".\u002Fplugins\u002F\u003Cplugin-name>",{"type":44,"value":449},{"type":39,"tag":58,"props":696,"children":697},{},[698,700,705,707,712],{"type":44,"value":699},"Marketplace root metadata supports top-level ",{"type":39,"tag":72,"props":701,"children":703},{"className":702},[],[704],{"type":44,"value":509},{"type":44,"value":706}," plus optional ",{"type":39,"tag":72,"props":708,"children":710},{"className":709},[],[711],{"type":44,"value":517},{"type":44,"value":449},{"type":39,"tag":58,"props":714,"children":715},{},[716,718,724],{"type":44,"value":717},"Treat plugin order in ",{"type":39,"tag":72,"props":719,"children":721},{"className":720},[],[722],{"type":44,"value":723},"plugins[]",{"type":44,"value":725}," as render order in Codex. Append new entries unless a user explicitly asks to reorder the list.",{"type":39,"tag":58,"props":727,"children":728},{},[729,735,737,742,744,749],{"type":39,"tag":72,"props":730,"children":732},{"className":731},[],[733],{"type":44,"value":734},"displayName",{"type":44,"value":736}," belongs inside the marketplace ",{"type":39,"tag":72,"props":738,"children":740},{"className":739},[],[741],{"type":44,"value":472},{"type":44,"value":743}," object, not individual ",{"type":39,"tag":72,"props":745,"children":747},{"className":746},[],[748],{"type":44,"value":723},{"type":44,"value":750}," entries.",{"type":39,"tag":58,"props":752,"children":753},{},[754,756],{"type":44,"value":755},"Each generated marketplace entry must include all of:\n",{"type":39,"tag":429,"props":757,"children":758},{},[759,768,777],{"type":39,"tag":58,"props":760,"children":761},{},[762],{"type":39,"tag":72,"props":763,"children":765},{"className":764},[],[766],{"type":44,"value":767},"policy.installation",{"type":39,"tag":58,"props":769,"children":770},{},[771],{"type":39,"tag":72,"props":772,"children":774},{"className":773},[],[775],{"type":44,"value":776},"policy.authentication",{"type":39,"tag":58,"props":778,"children":779},{},[780],{"type":39,"tag":72,"props":781,"children":783},{"className":782},[],[784],{"type":44,"value":785},"category",{"type":39,"tag":58,"props":787,"children":788},{},[789,791],{"type":44,"value":790},"Default new entries to:\n",{"type":39,"tag":429,"props":792,"children":793},{},[794,803],{"type":39,"tag":58,"props":795,"children":796},{},[797],{"type":39,"tag":72,"props":798,"children":800},{"className":799},[],[801],{"type":44,"value":802},"policy.installation: \"AVAILABLE\"",{"type":39,"tag":58,"props":804,"children":805},{},[806],{"type":39,"tag":72,"props":807,"children":809},{"className":808},[],[810],{"type":44,"value":811},"policy.authentication: \"ON_INSTALL\"",{"type":39,"tag":58,"props":813,"children":814},{},[815],{"type":44,"value":816},"Override defaults only when the user explicitly specifies another allowed value.",{"type":39,"tag":58,"props":818,"children":819},{},[820,822,827,829],{"type":44,"value":821},"Allowed ",{"type":39,"tag":72,"props":823,"children":825},{"className":824},[],[826],{"type":44,"value":767},{"type":44,"value":828}," values:\n",{"type":39,"tag":429,"props":830,"children":831},{},[832,841,850],{"type":39,"tag":58,"props":833,"children":834},{},[835],{"type":39,"tag":72,"props":836,"children":838},{"className":837},[],[839],{"type":44,"value":840},"NOT_AVAILABLE",{"type":39,"tag":58,"props":842,"children":843},{},[844],{"type":39,"tag":72,"props":845,"children":847},{"className":846},[],[848],{"type":44,"value":849},"AVAILABLE",{"type":39,"tag":58,"props":851,"children":852},{},[853],{"type":39,"tag":72,"props":854,"children":856},{"className":855},[],[857],{"type":44,"value":858},"INSTALLED_BY_DEFAULT",{"type":39,"tag":58,"props":860,"children":861},{},[862,863,868,869],{"type":44,"value":821},{"type":39,"tag":72,"props":864,"children":866},{"className":865},[],[867],{"type":44,"value":776},{"type":44,"value":828},{"type":39,"tag":429,"props":870,"children":871},{},[872,881],{"type":39,"tag":58,"props":873,"children":874},{},[875],{"type":39,"tag":72,"props":876,"children":878},{"className":877},[],[879],{"type":44,"value":880},"ON_INSTALL",{"type":39,"tag":58,"props":882,"children":883},{},[884],{"type":39,"tag":72,"props":885,"children":887},{"className":886},[],[888],{"type":44,"value":889},"ON_USE",{"type":39,"tag":58,"props":891,"children":892},{},[893,895,901],{"type":44,"value":894},"Treat ",{"type":39,"tag":72,"props":896,"children":898},{"className":897},[],[899],{"type":44,"value":900},"policy.products",{"type":44,"value":902}," as an override. Omit it unless the user explicitly requests product gating.",{"type":39,"tag":58,"props":904,"children":905},{},[906],{"type":44,"value":907},"The generated plugin entry shape is:",{"type":39,"tag":64,"props":909,"children":913},{"className":910,"code":911,"language":912,"meta":69,"style":69},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"plugin-name\",\n  \"source\": {\n    \"source\": \"local\",\n    \"path\": \".\u002Fplugins\u002Fplugin-name\"\n  },\n  \"policy\": {\n    \"installation\": \"AVAILABLE\",\n    \"authentication\": \"ON_INSTALL\"\n  },\n  \"category\": \"Productivity\"\n}\n","json",[914],{"type":39,"tag":72,"props":915,"children":916},{"__ignoreMap":69},[917,925,967,992,1029,1063,1072,1097,1134,1167,1175,1208],{"type":39,"tag":76,"props":918,"children":919},{"class":78,"line":79},[920],{"type":39,"tag":76,"props":921,"children":922},{"style":132},[923],{"type":44,"value":924},"{\n",{"type":39,"tag":76,"props":926,"children":927},{"class":78,"line":89},[928,933,938,943,948,953,958,962],{"type":39,"tag":76,"props":929,"children":930},{"style":132},[931],{"type":44,"value":932},"  \"",{"type":39,"tag":76,"props":934,"children":936},{"style":935},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[937],{"type":44,"value":509},{"type":39,"tag":76,"props":939,"children":940},{"style":132},[941],{"type":44,"value":942},"\"",{"type":39,"tag":76,"props":944,"children":945},{"style":132},[946],{"type":44,"value":947},":",{"type":39,"tag":76,"props":949,"children":950},{"style":132},[951],{"type":44,"value":952}," \"",{"type":39,"tag":76,"props":954,"children":955},{"style":126},[956],{"type":44,"value":957},"plugin-name",{"type":39,"tag":76,"props":959,"children":960},{"style":132},[961],{"type":44,"value":942},{"type":39,"tag":76,"props":963,"children":964},{"style":132},[965],{"type":44,"value":966},",\n",{"type":39,"tag":76,"props":968,"children":969},{"class":78,"line":98},[970,974,979,983,987],{"type":39,"tag":76,"props":971,"children":972},{"style":132},[973],{"type":44,"value":932},{"type":39,"tag":76,"props":975,"children":976},{"style":935},[977],{"type":44,"value":978},"source",{"type":39,"tag":76,"props":980,"children":981},{"style":132},[982],{"type":44,"value":942},{"type":39,"tag":76,"props":984,"children":985},{"style":132},[986],{"type":44,"value":947},{"type":39,"tag":76,"props":988,"children":989},{"style":132},[990],{"type":44,"value":991}," {\n",{"type":39,"tag":76,"props":993,"children":994},{"class":78,"line":107},[995,1000,1004,1008,1012,1016,1021,1025],{"type":39,"tag":76,"props":996,"children":997},{"style":132},[998],{"type":44,"value":999},"    \"",{"type":39,"tag":76,"props":1001,"children":1002},{"style":120},[1003],{"type":44,"value":978},{"type":39,"tag":76,"props":1005,"children":1006},{"style":132},[1007],{"type":44,"value":942},{"type":39,"tag":76,"props":1009,"children":1010},{"style":132},[1011],{"type":44,"value":947},{"type":39,"tag":76,"props":1013,"children":1014},{"style":132},[1015],{"type":44,"value":952},{"type":39,"tag":76,"props":1017,"children":1018},{"style":126},[1019],{"type":44,"value":1020},"local",{"type":39,"tag":76,"props":1022,"children":1023},{"style":132},[1024],{"type":44,"value":942},{"type":39,"tag":76,"props":1026,"children":1027},{"style":132},[1028],{"type":44,"value":966},{"type":39,"tag":76,"props":1030,"children":1031},{"class":78,"line":116},[1032,1036,1041,1045,1049,1053,1058],{"type":39,"tag":76,"props":1033,"children":1034},{"style":132},[1035],{"type":44,"value":999},{"type":39,"tag":76,"props":1037,"children":1038},{"style":120},[1039],{"type":44,"value":1040},"path",{"type":39,"tag":76,"props":1042,"children":1043},{"style":132},[1044],{"type":44,"value":942},{"type":39,"tag":76,"props":1046,"children":1047},{"style":132},[1048],{"type":44,"value":947},{"type":39,"tag":76,"props":1050,"children":1051},{"style":132},[1052],{"type":44,"value":952},{"type":39,"tag":76,"props":1054,"children":1055},{"style":126},[1056],{"type":44,"value":1057},".\u002Fplugins\u002Fplugin-name",{"type":39,"tag":76,"props":1059,"children":1060},{"style":132},[1061],{"type":44,"value":1062},"\"\n",{"type":39,"tag":76,"props":1064,"children":1066},{"class":78,"line":1065},6,[1067],{"type":39,"tag":76,"props":1068,"children":1069},{"style":132},[1070],{"type":44,"value":1071},"  },\n",{"type":39,"tag":76,"props":1073,"children":1075},{"class":78,"line":1074},7,[1076,1080,1085,1089,1093],{"type":39,"tag":76,"props":1077,"children":1078},{"style":132},[1079],{"type":44,"value":932},{"type":39,"tag":76,"props":1081,"children":1082},{"style":935},[1083],{"type":44,"value":1084},"policy",{"type":39,"tag":76,"props":1086,"children":1087},{"style":132},[1088],{"type":44,"value":942},{"type":39,"tag":76,"props":1090,"children":1091},{"style":132},[1092],{"type":44,"value":947},{"type":39,"tag":76,"props":1094,"children":1095},{"style":132},[1096],{"type":44,"value":991},{"type":39,"tag":76,"props":1098,"children":1100},{"class":78,"line":1099},8,[1101,1105,1110,1114,1118,1122,1126,1130],{"type":39,"tag":76,"props":1102,"children":1103},{"style":132},[1104],{"type":44,"value":999},{"type":39,"tag":76,"props":1106,"children":1107},{"style":120},[1108],{"type":44,"value":1109},"installation",{"type":39,"tag":76,"props":1111,"children":1112},{"style":132},[1113],{"type":44,"value":942},{"type":39,"tag":76,"props":1115,"children":1116},{"style":132},[1117],{"type":44,"value":947},{"type":39,"tag":76,"props":1119,"children":1120},{"style":132},[1121],{"type":44,"value":952},{"type":39,"tag":76,"props":1123,"children":1124},{"style":126},[1125],{"type":44,"value":849},{"type":39,"tag":76,"props":1127,"children":1128},{"style":132},[1129],{"type":44,"value":942},{"type":39,"tag":76,"props":1131,"children":1132},{"style":132},[1133],{"type":44,"value":966},{"type":39,"tag":76,"props":1135,"children":1137},{"class":78,"line":1136},9,[1138,1142,1147,1151,1155,1159,1163],{"type":39,"tag":76,"props":1139,"children":1140},{"style":132},[1141],{"type":44,"value":999},{"type":39,"tag":76,"props":1143,"children":1144},{"style":120},[1145],{"type":44,"value":1146},"authentication",{"type":39,"tag":76,"props":1148,"children":1149},{"style":132},[1150],{"type":44,"value":942},{"type":39,"tag":76,"props":1152,"children":1153},{"style":132},[1154],{"type":44,"value":947},{"type":39,"tag":76,"props":1156,"children":1157},{"style":132},[1158],{"type":44,"value":952},{"type":39,"tag":76,"props":1160,"children":1161},{"style":126},[1162],{"type":44,"value":880},{"type":39,"tag":76,"props":1164,"children":1165},{"style":132},[1166],{"type":44,"value":1062},{"type":39,"tag":76,"props":1168,"children":1170},{"class":78,"line":1169},10,[1171],{"type":39,"tag":76,"props":1172,"children":1173},{"style":132},[1174],{"type":44,"value":1071},{"type":39,"tag":76,"props":1176,"children":1178},{"class":78,"line":1177},11,[1179,1183,1187,1191,1195,1199,1204],{"type":39,"tag":76,"props":1180,"children":1181},{"style":132},[1182],{"type":44,"value":932},{"type":39,"tag":76,"props":1184,"children":1185},{"style":935},[1186],{"type":44,"value":785},{"type":39,"tag":76,"props":1188,"children":1189},{"style":132},[1190],{"type":44,"value":942},{"type":39,"tag":76,"props":1192,"children":1193},{"style":132},[1194],{"type":44,"value":947},{"type":39,"tag":76,"props":1196,"children":1197},{"style":132},[1198],{"type":44,"value":952},{"type":39,"tag":76,"props":1200,"children":1201},{"style":126},[1202],{"type":44,"value":1203},"Productivity",{"type":39,"tag":76,"props":1205,"children":1206},{"style":132},[1207],{"type":44,"value":1062},{"type":39,"tag":76,"props":1209,"children":1211},{"class":78,"line":1210},12,[1212],{"type":39,"tag":76,"props":1213,"children":1214},{"style":132},[1215],{"type":44,"value":1216},"}\n",{"type":39,"tag":429,"props":1218,"children":1219},{},[1220,1233,1277],{"type":39,"tag":58,"props":1221,"children":1222},{},[1223,1225,1231],{"type":44,"value":1224},"Use ",{"type":39,"tag":72,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":44,"value":1230},"--force",{"type":44,"value":1232}," only when intentionally replacing an existing marketplace entry for the same plugin name.",{"type":39,"tag":58,"props":1234,"children":1235},{},[1236,1238,1243,1245,1251,1253,1259,1261,1267,1269,1275],{"type":44,"value":1237},"If ",{"type":39,"tag":72,"props":1239,"children":1241},{"className":1240},[],[1242],{"type":44,"value":485},{"type":44,"value":1244}," does not exist yet, create it with top-level ",{"type":39,"tag":72,"props":1246,"children":1248},{"className":1247},[],[1249],{"type":44,"value":1250},"\"name\"",{"type":44,"value":1252},", an ",{"type":39,"tag":72,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":44,"value":1258},"\"interface\"",{"type":44,"value":1260}," object containing ",{"type":39,"tag":72,"props":1262,"children":1264},{"className":1263},[],[1265],{"type":44,"value":1266},"\"displayName\"",{"type":44,"value":1268},", and a ",{"type":39,"tag":72,"props":1270,"children":1272},{"className":1271},[],[1273],{"type":44,"value":1274},"plugins",{"type":44,"value":1276}," array, then add the new entry.",{"type":39,"tag":58,"props":1278,"children":1279},{},[1280],{"type":44,"value":1281},"For a brand-new marketplace file, the root object should look like:",{"type":39,"tag":64,"props":1283,"children":1285},{"className":910,"code":1284,"language":912,"meta":69,"style":69},"{\n  \"name\": \"[TODO: marketplace-name]\",\n  \"interface\": {\n    \"displayName\": \"[TODO: Marketplace Display Name]\"\n  },\n  \"plugins\": [\n    {\n      \"name\": \"plugin-name\",\n      \"source\": {\n        \"source\": \"local\",\n        \"path\": \".\u002Fplugins\u002Fplugin-name\"\n      },\n      \"policy\": {\n        \"installation\": \"AVAILABLE\",\n        \"authentication\": \"ON_INSTALL\"\n      },\n      \"category\": \"Productivity\"\n    }\n  ]\n}\n",[1286],{"type":39,"tag":72,"props":1287,"children":1288},{"__ignoreMap":69},[1289,1296,1332,1355,1387,1394,1418,1426,1462,1485,1522,1553,1561,1585,1621,1653,1661,1693,1702,1711],{"type":39,"tag":76,"props":1290,"children":1291},{"class":78,"line":79},[1292],{"type":39,"tag":76,"props":1293,"children":1294},{"style":132},[1295],{"type":44,"value":924},{"type":39,"tag":76,"props":1297,"children":1298},{"class":78,"line":89},[1299,1303,1307,1311,1315,1319,1324,1328],{"type":39,"tag":76,"props":1300,"children":1301},{"style":132},[1302],{"type":44,"value":932},{"type":39,"tag":76,"props":1304,"children":1305},{"style":935},[1306],{"type":44,"value":509},{"type":39,"tag":76,"props":1308,"children":1309},{"style":132},[1310],{"type":44,"value":942},{"type":39,"tag":76,"props":1312,"children":1313},{"style":132},[1314],{"type":44,"value":947},{"type":39,"tag":76,"props":1316,"children":1317},{"style":132},[1318],{"type":44,"value":952},{"type":39,"tag":76,"props":1320,"children":1321},{"style":126},[1322],{"type":44,"value":1323},"[TODO: marketplace-name]",{"type":39,"tag":76,"props":1325,"children":1326},{"style":132},[1327],{"type":44,"value":942},{"type":39,"tag":76,"props":1329,"children":1330},{"style":132},[1331],{"type":44,"value":966},{"type":39,"tag":76,"props":1333,"children":1334},{"class":78,"line":98},[1335,1339,1343,1347,1351],{"type":39,"tag":76,"props":1336,"children":1337},{"style":132},[1338],{"type":44,"value":932},{"type":39,"tag":76,"props":1340,"children":1341},{"style":935},[1342],{"type":44,"value":472},{"type":39,"tag":76,"props":1344,"children":1345},{"style":132},[1346],{"type":44,"value":942},{"type":39,"tag":76,"props":1348,"children":1349},{"style":132},[1350],{"type":44,"value":947},{"type":39,"tag":76,"props":1352,"children":1353},{"style":132},[1354],{"type":44,"value":991},{"type":39,"tag":76,"props":1356,"children":1357},{"class":78,"line":107},[1358,1362,1366,1370,1374,1378,1383],{"type":39,"tag":76,"props":1359,"children":1360},{"style":132},[1361],{"type":44,"value":999},{"type":39,"tag":76,"props":1363,"children":1364},{"style":120},[1365],{"type":44,"value":734},{"type":39,"tag":76,"props":1367,"children":1368},{"style":132},[1369],{"type":44,"value":942},{"type":39,"tag":76,"props":1371,"children":1372},{"style":132},[1373],{"type":44,"value":947},{"type":39,"tag":76,"props":1375,"children":1376},{"style":132},[1377],{"type":44,"value":952},{"type":39,"tag":76,"props":1379,"children":1380},{"style":126},[1381],{"type":44,"value":1382},"[TODO: Marketplace Display Name]",{"type":39,"tag":76,"props":1384,"children":1385},{"style":132},[1386],{"type":44,"value":1062},{"type":39,"tag":76,"props":1388,"children":1389},{"class":78,"line":116},[1390],{"type":39,"tag":76,"props":1391,"children":1392},{"style":132},[1393],{"type":44,"value":1071},{"type":39,"tag":76,"props":1395,"children":1396},{"class":78,"line":1065},[1397,1401,1405,1409,1413],{"type":39,"tag":76,"props":1398,"children":1399},{"style":132},[1400],{"type":44,"value":932},{"type":39,"tag":76,"props":1402,"children":1403},{"style":935},[1404],{"type":44,"value":1274},{"type":39,"tag":76,"props":1406,"children":1407},{"style":132},[1408],{"type":44,"value":942},{"type":39,"tag":76,"props":1410,"children":1411},{"style":132},[1412],{"type":44,"value":947},{"type":39,"tag":76,"props":1414,"children":1415},{"style":132},[1416],{"type":44,"value":1417}," [\n",{"type":39,"tag":76,"props":1419,"children":1420},{"class":78,"line":1074},[1421],{"type":39,"tag":76,"props":1422,"children":1423},{"style":132},[1424],{"type":44,"value":1425},"    {\n",{"type":39,"tag":76,"props":1427,"children":1428},{"class":78,"line":1099},[1429,1434,1438,1442,1446,1450,1454,1458],{"type":39,"tag":76,"props":1430,"children":1431},{"style":132},[1432],{"type":44,"value":1433},"      \"",{"type":39,"tag":76,"props":1435,"children":1436},{"style":120},[1437],{"type":44,"value":509},{"type":39,"tag":76,"props":1439,"children":1440},{"style":132},[1441],{"type":44,"value":942},{"type":39,"tag":76,"props":1443,"children":1444},{"style":132},[1445],{"type":44,"value":947},{"type":39,"tag":76,"props":1447,"children":1448},{"style":132},[1449],{"type":44,"value":952},{"type":39,"tag":76,"props":1451,"children":1452},{"style":126},[1453],{"type":44,"value":957},{"type":39,"tag":76,"props":1455,"children":1456},{"style":132},[1457],{"type":44,"value":942},{"type":39,"tag":76,"props":1459,"children":1460},{"style":132},[1461],{"type":44,"value":966},{"type":39,"tag":76,"props":1463,"children":1464},{"class":78,"line":1136},[1465,1469,1473,1477,1481],{"type":39,"tag":76,"props":1466,"children":1467},{"style":132},[1468],{"type":44,"value":1433},{"type":39,"tag":76,"props":1470,"children":1471},{"style":120},[1472],{"type":44,"value":978},{"type":39,"tag":76,"props":1474,"children":1475},{"style":132},[1476],{"type":44,"value":942},{"type":39,"tag":76,"props":1478,"children":1479},{"style":132},[1480],{"type":44,"value":947},{"type":39,"tag":76,"props":1482,"children":1483},{"style":132},[1484],{"type":44,"value":991},{"type":39,"tag":76,"props":1486,"children":1487},{"class":78,"line":1169},[1488,1493,1498,1502,1506,1510,1514,1518],{"type":39,"tag":76,"props":1489,"children":1490},{"style":132},[1491],{"type":44,"value":1492},"        \"",{"type":39,"tag":76,"props":1494,"children":1496},{"style":1495},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1497],{"type":44,"value":978},{"type":39,"tag":76,"props":1499,"children":1500},{"style":132},[1501],{"type":44,"value":942},{"type":39,"tag":76,"props":1503,"children":1504},{"style":132},[1505],{"type":44,"value":947},{"type":39,"tag":76,"props":1507,"children":1508},{"style":132},[1509],{"type":44,"value":952},{"type":39,"tag":76,"props":1511,"children":1512},{"style":126},[1513],{"type":44,"value":1020},{"type":39,"tag":76,"props":1515,"children":1516},{"style":132},[1517],{"type":44,"value":942},{"type":39,"tag":76,"props":1519,"children":1520},{"style":132},[1521],{"type":44,"value":966},{"type":39,"tag":76,"props":1523,"children":1524},{"class":78,"line":1177},[1525,1529,1533,1537,1541,1545,1549],{"type":39,"tag":76,"props":1526,"children":1527},{"style":132},[1528],{"type":44,"value":1492},{"type":39,"tag":76,"props":1530,"children":1531},{"style":1495},[1532],{"type":44,"value":1040},{"type":39,"tag":76,"props":1534,"children":1535},{"style":132},[1536],{"type":44,"value":942},{"type":39,"tag":76,"props":1538,"children":1539},{"style":132},[1540],{"type":44,"value":947},{"type":39,"tag":76,"props":1542,"children":1543},{"style":132},[1544],{"type":44,"value":952},{"type":39,"tag":76,"props":1546,"children":1547},{"style":126},[1548],{"type":44,"value":1057},{"type":39,"tag":76,"props":1550,"children":1551},{"style":132},[1552],{"type":44,"value":1062},{"type":39,"tag":76,"props":1554,"children":1555},{"class":78,"line":1210},[1556],{"type":39,"tag":76,"props":1557,"children":1558},{"style":132},[1559],{"type":44,"value":1560},"      },\n",{"type":39,"tag":76,"props":1562,"children":1564},{"class":78,"line":1563},13,[1565,1569,1573,1577,1581],{"type":39,"tag":76,"props":1566,"children":1567},{"style":132},[1568],{"type":44,"value":1433},{"type":39,"tag":76,"props":1570,"children":1571},{"style":120},[1572],{"type":44,"value":1084},{"type":39,"tag":76,"props":1574,"children":1575},{"style":132},[1576],{"type":44,"value":942},{"type":39,"tag":76,"props":1578,"children":1579},{"style":132},[1580],{"type":44,"value":947},{"type":39,"tag":76,"props":1582,"children":1583},{"style":132},[1584],{"type":44,"value":991},{"type":39,"tag":76,"props":1586,"children":1588},{"class":78,"line":1587},14,[1589,1593,1597,1601,1605,1609,1613,1617],{"type":39,"tag":76,"props":1590,"children":1591},{"style":132},[1592],{"type":44,"value":1492},{"type":39,"tag":76,"props":1594,"children":1595},{"style":1495},[1596],{"type":44,"value":1109},{"type":39,"tag":76,"props":1598,"children":1599},{"style":132},[1600],{"type":44,"value":942},{"type":39,"tag":76,"props":1602,"children":1603},{"style":132},[1604],{"type":44,"value":947},{"type":39,"tag":76,"props":1606,"children":1607},{"style":132},[1608],{"type":44,"value":952},{"type":39,"tag":76,"props":1610,"children":1611},{"style":126},[1612],{"type":44,"value":849},{"type":39,"tag":76,"props":1614,"children":1615},{"style":132},[1616],{"type":44,"value":942},{"type":39,"tag":76,"props":1618,"children":1619},{"style":132},[1620],{"type":44,"value":966},{"type":39,"tag":76,"props":1622,"children":1624},{"class":78,"line":1623},15,[1625,1629,1633,1637,1641,1645,1649],{"type":39,"tag":76,"props":1626,"children":1627},{"style":132},[1628],{"type":44,"value":1492},{"type":39,"tag":76,"props":1630,"children":1631},{"style":1495},[1632],{"type":44,"value":1146},{"type":39,"tag":76,"props":1634,"children":1635},{"style":132},[1636],{"type":44,"value":942},{"type":39,"tag":76,"props":1638,"children":1639},{"style":132},[1640],{"type":44,"value":947},{"type":39,"tag":76,"props":1642,"children":1643},{"style":132},[1644],{"type":44,"value":952},{"type":39,"tag":76,"props":1646,"children":1647},{"style":126},[1648],{"type":44,"value":880},{"type":39,"tag":76,"props":1650,"children":1651},{"style":132},[1652],{"type":44,"value":1062},{"type":39,"tag":76,"props":1654,"children":1656},{"class":78,"line":1655},16,[1657],{"type":39,"tag":76,"props":1658,"children":1659},{"style":132},[1660],{"type":44,"value":1560},{"type":39,"tag":76,"props":1662,"children":1664},{"class":78,"line":1663},17,[1665,1669,1673,1677,1681,1685,1689],{"type":39,"tag":76,"props":1666,"children":1667},{"style":132},[1668],{"type":44,"value":1433},{"type":39,"tag":76,"props":1670,"children":1671},{"style":120},[1672],{"type":44,"value":785},{"type":39,"tag":76,"props":1674,"children":1675},{"style":132},[1676],{"type":44,"value":942},{"type":39,"tag":76,"props":1678,"children":1679},{"style":132},[1680],{"type":44,"value":947},{"type":39,"tag":76,"props":1682,"children":1683},{"style":132},[1684],{"type":44,"value":952},{"type":39,"tag":76,"props":1686,"children":1687},{"style":126},[1688],{"type":44,"value":1203},{"type":39,"tag":76,"props":1690,"children":1691},{"style":132},[1692],{"type":44,"value":1062},{"type":39,"tag":76,"props":1694,"children":1696},{"class":78,"line":1695},18,[1697],{"type":39,"tag":76,"props":1698,"children":1699},{"style":132},[1700],{"type":44,"value":1701},"    }\n",{"type":39,"tag":76,"props":1703,"children":1705},{"class":78,"line":1704},19,[1706],{"type":39,"tag":76,"props":1707,"children":1708},{"style":132},[1709],{"type":44,"value":1710},"  ]\n",{"type":39,"tag":76,"props":1712,"children":1714},{"class":78,"line":1713},20,[1715],{"type":39,"tag":76,"props":1716,"children":1717},{"style":132},[1718],{"type":44,"value":1216},{"type":39,"tag":47,"props":1720,"children":1722},{"id":1721},"required-behavior",[1723],{"type":44,"value":1724},"Required behavior",{"type":39,"tag":429,"props":1726,"children":1727},{},[1728,1748,1761,1766,1778,1789,1815,1827],{"type":39,"tag":58,"props":1729,"children":1730},{},[1731,1733,1739,1741,1746],{"type":44,"value":1732},"Outer folder name and ",{"type":39,"tag":72,"props":1734,"children":1736},{"className":1735},[],[1737],{"type":44,"value":1738},"plugin.json",{"type":44,"value":1740}," ",{"type":39,"tag":72,"props":1742,"children":1744},{"className":1743},[],[1745],{"type":44,"value":1250},{"type":44,"value":1747}," are always the same normalized plugin name.",{"type":39,"tag":58,"props":1749,"children":1750},{},[1751,1753,1759],{"type":44,"value":1752},"Do not remove required structure; keep ",{"type":39,"tag":72,"props":1754,"children":1756},{"className":1755},[],[1757],{"type":44,"value":1758},".codex-plugin\u002Fplugin.json",{"type":44,"value":1760}," present.",{"type":39,"tag":58,"props":1762,"children":1763},{},[1764],{"type":44,"value":1765},"Keep manifest values as placeholders until a human or follow-up step explicitly fills them.",{"type":39,"tag":58,"props":1767,"children":1768},{},[1769,1771,1776],{"type":44,"value":1770},"If creating files inside an existing plugin path, use ",{"type":39,"tag":72,"props":1772,"children":1774},{"className":1773},[],[1775],{"type":44,"value":1230},{"type":44,"value":1777}," only when overwrite is intentional.",{"type":39,"tag":58,"props":1779,"children":1780},{},[1781,1783,1788],{"type":44,"value":1782},"Preserve any existing marketplace ",{"type":39,"tag":72,"props":1784,"children":1786},{"className":1785},[],[1787],{"type":44,"value":517},{"type":44,"value":449},{"type":39,"tag":58,"props":1790,"children":1791},{},[1792,1794,1799,1801,1806,1808,1813],{"type":44,"value":1793},"When generating marketplace entries, always write ",{"type":39,"tag":72,"props":1795,"children":1797},{"className":1796},[],[1798],{"type":44,"value":767},{"type":44,"value":1800},", ",{"type":39,"tag":72,"props":1802,"children":1804},{"className":1803},[],[1805],{"type":44,"value":776},{"type":44,"value":1807},", and ",{"type":39,"tag":72,"props":1809,"children":1811},{"className":1810},[],[1812],{"type":44,"value":785},{"type":44,"value":1814}," even if their values are defaults.",{"type":39,"tag":58,"props":1816,"children":1817},{},[1818,1820,1825],{"type":44,"value":1819},"Add ",{"type":39,"tag":72,"props":1821,"children":1823},{"className":1822},[],[1824],{"type":44,"value":900},{"type":44,"value":1826}," only when the user explicitly asks for that override.",{"type":39,"tag":58,"props":1828,"children":1829},{},[1830,1832,1838,1840,1845],{"type":44,"value":1831},"Keep marketplace ",{"type":39,"tag":72,"props":1833,"children":1835},{"className":1834},[],[1836],{"type":44,"value":1837},"source.path",{"type":44,"value":1839}," relative to repo root as ",{"type":39,"tag":72,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":44,"value":693},{"type":44,"value":449},{"type":39,"tag":47,"props":1847,"children":1849},{"id":1848},"reference-to-exact-spec-sample",[1850],{"type":44,"value":1851},"Reference to exact spec sample",{"type":39,"tag":218,"props":1853,"children":1854},{},[1855],{"type":44,"value":1856},"For the exact canonical sample JSON for both plugin manifests and marketplace entries, use:",{"type":39,"tag":429,"props":1858,"children":1859},{},[1860],{"type":39,"tag":58,"props":1861,"children":1862},{},[1863],{"type":39,"tag":72,"props":1864,"children":1866},{"className":1865},[],[1867],{"type":44,"value":1868},"references\u002Fplugin-json-spec.md",{"type":39,"tag":47,"props":1870,"children":1872},{"id":1871},"validation",[1873],{"type":44,"value":1874},"Validation",{"type":39,"tag":218,"props":1876,"children":1877},{},[1878,1880,1886],{"type":44,"value":1879},"After editing ",{"type":39,"tag":72,"props":1881,"children":1883},{"className":1882},[],[1884],{"type":44,"value":1885},"SKILL.md",{"type":44,"value":1887},", run:",{"type":39,"tag":64,"props":1889,"children":1891},{"className":66,"code":1890,"language":68,"meta":69,"style":69},"python3 \u003Cpath-to-skill-creator>\u002Fscripts\u002Fquick_validate.py .agents\u002Fskills\u002Fplugin-creator\n",[1892],{"type":39,"tag":72,"props":1893,"children":1894},{"__ignoreMap":69},[1895],{"type":39,"tag":76,"props":1896,"children":1897},{"class":78,"line":79},[1898,1902,1906,1911,1916,1920,1925],{"type":39,"tag":76,"props":1899,"children":1900},{"style":120},[1901],{"type":44,"value":123},{"type":39,"tag":76,"props":1903,"children":1904},{"style":132},[1905],{"type":44,"value":135},{"type":39,"tag":76,"props":1907,"children":1908},{"style":126},[1909],{"type":44,"value":1910},"path-to-skill-creato",{"type":39,"tag":76,"props":1912,"children":1913},{"style":143},[1914],{"type":44,"value":1915},"r",{"type":39,"tag":76,"props":1917,"children":1918},{"style":132},[1919],{"type":44,"value":353},{"type":39,"tag":76,"props":1921,"children":1922},{"style":126},[1923],{"type":44,"value":1924},"\u002Fscripts\u002Fquick_validate.py",{"type":39,"tag":76,"props":1926,"children":1927},{"style":126},[1928],{"type":44,"value":1929}," .agents\u002Fskills\u002Fplugin-creator\n",{"type":39,"tag":1931,"props":1932,"children":1933},"style",{},[1934],{"type":44,"value":1935},"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":1937,"total":2137},[1938,1959,1980,1997,2011,2030,2048,2064,2080,2094,2106,2121],{"slug":1939,"name":1939,"fn":1940,"description":1941,"org":1942,"tags":1943,"stars":1956,"repoUrl":1957,"updatedAt":1958},"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},[1944,1947,1950,1953],{"name":1945,"slug":1946,"type":15},"Documents","documents",{"name":1948,"slug":1949,"type":15},"Healthcare","healthcare",{"name":1951,"slug":1952,"type":15},"Insurance","insurance",{"name":1954,"slug":1955,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1960,"name":1960,"fn":1961,"description":1962,"org":1963,"tags":1964,"stars":22,"repoUrl":23,"updatedAt":1979},"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},[1965,1968,1970,1973,1976],{"name":1966,"slug":1967,"type":15},".NET","dotnet",{"name":1969,"slug":1960,"type":15},"ASP.NET Core",{"name":1971,"slug":1972,"type":15},"Blazor","blazor",{"name":1974,"slug":1975,"type":15},"C#","csharp",{"name":1977,"slug":1978,"type":15},"Web Development","web-development","2026-04-12T05:07:02.819491",{"slug":1981,"name":1981,"fn":1982,"description":1983,"org":1984,"tags":1985,"stars":22,"repoUrl":23,"updatedAt":1996},"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},[1986,1989,1992,1995],{"name":1987,"slug":1988,"type":15},"Apps SDK","apps-sdk",{"name":1990,"slug":1991,"type":15},"ChatGPT","chatgpt",{"name":1993,"slug":1994,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1998,"name":1998,"fn":1999,"description":2000,"org":2001,"tags":2002,"stars":22,"repoUrl":23,"updatedAt":2010},"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},[2003,2006,2009],{"name":2004,"slug":2005,"type":15},"API Development","api-development",{"name":2007,"slug":2008,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},"2026-04-12T05:07:04.132762",{"slug":2012,"name":2012,"fn":2013,"description":2014,"org":2015,"tags":2016,"stars":22,"repoUrl":23,"updatedAt":2029},"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},[2017,2020,2023,2026],{"name":2018,"slug":2019,"type":15},"Cloudflare","cloudflare",{"name":2021,"slug":2022,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2024,"slug":2025,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2027,"slug":2028,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2031,"name":2031,"fn":2032,"description":2033,"org":2034,"tags":2035,"stars":22,"repoUrl":23,"updatedAt":2047},"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},[2036,2038,2041,2044],{"name":1203,"slug":2037,"type":15},"productivity",{"name":2039,"slug":2040,"type":15},"Project Management","project-management",{"name":2042,"slug":2043,"type":15},"Strategy","strategy",{"name":2045,"slug":2046,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2049,"name":2049,"fn":2050,"description":2051,"org":2052,"tags":2053,"stars":22,"repoUrl":23,"updatedAt":2063},"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},[2054,2057,2059,2062],{"name":2055,"slug":2056,"type":15},"Design","design",{"name":2058,"slug":2049,"type":15},"Figma",{"name":2060,"slug":2061,"type":15},"Frontend","frontend",{"name":1993,"slug":1994,"type":15},"2026-04-12T05:06:47.939943",{"slug":2065,"name":2065,"fn":2066,"description":2067,"org":2068,"tags":2069,"stars":22,"repoUrl":23,"updatedAt":2079},"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},[2070,2071,2074,2075,2076],{"name":2055,"slug":2056,"type":15},{"name":2072,"slug":2073,"type":15},"Design System","design-system",{"name":2058,"slug":2049,"type":15},{"name":2060,"slug":2061,"type":15},{"name":2077,"slug":2078,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":2081,"name":2081,"fn":2082,"description":2083,"org":2084,"tags":2085,"stars":22,"repoUrl":23,"updatedAt":2093},"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},[2086,2087,2088,2091,2092],{"name":2055,"slug":2056,"type":15},{"name":2072,"slug":2073,"type":15},{"name":2089,"slug":2090,"type":15},"Documentation","documentation",{"name":2058,"slug":2049,"type":15},{"name":2060,"slug":2061,"type":15},"2026-05-16T06:07:47.821474",{"slug":2095,"name":2095,"fn":2096,"description":2097,"org":2098,"tags":2099,"stars":22,"repoUrl":23,"updatedAt":2105},"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},[2100,2101,2102,2103,2104],{"name":2055,"slug":2056,"type":15},{"name":2058,"slug":2049,"type":15},{"name":2060,"slug":2061,"type":15},{"name":2077,"slug":2078,"type":15},{"name":1977,"slug":1978,"type":15},"2026-05-16T06:07:40.583615",{"slug":2107,"name":2107,"fn":2108,"description":2109,"org":2110,"tags":2111,"stars":22,"repoUrl":23,"updatedAt":2120},"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},[2112,2115,2116,2119],{"name":2113,"slug":2114,"type":15},"Animation","animation",{"name":17,"slug":18,"type":15},{"name":2117,"slug":2118,"type":15},"Creative","creative",{"name":2055,"slug":2056,"type":15},"2026-05-02T05:31:48.48485",{"slug":2122,"name":2122,"fn":2123,"description":2124,"org":2125,"tags":2126,"stars":22,"repoUrl":23,"updatedAt":2136},"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},[2127,2128,2129,2132,2135],{"name":2117,"slug":2118,"type":15},{"name":2055,"slug":2056,"type":15},{"name":2130,"slug":2131,"type":15},"Image Generation","image-generation",{"name":2133,"slug":2134,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2139,"total":2190},[2140,2148,2155,2161,2168,2175,2182],{"slug":1960,"name":1960,"fn":1961,"description":1962,"org":2141,"tags":2142,"stars":22,"repoUrl":23,"updatedAt":1979},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2143,2144,2145,2146,2147],{"name":1966,"slug":1967,"type":15},{"name":1969,"slug":1960,"type":15},{"name":1971,"slug":1972,"type":15},{"name":1974,"slug":1975,"type":15},{"name":1977,"slug":1978,"type":15},{"slug":1981,"name":1981,"fn":1982,"description":1983,"org":2149,"tags":2150,"stars":22,"repoUrl":23,"updatedAt":1996},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2151,2152,2153,2154],{"name":1987,"slug":1988,"type":15},{"name":1990,"slug":1991,"type":15},{"name":1993,"slug":1994,"type":15},{"name":9,"slug":8,"type":15},{"slug":1998,"name":1998,"fn":1999,"description":2000,"org":2156,"tags":2157,"stars":22,"repoUrl":23,"updatedAt":2010},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2158,2159,2160],{"name":2004,"slug":2005,"type":15},{"name":2007,"slug":2008,"type":15},{"name":17,"slug":18,"type":15},{"slug":2012,"name":2012,"fn":2013,"description":2014,"org":2162,"tags":2163,"stars":22,"repoUrl":23,"updatedAt":2029},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2164,2165,2166,2167],{"name":2018,"slug":2019,"type":15},{"name":2021,"slug":2022,"type":15},{"name":2024,"slug":2025,"type":15},{"name":2027,"slug":2028,"type":15},{"slug":2031,"name":2031,"fn":2032,"description":2033,"org":2169,"tags":2170,"stars":22,"repoUrl":23,"updatedAt":2047},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2171,2172,2173,2174],{"name":1203,"slug":2037,"type":15},{"name":2039,"slug":2040,"type":15},{"name":2042,"slug":2043,"type":15},{"name":2045,"slug":2046,"type":15},{"slug":2049,"name":2049,"fn":2050,"description":2051,"org":2176,"tags":2177,"stars":22,"repoUrl":23,"updatedAt":2063},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2178,2179,2180,2181],{"name":2055,"slug":2056,"type":15},{"name":2058,"slug":2049,"type":15},{"name":2060,"slug":2061,"type":15},{"name":1993,"slug":1994,"type":15},{"slug":2065,"name":2065,"fn":2066,"description":2067,"org":2183,"tags":2184,"stars":22,"repoUrl":23,"updatedAt":2079},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2185,2186,2187,2188,2189],{"name":2055,"slug":2056,"type":15},{"name":2072,"slug":2073,"type":15},{"name":2058,"slug":2049,"type":15},{"name":2060,"slug":2061,"type":15},{"name":2077,"slug":2078,"type":15},29]