[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-red-hat-developer-create-plugin":3,"mdc-x2s49l-key":31,"related-org-red-hat-developer-create-plugin":1397,"related-repo-red-hat-developer-create-plugin":1565},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"create-plugin","scaffold and package RHDH dynamic plugins","Full lifecycle for RHDH dynamic plugins — scaffold, implement, export, package, and configure. Use when asked to \"create RHDH plugin\", \"bootstrap dynamic plugin\", \"create backend plugin\", \"create frontend plugin\", \"export dynamic plugin\", \"package plugin as OCI\", \"generate frontend wiring\", \"create plugin container image\", \"configure mount points\", \"create dynamic route\", \"add entity card\", \"scaffold RHDH plugin\", \"publish plugin to registry\", \"create tgz archive\", or mentions creating, exporting, packaging, or wiring a Backstage plugin for Red Hat Developer Hub. Also use when asked to \"build a plugin from scratch\", \"dynamic plugin tutorial\", \"RHDH plugin from scratch\", or \"build Backstage plugin for RHDH\". Covers backend plugins (APIs, scaffolder actions, processors), frontend plugins (pages, cards, themes), export\u002Fpackaging (OCI, tgz, npm), and frontend wiring configuration (mount points, routes, entity tabs, themes).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"red-hat-developer","Red Hat Developer","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fred-hat-developer.png","redhat-developer",[13,17],{"name":14,"slug":15,"type":16},"Plugin Development","plugin-development","tag",{"name":18,"slug":19,"type":16},"Deployment","deployment",15,"https:\u002F\u002Fgithub.com\u002Fredhat-developer\u002Frhdh-skill","2026-07-16T06:02:28.983498",null,28,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"Claude Code skill for RHDH plugin lifecycle management","https:\u002F\u002Fgithub.com\u002Fredhat-developer\u002Frhdh-skill\u002Ftree\u002FHEAD\u002Fskills\u002Fcreate-plugin","---\nname: create-plugin\ndescription: >\n  Full lifecycle for RHDH dynamic plugins — scaffold, implement, export, package,\n  and configure. Use when asked to \"create RHDH plugin\", \"bootstrap dynamic plugin\",\n  \"create backend plugin\", \"create frontend plugin\", \"export dynamic plugin\",\n  \"package plugin as OCI\", \"generate frontend wiring\", \"create plugin container image\",\n  \"configure mount points\", \"create dynamic route\", \"add entity card\", \"scaffold\n  RHDH plugin\", \"publish plugin to registry\", \"create tgz archive\", or mentions\n  creating, exporting, packaging, or wiring a Backstage plugin for Red Hat Developer\n  Hub. Also use when asked to \"build a plugin from scratch\", \"dynamic plugin\n  tutorial\", \"RHDH plugin from scratch\", or \"build Backstage plugin for RHDH\".\n  Covers backend plugins (APIs, scaffolder actions, processors), frontend plugins\n  (pages, cards, themes), export\u002Fpackaging (OCI, tgz, npm), and frontend wiring\n  configuration (mount points, routes, entity tabs, themes).\ncompatibility: \"Node.js 22+, Yarn, podman or docker. Windows, macOS, Linux.\"\n---\n\n\u003Cessential_principles>\n\n## Prerequisites\n\n- Node.js 22+ and Yarn\n- Container runtime (`podman` or `docker`) for OCI packaging\n- Access to a container registry (e.g., quay.io) for publishing\n\n\u003C\u002Fessential_principles>\n\n\u003Cintake>\n\n## What would you like to do?\n\n| # | Category | Command | Description |\n|---|----------|---------|-------------|\n| 1 | Create | `backend` | Scaffold and implement a backend dynamic plugin |\n| 2 | Create | `frontend` | Scaffold and implement a frontend dynamic plugin |\n| 3 | Package | `export` | Export, package, and push a plugin for RHDH deployment |\n| 4 | Configure | `wiring` | Analyze a frontend plugin and generate wiring config |\n\nSingle source of truth for command descriptions: `scripts\u002Fcommand-metadata.json`\n\n**Wait for response before proceeding.**\n\n\u003C\u002Fintake>\n\n\u003Crouting>\n\n| Response | Reference |\n|----------|----------|\n| 1, \"backend\", \"create backend\", \"API plugin\", \"scaffolder action\" | [references\u002Fbackend.md](references\u002Fbackend.md) |\n| 2, \"frontend\", \"create frontend\", \"page\", \"card\", \"theme\" | [references\u002Ffrontend.md](references\u002Ffrontend.md) |\n| 3, \"export\", \"package\", \"OCI\", \"tgz\", \"publish\", \"push\" | [references\u002Fexport.md](references\u002Fexport.md) |\n| 4, \"wiring\", \"mount points\", \"routes\", \"entity tabs\" | [references\u002Fwiring.md](references\u002Fwiring.md) |\n| First word doesn't match | Infer intent from context. \"Create a new API plugin\" → `backend`. \"Package my plugin as OCI\" → `export`. \"Generate mount points\" → `wiring`. |\n\n\u003C\u002Frouting>\n\n## Shared Knowledge\n\n> **Script paths:** All `scripts\u002F` and `references\u002F` paths below are relative to this SKILL.md file's directory. Resolve them against the skill directory before invoking.\n\n### RHDH Version Resolution\n\nBefore scaffolding, determine the target RHDH version. Consult `..\u002Frhdh\u002Freferences\u002Fversions.md` for the compatibility matrix. If that file is not found (skill installed standalone), ask the user for the target RHDH version directly.\n\n### Scaffold Script\n\nBoth backend and frontend plugins use a unified scaffold script:\n\n```bash\npython scripts\u002Fscaffold.py \\\n  --type backend \\\n  --rhdh-version 1.9 \\\n  --plugin-id my-plugin\n```\n\nRun `python scripts\u002Fscaffold.py --help` for all options (`--type`, `--path`, `--with-theme`, `--create-app-version`, `--json`).\n\n### Export Script\n\nAutomates the full export → package → push pipeline:\n\n```bash\npython scripts\u002Fexport-plugin.py \\\n  --plugin-dir plugins\u002Fmy-plugin \\\n  --tag quay.io\u002Fns\u002Fmy-plugin:v0.1.0 \\\n  --push --clean\n```\n\nRun `python scripts\u002Fexport-plugin.py --help` for all options (`--format`, `--shared-package`, `--embed-package`, `--json`).\n\n### Plugin Lifecycle\n\nThe typical workflow chains these commands:\n\n1. **`backend`** or **`frontend`** — Scaffold and implement\n2. **`export`** — Build, export, package, push\n3. **`wiring`** (frontend only) — Generate `dynamic-plugins.yaml` config\n\nEach reference file is self-contained. Load only the one you need.\n\n\u003Creference_index>\n\n## Reference Index\n\n### Command References\n\n| File | Load when... |\n|------|-------------|\n| `references\u002Fbackend.md` | Creating a backend plugin (API, scaffolder action, processor) |\n| `references\u002Ffrontend.md` | Creating a frontend plugin (page, card, theme) |\n| `references\u002Fexport.md` | Exporting, packaging, or publishing a plugin |\n| `references\u002Fwiring.md` | Generating frontend wiring configuration |\n\n### Deep-Dive References\n\n| File | Load when... |\n|------|-------------|\n| `references\u002Fexport-options.md` | Need details on `--shared-package`, `--embed-package`, dependency categories |\n| `references\u002Fpackaging-formats.md` | Comparing OCI vs tgz vs npm, multi-plugin bundles, private registries |\n| `references\u002Fintegrity-hashes.md` | Generating or verifying SHA-512\u002FSHA-256 integrity hashes |\n| `references\u002Ffrontend-wiring.md` | Complete mount point, route, binding, entity tab reference |\n| `references\u002Fentity-page.md` | Entity page customization — tabs, cards, conditions, grid layout |\n\n### Examples\n\n| File | Contents |\n|------|----------|\n| `examples\u002Fdynamic-plugins.yaml` | Backend, frontend, multi-plugin, tgz, npm, and local config patterns |\n| `examples\u002Ffrontend-wiring.yaml` | All frontend wiring patterns — tabs, cards, search, themes, scaffolder |\n\n\u003C\u002Freference_index>\n\n## Common Issues\n\n### Plugin Not Loading\n\n- Backend: Verify new backend system (`createBackendPlugin`) with default export\n- Frontend: Verify `scalprum.name` matches key under `dynamicPlugins.frontend.\u003Ckey>`\n- Both: Check version compatibility with target RHDH\n\n### Build\u002FExport Failures\n\n- Run `yarn tsc` to check TypeScript errors before export\n- Clear stale artifacts: `rm -rf dist dist-dynamic && yarn build`\n- Missing deps: `yarn add -D \u003Cmissing-package>`\n\n### MUI v5 Styles Missing (Frontend)\n\nAdd class name generator to `src\u002Findex.ts`:\n\n```typescript\nimport { unstable_ClassNameGenerator as ClassNameGenerator } from '@mui\u002Fmaterial\u002FclassName';\nClassNameGenerator.configure(componentName =>\n  componentName.startsWith('v5-') ? componentName : `v5-${componentName}`\n);\n```\n",{"data":32,"body":34},{"name":4,"description":6,"compatibility":33},"Node.js 22+, Yarn, podman or docker. Windows, macOS, Linux.",{"type":35,"children":36},"root",[37,45,52,89,94,269,394,400,430,437,450,456,461,547,597,603,608,678,716,722,727,787,792,797,803,809,895,901,1019,1025,1080,1085,1091,1097,1137,1143,1180,1186,1199,1391],{"type":38,"tag":39,"props":40,"children":41},"element","p",{},[42],{"type":43,"value":44},"text","\u003Cessential_principles>",{"type":38,"tag":46,"props":47,"children":49},"h2",{"id":48},"prerequisites",[50],{"type":43,"value":51},"Prerequisites",{"type":38,"tag":53,"props":54,"children":55},"ul",{},[56,62,84],{"type":38,"tag":57,"props":58,"children":59},"li",{},[60],{"type":43,"value":61},"Node.js 22+ and Yarn",{"type":38,"tag":57,"props":63,"children":64},{},[65,67,74,76,82],{"type":43,"value":66},"Container runtime (",{"type":38,"tag":68,"props":69,"children":71},"code",{"className":70},[],[72],{"type":43,"value":73},"podman",{"type":43,"value":75}," or ",{"type":38,"tag":68,"props":77,"children":79},{"className":78},[],[80],{"type":43,"value":81},"docker",{"type":43,"value":83},") for OCI packaging",{"type":38,"tag":57,"props":85,"children":86},{},[87],{"type":43,"value":88},"Access to a container registry (e.g., quay.io) for publishing",{"type":38,"tag":39,"props":90,"children":91},{},[92],{"type":43,"value":93},"\u003C\u002Fessential_principles>",{"type":38,"tag":95,"props":96,"children":97},"intake",{},[98,104,249,260],{"type":38,"tag":46,"props":99,"children":101},{"id":100},"what-would-you-like-to-do",[102],{"type":43,"value":103},"What would you like to do?",{"type":38,"tag":105,"props":106,"children":107},"table",{},[108,137],{"type":38,"tag":109,"props":110,"children":111},"thead",{},[112],{"type":38,"tag":113,"props":114,"children":115},"tr",{},[116,122,127,132],{"type":38,"tag":117,"props":118,"children":119},"th",{},[120],{"type":43,"value":121},"#",{"type":38,"tag":117,"props":123,"children":124},{},[125],{"type":43,"value":126},"Category",{"type":38,"tag":117,"props":128,"children":129},{},[130],{"type":43,"value":131},"Command",{"type":38,"tag":117,"props":133,"children":134},{},[135],{"type":43,"value":136},"Description",{"type":38,"tag":138,"props":139,"children":140},"tbody",{},[141,169,195,222],{"type":38,"tag":113,"props":142,"children":143},{},[144,150,155,164],{"type":38,"tag":145,"props":146,"children":147},"td",{},[148],{"type":43,"value":149},"1",{"type":38,"tag":145,"props":151,"children":152},{},[153],{"type":43,"value":154},"Create",{"type":38,"tag":145,"props":156,"children":157},{},[158],{"type":38,"tag":68,"props":159,"children":161},{"className":160},[],[162],{"type":43,"value":163},"backend",{"type":38,"tag":145,"props":165,"children":166},{},[167],{"type":43,"value":168},"Scaffold and implement a backend dynamic plugin",{"type":38,"tag":113,"props":170,"children":171},{},[172,177,181,190],{"type":38,"tag":145,"props":173,"children":174},{},[175],{"type":43,"value":176},"2",{"type":38,"tag":145,"props":178,"children":179},{},[180],{"type":43,"value":154},{"type":38,"tag":145,"props":182,"children":183},{},[184],{"type":38,"tag":68,"props":185,"children":187},{"className":186},[],[188],{"type":43,"value":189},"frontend",{"type":38,"tag":145,"props":191,"children":192},{},[193],{"type":43,"value":194},"Scaffold and implement a frontend dynamic plugin",{"type":38,"tag":113,"props":196,"children":197},{},[198,203,208,217],{"type":38,"tag":145,"props":199,"children":200},{},[201],{"type":43,"value":202},"3",{"type":38,"tag":145,"props":204,"children":205},{},[206],{"type":43,"value":207},"Package",{"type":38,"tag":145,"props":209,"children":210},{},[211],{"type":38,"tag":68,"props":212,"children":214},{"className":213},[],[215],{"type":43,"value":216},"export",{"type":38,"tag":145,"props":218,"children":219},{},[220],{"type":43,"value":221},"Export, package, and push a plugin for RHDH deployment",{"type":38,"tag":113,"props":223,"children":224},{},[225,230,235,244],{"type":38,"tag":145,"props":226,"children":227},{},[228],{"type":43,"value":229},"4",{"type":38,"tag":145,"props":231,"children":232},{},[233],{"type":43,"value":234},"Configure",{"type":38,"tag":145,"props":236,"children":237},{},[238],{"type":38,"tag":68,"props":239,"children":241},{"className":240},[],[242],{"type":43,"value":243},"wiring",{"type":38,"tag":145,"props":245,"children":246},{},[247],{"type":43,"value":248},"Analyze a frontend plugin and generate wiring config",{"type":38,"tag":39,"props":250,"children":251},{},[252,254],{"type":43,"value":253},"Single source of truth for command descriptions: ",{"type":38,"tag":68,"props":255,"children":257},{"className":256},[],[258],{"type":43,"value":259},"scripts\u002Fcommand-metadata.json",{"type":38,"tag":39,"props":261,"children":262},{},[263],{"type":38,"tag":264,"props":265,"children":266},"strong",{},[267],{"type":43,"value":268},"Wait for response before proceeding.",{"type":38,"tag":270,"props":271,"children":272},"routing",{},[273],{"type":38,"tag":105,"props":274,"children":275},{},[276,292],{"type":38,"tag":109,"props":277,"children":278},{},[279],{"type":38,"tag":113,"props":280,"children":281},{},[282,287],{"type":38,"tag":117,"props":283,"children":284},{},[285],{"type":43,"value":286},"Response",{"type":38,"tag":117,"props":288,"children":289},{},[290],{"type":43,"value":291},"Reference",{"type":38,"tag":138,"props":293,"children":294},{},[295,312,328,344,360],{"type":38,"tag":113,"props":296,"children":297},{},[298,303],{"type":38,"tag":145,"props":299,"children":300},{},[301],{"type":43,"value":302},"1, \"backend\", \"create backend\", \"API plugin\", \"scaffolder action\"",{"type":38,"tag":145,"props":304,"children":305},{},[306],{"type":38,"tag":307,"props":308,"children":310},"a",{"href":309},"references\u002Fbackend.md",[311],{"type":43,"value":309},{"type":38,"tag":113,"props":313,"children":314},{},[315,320],{"type":38,"tag":145,"props":316,"children":317},{},[318],{"type":43,"value":319},"2, \"frontend\", \"create frontend\", \"page\", \"card\", \"theme\"",{"type":38,"tag":145,"props":321,"children":322},{},[323],{"type":38,"tag":307,"props":324,"children":326},{"href":325},"references\u002Ffrontend.md",[327],{"type":43,"value":325},{"type":38,"tag":113,"props":329,"children":330},{},[331,336],{"type":38,"tag":145,"props":332,"children":333},{},[334],{"type":43,"value":335},"3, \"export\", \"package\", \"OCI\", \"tgz\", \"publish\", \"push\"",{"type":38,"tag":145,"props":337,"children":338},{},[339],{"type":38,"tag":307,"props":340,"children":342},{"href":341},"references\u002Fexport.md",[343],{"type":43,"value":341},{"type":38,"tag":113,"props":345,"children":346},{},[347,352],{"type":38,"tag":145,"props":348,"children":349},{},[350],{"type":43,"value":351},"4, \"wiring\", \"mount points\", \"routes\", \"entity tabs\"",{"type":38,"tag":145,"props":353,"children":354},{},[355],{"type":38,"tag":307,"props":356,"children":358},{"href":357},"references\u002Fwiring.md",[359],{"type":43,"value":357},{"type":38,"tag":113,"props":361,"children":362},{},[363,368],{"type":38,"tag":145,"props":364,"children":365},{},[366],{"type":43,"value":367},"First word doesn't match",{"type":38,"tag":145,"props":369,"children":370},{},[371,373,378,380,385,387,392],{"type":43,"value":372},"Infer intent from context. \"Create a new API plugin\" → ",{"type":38,"tag":68,"props":374,"children":376},{"className":375},[],[377],{"type":43,"value":163},{"type":43,"value":379},". \"Package my plugin as OCI\" → ",{"type":38,"tag":68,"props":381,"children":383},{"className":382},[],[384],{"type":43,"value":216},{"type":43,"value":386},". \"Generate mount points\" → ",{"type":38,"tag":68,"props":388,"children":390},{"className":389},[],[391],{"type":43,"value":243},{"type":43,"value":393},".",{"type":38,"tag":46,"props":395,"children":397},{"id":396},"shared-knowledge",[398],{"type":43,"value":399},"Shared Knowledge",{"type":38,"tag":401,"props":402,"children":403},"blockquote",{},[404],{"type":38,"tag":39,"props":405,"children":406},{},[407,412,414,420,422,428],{"type":38,"tag":264,"props":408,"children":409},{},[410],{"type":43,"value":411},"Script paths:",{"type":43,"value":413}," All ",{"type":38,"tag":68,"props":415,"children":417},{"className":416},[],[418],{"type":43,"value":419},"scripts\u002F",{"type":43,"value":421}," and ",{"type":38,"tag":68,"props":423,"children":425},{"className":424},[],[426],{"type":43,"value":427},"references\u002F",{"type":43,"value":429}," paths below are relative to this SKILL.md file's directory. Resolve them against the skill directory before invoking.",{"type":38,"tag":431,"props":432,"children":434},"h3",{"id":433},"rhdh-version-resolution",[435],{"type":43,"value":436},"RHDH Version Resolution",{"type":38,"tag":39,"props":438,"children":439},{},[440,442,448],{"type":43,"value":441},"Before scaffolding, determine the target RHDH version. Consult ",{"type":38,"tag":68,"props":443,"children":445},{"className":444},[],[446],{"type":43,"value":447},"..\u002Frhdh\u002Freferences\u002Fversions.md",{"type":43,"value":449}," for the compatibility matrix. If that file is not found (skill installed standalone), ask the user for the target RHDH version directly.",{"type":38,"tag":431,"props":451,"children":453},{"id":452},"scaffold-script",[454],{"type":43,"value":455},"Scaffold Script",{"type":38,"tag":39,"props":457,"children":458},{},[459],{"type":43,"value":460},"Both backend and frontend plugins use a unified scaffold script:",{"type":38,"tag":462,"props":463,"children":468},"pre",{"className":464,"code":465,"language":466,"meta":467,"style":467},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python scripts\u002Fscaffold.py \\\n  --type backend \\\n  --rhdh-version 1.9 \\\n  --plugin-id my-plugin\n","bash","",[469],{"type":38,"tag":68,"props":470,"children":471},{"__ignoreMap":467},[472,496,514,533],{"type":38,"tag":473,"props":474,"children":477},"span",{"class":475,"line":476},"line",1,[478,484,490],{"type":38,"tag":473,"props":479,"children":481},{"style":480},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[482],{"type":43,"value":483},"python",{"type":38,"tag":473,"props":485,"children":487},{"style":486},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[488],{"type":43,"value":489}," scripts\u002Fscaffold.py",{"type":38,"tag":473,"props":491,"children":493},{"style":492},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[494],{"type":43,"value":495}," \\\n",{"type":38,"tag":473,"props":497,"children":499},{"class":475,"line":498},2,[500,505,510],{"type":38,"tag":473,"props":501,"children":502},{"style":486},[503],{"type":43,"value":504},"  --type",{"type":38,"tag":473,"props":506,"children":507},{"style":486},[508],{"type":43,"value":509}," backend",{"type":38,"tag":473,"props":511,"children":512},{"style":492},[513],{"type":43,"value":495},{"type":38,"tag":473,"props":515,"children":517},{"class":475,"line":516},3,[518,523,529],{"type":38,"tag":473,"props":519,"children":520},{"style":486},[521],{"type":43,"value":522},"  --rhdh-version",{"type":38,"tag":473,"props":524,"children":526},{"style":525},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[527],{"type":43,"value":528}," 1.9",{"type":38,"tag":473,"props":530,"children":531},{"style":492},[532],{"type":43,"value":495},{"type":38,"tag":473,"props":534,"children":536},{"class":475,"line":535},4,[537,542],{"type":38,"tag":473,"props":538,"children":539},{"style":486},[540],{"type":43,"value":541},"  --plugin-id",{"type":38,"tag":473,"props":543,"children":544},{"style":486},[545],{"type":43,"value":546}," my-plugin\n",{"type":38,"tag":39,"props":548,"children":549},{},[550,552,558,560,566,568,574,575,581,582,588,589,595],{"type":43,"value":551},"Run ",{"type":38,"tag":68,"props":553,"children":555},{"className":554},[],[556],{"type":43,"value":557},"python scripts\u002Fscaffold.py --help",{"type":43,"value":559}," for all options (",{"type":38,"tag":68,"props":561,"children":563},{"className":562},[],[564],{"type":43,"value":565},"--type",{"type":43,"value":567},", ",{"type":38,"tag":68,"props":569,"children":571},{"className":570},[],[572],{"type":43,"value":573},"--path",{"type":43,"value":567},{"type":38,"tag":68,"props":576,"children":578},{"className":577},[],[579],{"type":43,"value":580},"--with-theme",{"type":43,"value":567},{"type":38,"tag":68,"props":583,"children":585},{"className":584},[],[586],{"type":43,"value":587},"--create-app-version",{"type":43,"value":567},{"type":38,"tag":68,"props":590,"children":592},{"className":591},[],[593],{"type":43,"value":594},"--json",{"type":43,"value":596},").",{"type":38,"tag":431,"props":598,"children":600},{"id":599},"export-script",[601],{"type":43,"value":602},"Export Script",{"type":38,"tag":39,"props":604,"children":605},{},[606],{"type":43,"value":607},"Automates the full export → package → push pipeline:",{"type":38,"tag":462,"props":609,"children":611},{"className":464,"code":610,"language":466,"meta":467,"style":467},"python scripts\u002Fexport-plugin.py \\\n  --plugin-dir plugins\u002Fmy-plugin \\\n  --tag quay.io\u002Fns\u002Fmy-plugin:v0.1.0 \\\n  --push --clean\n",[612],{"type":38,"tag":68,"props":613,"children":614},{"__ignoreMap":467},[615,631,648,665],{"type":38,"tag":473,"props":616,"children":617},{"class":475,"line":476},[618,622,627],{"type":38,"tag":473,"props":619,"children":620},{"style":480},[621],{"type":43,"value":483},{"type":38,"tag":473,"props":623,"children":624},{"style":486},[625],{"type":43,"value":626}," scripts\u002Fexport-plugin.py",{"type":38,"tag":473,"props":628,"children":629},{"style":492},[630],{"type":43,"value":495},{"type":38,"tag":473,"props":632,"children":633},{"class":475,"line":498},[634,639,644],{"type":38,"tag":473,"props":635,"children":636},{"style":486},[637],{"type":43,"value":638},"  --plugin-dir",{"type":38,"tag":473,"props":640,"children":641},{"style":486},[642],{"type":43,"value":643}," plugins\u002Fmy-plugin",{"type":38,"tag":473,"props":645,"children":646},{"style":492},[647],{"type":43,"value":495},{"type":38,"tag":473,"props":649,"children":650},{"class":475,"line":516},[651,656,661],{"type":38,"tag":473,"props":652,"children":653},{"style":486},[654],{"type":43,"value":655},"  --tag",{"type":38,"tag":473,"props":657,"children":658},{"style":486},[659],{"type":43,"value":660}," quay.io\u002Fns\u002Fmy-plugin:v0.1.0",{"type":38,"tag":473,"props":662,"children":663},{"style":492},[664],{"type":43,"value":495},{"type":38,"tag":473,"props":666,"children":667},{"class":475,"line":535},[668,673],{"type":38,"tag":473,"props":669,"children":670},{"style":486},[671],{"type":43,"value":672},"  --push",{"type":38,"tag":473,"props":674,"children":675},{"style":486},[676],{"type":43,"value":677}," --clean\n",{"type":38,"tag":39,"props":679,"children":680},{},[681,682,688,689,695,696,702,703,709,710,715],{"type":43,"value":551},{"type":38,"tag":68,"props":683,"children":685},{"className":684},[],[686],{"type":43,"value":687},"python scripts\u002Fexport-plugin.py --help",{"type":43,"value":559},{"type":38,"tag":68,"props":690,"children":692},{"className":691},[],[693],{"type":43,"value":694},"--format",{"type":43,"value":567},{"type":38,"tag":68,"props":697,"children":699},{"className":698},[],[700],{"type":43,"value":701},"--shared-package",{"type":43,"value":567},{"type":38,"tag":68,"props":704,"children":706},{"className":705},[],[707],{"type":43,"value":708},"--embed-package",{"type":43,"value":567},{"type":38,"tag":68,"props":711,"children":713},{"className":712},[],[714],{"type":43,"value":594},{"type":43,"value":596},{"type":38,"tag":431,"props":717,"children":719},{"id":718},"plugin-lifecycle",[720],{"type":43,"value":721},"Plugin Lifecycle",{"type":38,"tag":39,"props":723,"children":724},{},[725],{"type":43,"value":726},"The typical workflow chains these commands:",{"type":38,"tag":728,"props":729,"children":730},"ol",{},[731,753,766],{"type":38,"tag":57,"props":732,"children":733},{},[734,742,743,751],{"type":38,"tag":264,"props":735,"children":736},{},[737],{"type":38,"tag":68,"props":738,"children":740},{"className":739},[],[741],{"type":43,"value":163},{"type":43,"value":75},{"type":38,"tag":264,"props":744,"children":745},{},[746],{"type":38,"tag":68,"props":747,"children":749},{"className":748},[],[750],{"type":43,"value":189},{"type":43,"value":752}," — Scaffold and implement",{"type":38,"tag":57,"props":754,"children":755},{},[756,764],{"type":38,"tag":264,"props":757,"children":758},{},[759],{"type":38,"tag":68,"props":760,"children":762},{"className":761},[],[763],{"type":43,"value":216},{"type":43,"value":765}," — Build, export, package, push",{"type":38,"tag":57,"props":767,"children":768},{},[769,777,779,785],{"type":38,"tag":264,"props":770,"children":771},{},[772],{"type":38,"tag":68,"props":773,"children":775},{"className":774},[],[776],{"type":43,"value":243},{"type":43,"value":778}," (frontend only) — Generate ",{"type":38,"tag":68,"props":780,"children":782},{"className":781},[],[783],{"type":43,"value":784},"dynamic-plugins.yaml",{"type":43,"value":786}," config",{"type":38,"tag":39,"props":788,"children":789},{},[790],{"type":43,"value":791},"Each reference file is self-contained. Load only the one you need.",{"type":38,"tag":39,"props":793,"children":794},{},[795],{"type":43,"value":796},"\u003Creference_index>",{"type":38,"tag":46,"props":798,"children":800},{"id":799},"reference-index",[801],{"type":43,"value":802},"Reference Index",{"type":38,"tag":431,"props":804,"children":806},{"id":805},"command-references",[807],{"type":43,"value":808},"Command References",{"type":38,"tag":105,"props":810,"children":811},{},[812,828],{"type":38,"tag":109,"props":813,"children":814},{},[815],{"type":38,"tag":113,"props":816,"children":817},{},[818,823],{"type":38,"tag":117,"props":819,"children":820},{},[821],{"type":43,"value":822},"File",{"type":38,"tag":117,"props":824,"children":825},{},[826],{"type":43,"value":827},"Load when...",{"type":38,"tag":138,"props":829,"children":830},{},[831,847,863,879],{"type":38,"tag":113,"props":832,"children":833},{},[834,842],{"type":38,"tag":145,"props":835,"children":836},{},[837],{"type":38,"tag":68,"props":838,"children":840},{"className":839},[],[841],{"type":43,"value":309},{"type":38,"tag":145,"props":843,"children":844},{},[845],{"type":43,"value":846},"Creating a backend plugin (API, scaffolder action, processor)",{"type":38,"tag":113,"props":848,"children":849},{},[850,858],{"type":38,"tag":145,"props":851,"children":852},{},[853],{"type":38,"tag":68,"props":854,"children":856},{"className":855},[],[857],{"type":43,"value":325},{"type":38,"tag":145,"props":859,"children":860},{},[861],{"type":43,"value":862},"Creating a frontend plugin (page, card, theme)",{"type":38,"tag":113,"props":864,"children":865},{},[866,874],{"type":38,"tag":145,"props":867,"children":868},{},[869],{"type":38,"tag":68,"props":870,"children":872},{"className":871},[],[873],{"type":43,"value":341},{"type":38,"tag":145,"props":875,"children":876},{},[877],{"type":43,"value":878},"Exporting, packaging, or publishing a plugin",{"type":38,"tag":113,"props":880,"children":881},{},[882,890],{"type":38,"tag":145,"props":883,"children":884},{},[885],{"type":38,"tag":68,"props":886,"children":888},{"className":887},[],[889],{"type":43,"value":357},{"type":38,"tag":145,"props":891,"children":892},{},[893],{"type":43,"value":894},"Generating frontend wiring configuration",{"type":38,"tag":431,"props":896,"children":898},{"id":897},"deep-dive-references",[899],{"type":43,"value":900},"Deep-Dive References",{"type":38,"tag":105,"props":902,"children":903},{},[904,918],{"type":38,"tag":109,"props":905,"children":906},{},[907],{"type":38,"tag":113,"props":908,"children":909},{},[910,914],{"type":38,"tag":117,"props":911,"children":912},{},[913],{"type":43,"value":822},{"type":38,"tag":117,"props":915,"children":916},{},[917],{"type":43,"value":827},{"type":38,"tag":138,"props":919,"children":920},{},[921,951,968,985,1002],{"type":38,"tag":113,"props":922,"children":923},{},[924,933],{"type":38,"tag":145,"props":925,"children":926},{},[927],{"type":38,"tag":68,"props":928,"children":930},{"className":929},[],[931],{"type":43,"value":932},"references\u002Fexport-options.md",{"type":38,"tag":145,"props":934,"children":935},{},[936,938,943,944,949],{"type":43,"value":937},"Need details on ",{"type":38,"tag":68,"props":939,"children":941},{"className":940},[],[942],{"type":43,"value":701},{"type":43,"value":567},{"type":38,"tag":68,"props":945,"children":947},{"className":946},[],[948],{"type":43,"value":708},{"type":43,"value":950},", dependency categories",{"type":38,"tag":113,"props":952,"children":953},{},[954,963],{"type":38,"tag":145,"props":955,"children":956},{},[957],{"type":38,"tag":68,"props":958,"children":960},{"className":959},[],[961],{"type":43,"value":962},"references\u002Fpackaging-formats.md",{"type":38,"tag":145,"props":964,"children":965},{},[966],{"type":43,"value":967},"Comparing OCI vs tgz vs npm, multi-plugin bundles, private registries",{"type":38,"tag":113,"props":969,"children":970},{},[971,980],{"type":38,"tag":145,"props":972,"children":973},{},[974],{"type":38,"tag":68,"props":975,"children":977},{"className":976},[],[978],{"type":43,"value":979},"references\u002Fintegrity-hashes.md",{"type":38,"tag":145,"props":981,"children":982},{},[983],{"type":43,"value":984},"Generating or verifying SHA-512\u002FSHA-256 integrity hashes",{"type":38,"tag":113,"props":986,"children":987},{},[988,997],{"type":38,"tag":145,"props":989,"children":990},{},[991],{"type":38,"tag":68,"props":992,"children":994},{"className":993},[],[995],{"type":43,"value":996},"references\u002Ffrontend-wiring.md",{"type":38,"tag":145,"props":998,"children":999},{},[1000],{"type":43,"value":1001},"Complete mount point, route, binding, entity tab reference",{"type":38,"tag":113,"props":1003,"children":1004},{},[1005,1014],{"type":38,"tag":145,"props":1006,"children":1007},{},[1008],{"type":38,"tag":68,"props":1009,"children":1011},{"className":1010},[],[1012],{"type":43,"value":1013},"references\u002Fentity-page.md",{"type":38,"tag":145,"props":1015,"children":1016},{},[1017],{"type":43,"value":1018},"Entity page customization — tabs, cards, conditions, grid layout",{"type":38,"tag":431,"props":1020,"children":1022},{"id":1021},"examples",[1023],{"type":43,"value":1024},"Examples",{"type":38,"tag":105,"props":1026,"children":1027},{},[1028,1043],{"type":38,"tag":109,"props":1029,"children":1030},{},[1031],{"type":38,"tag":113,"props":1032,"children":1033},{},[1034,1038],{"type":38,"tag":117,"props":1035,"children":1036},{},[1037],{"type":43,"value":822},{"type":38,"tag":117,"props":1039,"children":1040},{},[1041],{"type":43,"value":1042},"Contents",{"type":38,"tag":138,"props":1044,"children":1045},{},[1046,1063],{"type":38,"tag":113,"props":1047,"children":1048},{},[1049,1058],{"type":38,"tag":145,"props":1050,"children":1051},{},[1052],{"type":38,"tag":68,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":43,"value":1057},"examples\u002Fdynamic-plugins.yaml",{"type":38,"tag":145,"props":1059,"children":1060},{},[1061],{"type":43,"value":1062},"Backend, frontend, multi-plugin, tgz, npm, and local config patterns",{"type":38,"tag":113,"props":1064,"children":1065},{},[1066,1075],{"type":38,"tag":145,"props":1067,"children":1068},{},[1069],{"type":38,"tag":68,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":43,"value":1074},"examples\u002Ffrontend-wiring.yaml",{"type":38,"tag":145,"props":1076,"children":1077},{},[1078],{"type":43,"value":1079},"All frontend wiring patterns — tabs, cards, search, themes, scaffolder",{"type":38,"tag":39,"props":1081,"children":1082},{},[1083],{"type":43,"value":1084},"\u003C\u002Freference_index>",{"type":38,"tag":46,"props":1086,"children":1088},{"id":1087},"common-issues",[1089],{"type":43,"value":1090},"Common Issues",{"type":38,"tag":431,"props":1092,"children":1094},{"id":1093},"plugin-not-loading",[1095],{"type":43,"value":1096},"Plugin Not Loading",{"type":38,"tag":53,"props":1098,"children":1099},{},[1100,1113,1132],{"type":38,"tag":57,"props":1101,"children":1102},{},[1103,1105,1111],{"type":43,"value":1104},"Backend: Verify new backend system (",{"type":38,"tag":68,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":43,"value":1110},"createBackendPlugin",{"type":43,"value":1112},") with default export",{"type":38,"tag":57,"props":1114,"children":1115},{},[1116,1118,1124,1126],{"type":43,"value":1117},"Frontend: Verify ",{"type":38,"tag":68,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":43,"value":1123},"scalprum.name",{"type":43,"value":1125}," matches key under ",{"type":38,"tag":68,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":43,"value":1131},"dynamicPlugins.frontend.\u003Ckey>",{"type":38,"tag":57,"props":1133,"children":1134},{},[1135],{"type":43,"value":1136},"Both: Check version compatibility with target RHDH",{"type":38,"tag":431,"props":1138,"children":1140},{"id":1139},"buildexport-failures",[1141],{"type":43,"value":1142},"Build\u002FExport Failures",{"type":38,"tag":53,"props":1144,"children":1145},{},[1146,1158,1169],{"type":38,"tag":57,"props":1147,"children":1148},{},[1149,1150,1156],{"type":43,"value":551},{"type":38,"tag":68,"props":1151,"children":1153},{"className":1152},[],[1154],{"type":43,"value":1155},"yarn tsc",{"type":43,"value":1157}," to check TypeScript errors before export",{"type":38,"tag":57,"props":1159,"children":1160},{},[1161,1163],{"type":43,"value":1162},"Clear stale artifacts: ",{"type":38,"tag":68,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":43,"value":1168},"rm -rf dist dist-dynamic && yarn build",{"type":38,"tag":57,"props":1170,"children":1171},{},[1172,1174],{"type":43,"value":1173},"Missing deps: ",{"type":38,"tag":68,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":43,"value":1179},"yarn add -D \u003Cmissing-package>",{"type":38,"tag":431,"props":1181,"children":1183},{"id":1182},"mui-v5-styles-missing-frontend",[1184],{"type":43,"value":1185},"MUI v5 Styles Missing (Frontend)",{"type":38,"tag":39,"props":1187,"children":1188},{},[1189,1191,1197],{"type":43,"value":1190},"Add class name generator to ",{"type":38,"tag":68,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":43,"value":1196},"src\u002Findex.ts",{"type":43,"value":1198},":",{"type":38,"tag":462,"props":1200,"children":1204},{"className":1201,"code":1202,"language":1203,"meta":467,"style":467},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { unstable_ClassNameGenerator as ClassNameGenerator } from '@mui\u002Fmaterial\u002FclassName';\nClassNameGenerator.configure(componentName =>\n  componentName.startsWith('v5-') ? componentName : `v5-${componentName}`\n);\n","typescript",[1205],{"type":38,"tag":68,"props":1206,"children":1207},{"__ignoreMap":467},[1208,1268,1303,1379],{"type":38,"tag":473,"props":1209,"children":1210},{"class":475,"line":476},[1211,1217,1223,1228,1233,1238,1243,1248,1253,1258,1263],{"type":38,"tag":473,"props":1212,"children":1214},{"style":1213},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1215],{"type":43,"value":1216},"import",{"type":38,"tag":473,"props":1218,"children":1220},{"style":1219},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1221],{"type":43,"value":1222}," {",{"type":38,"tag":473,"props":1224,"children":1225},{"style":492},[1226],{"type":43,"value":1227}," unstable_ClassNameGenerator",{"type":38,"tag":473,"props":1229,"children":1230},{"style":1213},[1231],{"type":43,"value":1232}," as",{"type":38,"tag":473,"props":1234,"children":1235},{"style":492},[1236],{"type":43,"value":1237}," ClassNameGenerator",{"type":38,"tag":473,"props":1239,"children":1240},{"style":1219},[1241],{"type":43,"value":1242}," }",{"type":38,"tag":473,"props":1244,"children":1245},{"style":1213},[1246],{"type":43,"value":1247}," from",{"type":38,"tag":473,"props":1249,"children":1250},{"style":1219},[1251],{"type":43,"value":1252}," '",{"type":38,"tag":473,"props":1254,"children":1255},{"style":486},[1256],{"type":43,"value":1257},"@mui\u002Fmaterial\u002FclassName",{"type":38,"tag":473,"props":1259,"children":1260},{"style":1219},[1261],{"type":43,"value":1262},"'",{"type":38,"tag":473,"props":1264,"children":1265},{"style":1219},[1266],{"type":43,"value":1267},";\n",{"type":38,"tag":473,"props":1269,"children":1270},{"class":475,"line":498},[1271,1276,1280,1286,1291,1297],{"type":38,"tag":473,"props":1272,"children":1273},{"style":492},[1274],{"type":43,"value":1275},"ClassNameGenerator",{"type":38,"tag":473,"props":1277,"children":1278},{"style":1219},[1279],{"type":43,"value":393},{"type":38,"tag":473,"props":1281,"children":1283},{"style":1282},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1284],{"type":43,"value":1285},"configure",{"type":38,"tag":473,"props":1287,"children":1288},{"style":492},[1289],{"type":43,"value":1290},"(",{"type":38,"tag":473,"props":1292,"children":1294},{"style":1293},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1295],{"type":43,"value":1296},"componentName",{"type":38,"tag":473,"props":1298,"children":1300},{"style":1299},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1301],{"type":43,"value":1302}," =>\n",{"type":38,"tag":473,"props":1304,"children":1305},{"class":475,"line":516},[1306,1311,1315,1320,1324,1328,1333,1337,1342,1347,1352,1356,1361,1365,1370,1374],{"type":38,"tag":473,"props":1307,"children":1308},{"style":492},[1309],{"type":43,"value":1310},"  componentName",{"type":38,"tag":473,"props":1312,"children":1313},{"style":1219},[1314],{"type":43,"value":393},{"type":38,"tag":473,"props":1316,"children":1317},{"style":1282},[1318],{"type":43,"value":1319},"startsWith",{"type":38,"tag":473,"props":1321,"children":1322},{"style":492},[1323],{"type":43,"value":1290},{"type":38,"tag":473,"props":1325,"children":1326},{"style":1219},[1327],{"type":43,"value":1262},{"type":38,"tag":473,"props":1329,"children":1330},{"style":486},[1331],{"type":43,"value":1332},"v5-",{"type":38,"tag":473,"props":1334,"children":1335},{"style":1219},[1336],{"type":43,"value":1262},{"type":38,"tag":473,"props":1338,"children":1339},{"style":492},[1340],{"type":43,"value":1341},") ",{"type":38,"tag":473,"props":1343,"children":1344},{"style":1219},[1345],{"type":43,"value":1346},"?",{"type":38,"tag":473,"props":1348,"children":1349},{"style":492},[1350],{"type":43,"value":1351}," componentName ",{"type":38,"tag":473,"props":1353,"children":1354},{"style":1219},[1355],{"type":43,"value":1198},{"type":38,"tag":473,"props":1357,"children":1358},{"style":1219},[1359],{"type":43,"value":1360}," `",{"type":38,"tag":473,"props":1362,"children":1363},{"style":486},[1364],{"type":43,"value":1332},{"type":38,"tag":473,"props":1366,"children":1367},{"style":1219},[1368],{"type":43,"value":1369},"${",{"type":38,"tag":473,"props":1371,"children":1372},{"style":492},[1373],{"type":43,"value":1296},{"type":38,"tag":473,"props":1375,"children":1376},{"style":1219},[1377],{"type":43,"value":1378},"}`\n",{"type":38,"tag":473,"props":1380,"children":1381},{"class":475,"line":535},[1382,1387],{"type":38,"tag":473,"props":1383,"children":1384},{"style":492},[1385],{"type":43,"value":1386},")",{"type":38,"tag":473,"props":1388,"children":1389},{"style":1219},[1390],{"type":43,"value":1267},{"type":38,"tag":1392,"props":1393,"children":1394},"style",{},[1395],{"type":43,"value":1396},"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":1398,"total":1564},[1399,1415,1429,1446,1462,1479,1484,1503,1515,1528,1540,1551],{"slug":1400,"name":1400,"fn":1401,"description":1402,"org":1403,"tags":1404,"stars":20,"repoUrl":21,"updatedAt":1414},"agent-ready","assess repository readiness for AI agents","Assesses a git repository's readiness for use by AI coding agents using the agentready CLI, then walks through and addresses each gap. RHDH-aware: detects RHDH repositories and uses rhdh-repos.md context to pre-fill AGENTS.md and skip inapplicable findings. Use when asked to \"assess agent readiness\", \"run agentready\", \"check how agent-ready this repo is\", \"make this repo agent-ready\", \"improve agent readiness score\", \"assess all RHDH repos\", \"batch agent readiness\", or \"onboard this repo for agents\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1405,1408,1411],{"name":1406,"slug":1407,"type":16},"Agents","agents",{"name":1409,"slug":1410,"type":16},"Code Analysis","code-analysis",{"name":1412,"slug":1413,"type":16},"Engineering","engineering","2026-07-16T06:03:24.758348",{"slug":1416,"name":1416,"fn":1417,"description":1418,"org":1419,"tags":1420,"stars":20,"repoUrl":21,"updatedAt":1428},"backstage-upgrade","upgrade Backstage dependencies","Upgrade @backstage\u002F* dependencies in a plugin or app to a target version. Use when asked to \"upgrade backstage\", \"bump backstage\", \"update @backstage\", \"align backstage deps\", \"backstage version bump\", \"upgrade dependencies\", \"backstage-cli versions:bump\", \"update to latest backstage\", \"fix version mismatch\", \"backstage version alignment\", \"upgrade before migration\", or any request to update Backstage package versions in a project.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1421,1422,1425],{"name":1412,"slug":1413,"type":16},{"name":1423,"slug":1424,"type":16},"Maintenance","maintenance",{"name":1426,"slug":1427,"type":16},"Migration","migration","2026-07-16T06:03:24.067361",{"slug":1430,"name":1430,"fn":1431,"description":1432,"org":1433,"tags":1434,"stars":20,"repoUrl":21,"updatedAt":1445},"base-images-and-rpms","update base images and lockfiles","Updates base images with updateBaseImages.sh and regenerates rpms.lock.yaml with rpm-lockfile-prototype in redhat-developer\u002Frhdh, rhdh-must-gather, and rhdh-operator. Use --analyze for read-only Containerfile\u002FDockerfile scan (current vs latest tags, UBI skew). Use for weekly upstream maintenance, UBI\u002FRHEL base image bumps, RPM lockfile refresh, base-images-and-rpms, main, release-*, or analyzing base images before updating.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1435,1438,1441,1444],{"name":1436,"slug":1437,"type":16},"Automation","automation",{"name":1439,"slug":1440,"type":16},"Configuration","configuration",{"name":1442,"slug":1443,"type":16},"Containers","containers",{"name":18,"slug":19,"type":16},"2026-07-16T06:03:27.784453",{"slug":1447,"name":1447,"fn":1448,"description":1449,"org":1450,"tags":1451,"stars":20,"repoUrl":21,"updatedAt":1461},"bug-fix","diagnose and fix plugin bugs","Reproduce, diagnose, fix, and PR plugin bugs from Jira tickets or GitHub issues. Works with both rhdh-plugins and community-plugins. Supports UI bugs (Playwright e2e with before\u002Fafter recordings) and backend bugs (unit\u002Fintegration test verification). Triages issues for agent-readiness before attempting a fix. Accepts a Jira key (RHDHBUGS-1934), Jira URL (redhat.atlassian.net\u002Fbrowse\u002F...), GitHub issue URL (github.com\u002F...\u002Fissues\u002FN), or a request to \"fix this bug\", \"reproduce and fix\", \"\u002Fbug-fix\". By default, stops after the fix for user verification before PR creation. Supports --no-verify mode to skip the verification gate and auto-create the PR. Chains into raise-pr for the full PR lifecycle.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1452,1455,1458],{"name":1453,"slug":1454,"type":16},"Debugging","debugging",{"name":1456,"slug":1457,"type":16},"QA","qa",{"name":1459,"slug":1460,"type":16},"Testing","testing","2026-07-29T06:00:33.054762",{"slug":1463,"name":1463,"fn":1464,"description":1465,"org":1466,"tags":1467,"stars":20,"repoUrl":21,"updatedAt":1478},"compute-plugin-package-overlay-cve-list","generate CVE management reports","Builds an RHDH CVE Management CSV from GA plugin workspace changes in rhdh-plugin-export-overlays since a version tag (patches, source.json, plugins-list). One row per CVE × plugins-list package (multi-workspace CVEs expand). Use for \"CVE CSV\", \"workspace CVEs since tag\", \"collect overlay CVEs\", \"CVE management CSV\", orchestrator\u002Flightspeed CVE review, or plugin package overlay CVE list.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1468,1471,1472,1475],{"name":1469,"slug":1470,"type":16},"Compliance","compliance",{"name":1412,"slug":1413,"type":16},{"name":1473,"slug":1474,"type":16},"Reporting","reporting",{"name":1476,"slug":1477,"type":16},"Security","security","2026-08-01T05:41:57.852801",{"slug":4,"name":4,"fn":5,"description":6,"org":1480,"tags":1481,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1482,1483],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":20,"repoUrl":21,"updatedAt":1502},"cursor-mcp-auth","authenticate Atlassian MCP for Jira","Ensures Cursor Atlassian MCP (plugin-atlassian-atlassian → mcp.atlassian.com) is authenticated for redhat.atlassian.net via OAuth. Use for \"authenticate Jira\", \"Atlassian MCP\", \"jira auth failed\", \"mcp_auth Atlassian\", \"cursor MCP auth\", or when another skill needs working Jira access through Cursor MCP.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1490,1493,1496,1499],{"name":1491,"slug":1492,"type":16},"Auth","auth",{"name":1494,"slug":1495,"type":16},"Jira","jira",{"name":1497,"slug":1498,"type":16},"MCP","mcp",{"name":1500,"slug":1501,"type":16},"OAuth","oauth","2026-07-29T06:00:33.525179",{"slug":1504,"name":1504,"fn":1505,"description":1506,"org":1507,"tags":1508,"stars":20,"repoUrl":21,"updatedAt":1514},"konflux-release-data-rpa","update release tags in konflux-release-data","Bumps RHDH ReleasePlanAdmission tag versions in konflux-release-data for a stream release (e.g. 1.9.7), opens a GitLab merge request, and launches it in the browser. Use when updating RPA tags, konflux-release-data, ReleasePlanAdmission, rhdh-1-9-*.yaml, rhdh-plugin-catalog-1-9-*.yaml, or preparing an RHDH patch release.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1509,1510,1511],{"name":1436,"slug":1437,"type":16},{"name":18,"slug":19,"type":16},{"name":1512,"slug":1513,"type":16},"GitLab","gitlab","2026-07-16T06:00:19.516231",{"slug":1516,"name":1516,"fn":1517,"description":1518,"org":1519,"tags":1520,"stars":20,"repoUrl":21,"updatedAt":1527},"konflux-tekton-updates","update Konflux Tekton task digests","Bumps Konflux Tekton task digests with .tekton\u002FupdateDigests.sh --minor --no-push, applies konflux-ci\u002Fbuild-definitions MIGRATION.md pipeline fixes, and regenerates PipelineRuns. Use for rhdh-plugin-catalog, RHDH midstream (4-rhdh), Konflux task minor bumps, prefetch-dependencies-oci-ta, build-image-index, or updateDigests.sh.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1521,1522,1525,1526],{"name":1436,"slug":1437,"type":16},{"name":1523,"slug":1524,"type":16},"CI\u002FCD","ci-cd",{"name":18,"slug":19,"type":16},{"name":1412,"slug":1413,"type":16},"2026-07-16T06:03:28.123118",{"slug":1529,"name":1529,"fn":1530,"description":1531,"org":1532,"tags":1533,"stars":20,"repoUrl":21,"updatedAt":1539},"lifecycle","check Red Hat product lifecycle status","Check version lifecycle and support status for platforms and integrations used by RHDH. Covers OCP, AKS, EKS, GKE, RHDH releases, RHBK, Quay, PostgreSQL, and any Red Hat product via the Product Life Cycles API. Use when asking about version support, EOL dates, GA dates, support phases, or planning version upgrades. Also use for \"is X still supported\", \"what versions should we test\", or \"when does X reach EOL\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1534,1535,1536],{"name":1469,"slug":1470,"type":16},{"name":1423,"slug":1424,"type":16},{"name":1537,"slug":1538,"type":16},"Operations","operations","2026-07-16T06:03:19.344038",{"slug":1541,"name":1541,"fn":1542,"description":1543,"org":1544,"tags":1545,"stars":20,"repoUrl":21,"updatedAt":1550},"nfs-migration","migrate plugins to New Frontend System","Migrate Backstage frontend plugins from the legacy system to the New Frontend System (NFS). Use when asked to \"migrate to NFS\", \"new frontend system\", \"convert plugin to NFS\", \"createFrontendPlugin\", \"PageBlueprint\", \"ApiBlueprint\", \"SubPageBlueprint\", \"alpha to GA\", \"legacy to NFS\", \"frontend migration\", \"extension blueprints\", \"migrate frontend plugin\", \"NFS support\", \"graduate alpha\", or mentions migrating a Backstage plugin to the new frontend system for RHDH.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1546,1547,1549],{"name":1412,"slug":1413,"type":16},{"name":1548,"slug":189,"type":16},"Frontend",{"name":1426,"slug":1427,"type":16},"2026-07-16T06:03:27.078987",{"slug":1552,"name":1552,"fn":1553,"description":1554,"org":1555,"tags":1556,"stars":20,"repoUrl":21,"updatedAt":1563},"overlay","manage RHDH plugin export overlays","Manages the rhdh-plugin-export-overlays repository — onboards plugins to the Extensions Catalog, updates plugin versions, fixes overlay build failures, triages and analyzes PRs, triggers publishes, and manages plugin workspaces. Use when working with overlays, importing plugins, debugging CI, checking PRs, bumping versions, or mentions \"Extensions Catalog\", \"overlay build failed\", \"plugin registry\", \"overlay PR\", \"overlay doctor\", \"plugin import\", \"add plugin to catalog\", \"onboard plugin\", or \"plugin workspace\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1557,1558,1561,1562],{"name":1436,"slug":1437,"type":16},{"name":1559,"slug":1560,"type":16},"Code Review","code-review",{"name":18,"slug":19,"type":16},{"name":1412,"slug":1413,"type":16},"2026-07-16T06:03:20.380044",24,{"items":1566,"total":1564},[1567,1573,1579,1586,1592,1599,1604],{"slug":1400,"name":1400,"fn":1401,"description":1402,"org":1568,"tags":1569,"stars":20,"repoUrl":21,"updatedAt":1414},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1570,1571,1572],{"name":1406,"slug":1407,"type":16},{"name":1409,"slug":1410,"type":16},{"name":1412,"slug":1413,"type":16},{"slug":1416,"name":1416,"fn":1417,"description":1418,"org":1574,"tags":1575,"stars":20,"repoUrl":21,"updatedAt":1428},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1576,1577,1578],{"name":1412,"slug":1413,"type":16},{"name":1423,"slug":1424,"type":16},{"name":1426,"slug":1427,"type":16},{"slug":1430,"name":1430,"fn":1431,"description":1432,"org":1580,"tags":1581,"stars":20,"repoUrl":21,"updatedAt":1445},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1582,1583,1584,1585],{"name":1436,"slug":1437,"type":16},{"name":1439,"slug":1440,"type":16},{"name":1442,"slug":1443,"type":16},{"name":18,"slug":19,"type":16},{"slug":1447,"name":1447,"fn":1448,"description":1449,"org":1587,"tags":1588,"stars":20,"repoUrl":21,"updatedAt":1461},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1589,1590,1591],{"name":1453,"slug":1454,"type":16},{"name":1456,"slug":1457,"type":16},{"name":1459,"slug":1460,"type":16},{"slug":1463,"name":1463,"fn":1464,"description":1465,"org":1593,"tags":1594,"stars":20,"repoUrl":21,"updatedAt":1478},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1595,1596,1597,1598],{"name":1469,"slug":1470,"type":16},{"name":1412,"slug":1413,"type":16},{"name":1473,"slug":1474,"type":16},{"name":1476,"slug":1477,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":1600,"tags":1601,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1602,1603],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1605,"tags":1606,"stars":20,"repoUrl":21,"updatedAt":1502},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1607,1608,1609,1610],{"name":1491,"slug":1492,"type":16},{"name":1494,"slug":1495,"type":16},{"name":1497,"slug":1498,"type":16},{"name":1500,"slug":1501,"type":16}]