[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-nvidia-k8s-launch-kit-validate":3,"mdc--bw6hdp-key":37,"related-org-nvidia-k8s-launch-kit-validate":1080,"related-repo-nvidia-k8s-launch-kit-validate":1239},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"k8s-launch-kit-validate","validate NVIDIA networking deployment configurations","Use this skill when the user wants to verify that an NVIDIA networking deployment matches the configuration that produced it. Activate for: 'is my deployment correct', 'are all the manifests applied', 'does the network operator version match', 'verify deployment', 'check cluster state against config', or any question about whether the cluster reflects what l8k generated. Wraps the `l8k validate` subcommand.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"nvidia","NVIDIA","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fnvidia.png",[12,16,19,22,23],{"name":13,"slug":14,"type":15},"Networking","networking","tag",{"name":17,"slug":18,"type":15},"QA","qa",{"name":20,"slug":21,"type":15},"Audit","audit",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Kubernetes","kubernetes",14,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fk8s-launch-kit","2026-07-14T05:31:53.835611",null,4,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"K8s Launch Kit (l8k) is a CLI tool for deploying and managing NVIDIA cloud-native solutions on Kubernetes. The tool helps provide flexible deployment workflows for optimal network performance with SR-IOV, RDMA, and other networking technologies.","https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fk8s-launch-kit\u002Ftree\u002FHEAD\u002Fskills\u002Fk8s-launch-kit-validate","---\nname: k8s-launch-kit-validate\nversion: 1.0.0\ndescription: \"Use this skill when the user wants to verify that an NVIDIA networking deployment matches the configuration that produced it. Activate for: 'is my deployment correct', 'are all the manifests applied', 'does the network operator version match', 'verify deployment', 'check cluster state against config', or any question about whether the cluster reflects what l8k generated. Wraps the `l8k validate` subcommand.\"\nmetadata:\n  requires:\n    skills: [\"k8s-launch-kit-shared\"]\n---\n\n# l8k: Validate\n\n> **PREREQUISITE:** Read `..\u002Fk8s-launch-kit-shared\u002FSKILL.md` for install paths, global flags, and exit codes.\n\nVerify that a previously generated and deployed NVIDIA networking\ndeployment is correctly applied and matches the selected Network\nOperator release.\n\n## What it checks\n\n1. **Network Operator Helm release version.** Reads the chart's\n   `appVersion` from any release Secret named\n   `sh.helm.release.v1.\u003Crelease>.v\u003CN>` whose release name contains\n   \"network-operator\", in the operator namespace. Compares with the\n   version expected by `networkOperator.selectedRelease` in\n   `cluster-config.yaml` (looked up in l8k's embedded release catalog).\n2. **Manifest presence.** Every YAML manifest under\n   `--deployment-files` (skipping any file with \"example\" in its name)\n   is fetched from the cluster via `client.Get`. Each manifest is\n   reported `FOUND`, `MISSING`, or `ERROR`.\n3. **Connectivity matrix.** By default, `l8k validate` applies the generated\n   example DaemonSet, waits for ready pods, and runs source-bound `icmp`,\n   `rping`, and `ib_write_bw` tests. The default mode is `strict`.\n\nExit code is non-zero (4) on any missing manifest, version mismatch, or\ngating connectivity failure. Version checks soft-skip when prerequisites are\nabsent — no `cluster-config.yaml`, no Helm release Secret, etc.\n\n## Usage\n\n```bash\nl8k validate [--user-config \u003CPATH>] [--deployment-files \u003CDIR>] [--kubeconfig \u003CPATH>]\n```\n\n## Flags\n\n| Flag | Default | Description |\n|------|---------|-------------|\n| `--kubeconfig` | `$KUBECONFIG` | Path to kubeconfig with read access to the cluster |\n| `--user-config` | `.\u002Fcluster-config.yaml` | Cluster config YAML; used for `networkOperator.selectedRelease` and the operator namespace |\n| `--deployment-files` | `.\u002Fdeployment` | Directory containing the manifests to verify |\n| `--validation-mode` | `validation.mode` (`strict`) | Connectivity mode: `quick`, `full`, or `strict` |\n| `--validation-checks` | `validation.checks` (`icmp,rping,ib_write_bw`) | Comma-separated connectivity checks; `\"\"` disables all |\n| `--rdma-rping-iterations` | `validation.rdma.rpingIterations` | rping client iteration count |\n| `--rdma-ib-write-size` | `validation.rdma.ibWriteSize` | ib_write_bw message size |\n| `--rdma-ib-write-min-bandwidth-gbps` | `validation.rdma.ibWriteMinBandwidthGbps` | Minimum peak Gbps; `0` disables bandwidth gating |\n\n## Connectivity Modes\n\n- `quick`: all same-rail node pairs plus one non-gating cross-rail canary per\n  source-rail\u002Fdestination-rail mapping.\n- `full`: every source rail × every destination rail × every ordered pod pair;\n  cross-rail results are reported but do not gate pass\u002Ffail.\n- `strict`: full matrix. Cross-rail gates by `profile.routing`: `source-based`\n  must succeed, `destination-based` must stay isolated.\n\nAll checks are source-bound. ICMP uses `ping -I \u003Csrc-iface>`, `rping` uses\n`-I \u003Csrc-ip>`, and `ib_write_bw` uses `--bind_source_ip \u003Csrc-ip>`.\n\n## Examples\n\n```bash\n# Defaults: .\u002Fcluster-config.yaml + .\u002Fdeployment, $KUBECONFIG\nl8k validate\n\n# Explicit paths\nl8k validate --user-config .\u002Fcluster-config.yaml \\\n  --deployment-files .\u002Fdeployment \\\n  --kubeconfig ~\u002F.kube\u002Fconfig\n\n# Agent mode (single JSON object on stdout, logs on stderr)\nl8k validate --output json 2>\u002Fdev\u002Fnull | jq '.summary'\n```\n\n## Output\n\nText mode prints a short report:\n\n```\nNetwork Operator release\n  selectedRelease: 26.4\n  expected version: v26.4.0-beta.6\n  deployed: network-operator (chart=26.4.0-beta.6 app=v26.4.0-beta.6 rev=3 status=deployed)\n  result: MATCH\n\nManifests\n  [FOUND] NicClusterPolicy\u002Fnic-cluster-policy in (cluster-scoped)\n  [FOUND] NicNodePolicy\u002Fnicnodepolicy-h100 in (cluster-scoped)\n  [MISSING] SriovNetwork\u002Fsriov-network-rail-0 in default — not found in cluster\n  ...\n\nSummary: 12 manifests, 1 missing\u002Ferror; version: match\n```\n\nJSON mode (`--output json`) emits one object with `versionCheck`,\n`manifests`, and `summary` fields.\n\n## When this skill activates\n\nTrigger phrases include: \"validate my deployment\", \"is my cluster\ncorrect\", \"are all the manifests applied\", \"does the chart version\nmatch\", \"did the deploy succeed\", or any discrepancy claim about\nexpected vs deployed state.\n\n## See Also\n\n- [k8s-launch-kit-deploy](..\u002Fk8s-launch-kit-deploy\u002FSKILL.md) — apply manifests\n- [k8s-launch-kit-troubleshoot](..\u002Fk8s-launch-kit-troubleshoot\u002FSKILL.md) — investigate failures uncovered by validate\n- [k8s-launch-kit-shared](..\u002Fk8s-launch-kit-shared\u002FSKILL.md) — global flags and exit codes\n",{"data":38,"body":44},{"name":4,"version":39,"description":6,"metadata":40},"1.0.0",{"requires":41},{"skills":42},[43],"k8s-launch-kit-shared",{"type":45,"children":46},"root",[47,56,81,86,93,239,251,257,371,377,676,682,740,780,786,966,972,977,987,1022,1028,1033,1039,1074],{"type":48,"tag":49,"props":50,"children":52},"element","h1",{"id":51},"l8k-validate",[53],{"type":54,"value":55},"text","l8k: Validate",{"type":48,"tag":57,"props":58,"children":59},"blockquote",{},[60],{"type":48,"tag":61,"props":62,"children":63},"p",{},[64,70,72,79],{"type":48,"tag":65,"props":66,"children":67},"strong",{},[68],{"type":54,"value":69},"PREREQUISITE:",{"type":54,"value":71}," Read ",{"type":48,"tag":73,"props":74,"children":76},"code",{"className":75},[],[77],{"type":54,"value":78},"..\u002Fk8s-launch-kit-shared\u002FSKILL.md",{"type":54,"value":80}," for install paths, global flags, and exit codes.",{"type":48,"tag":61,"props":82,"children":83},{},[84],{"type":54,"value":85},"Verify that a previously generated and deployed NVIDIA networking\ndeployment is correctly applied and matches the selected Network\nOperator release.",{"type":48,"tag":87,"props":88,"children":90},"h2",{"id":89},"what-it-checks",[91],{"type":54,"value":92},"What it checks",{"type":48,"tag":94,"props":95,"children":96},"ol",{},[97,140,190],{"type":48,"tag":98,"props":99,"children":100},"li",{},[101,106,108,114,116,122,124,130,132,138],{"type":48,"tag":65,"props":102,"children":103},{},[104],{"type":54,"value":105},"Network Operator Helm release version.",{"type":54,"value":107}," Reads the chart's\n",{"type":48,"tag":73,"props":109,"children":111},{"className":110},[],[112],{"type":54,"value":113},"appVersion",{"type":54,"value":115}," from any release Secret named\n",{"type":48,"tag":73,"props":117,"children":119},{"className":118},[],[120],{"type":54,"value":121},"sh.helm.release.v1.\u003Crelease>.v\u003CN>",{"type":54,"value":123}," whose release name contains\n\"network-operator\", in the operator namespace. Compares with the\nversion expected by ",{"type":48,"tag":73,"props":125,"children":127},{"className":126},[],[128],{"type":54,"value":129},"networkOperator.selectedRelease",{"type":54,"value":131}," in\n",{"type":48,"tag":73,"props":133,"children":135},{"className":134},[],[136],{"type":54,"value":137},"cluster-config.yaml",{"type":54,"value":139}," (looked up in l8k's embedded release catalog).",{"type":48,"tag":98,"props":141,"children":142},{},[143,148,150,156,158,164,166,172,174,180,182,188],{"type":48,"tag":65,"props":144,"children":145},{},[146],{"type":54,"value":147},"Manifest presence.",{"type":54,"value":149}," Every YAML manifest under\n",{"type":48,"tag":73,"props":151,"children":153},{"className":152},[],[154],{"type":54,"value":155},"--deployment-files",{"type":54,"value":157}," (skipping any file with \"example\" in its name)\nis fetched from the cluster via ",{"type":48,"tag":73,"props":159,"children":161},{"className":160},[],[162],{"type":54,"value":163},"client.Get",{"type":54,"value":165},". Each manifest is\nreported ",{"type":48,"tag":73,"props":167,"children":169},{"className":168},[],[170],{"type":54,"value":171},"FOUND",{"type":54,"value":173},", ",{"type":48,"tag":73,"props":175,"children":177},{"className":176},[],[178],{"type":54,"value":179},"MISSING",{"type":54,"value":181},", or ",{"type":48,"tag":73,"props":183,"children":185},{"className":184},[],[186],{"type":54,"value":187},"ERROR",{"type":54,"value":189},".",{"type":48,"tag":98,"props":191,"children":192},{},[193,198,200,206,208,214,216,222,224,230,232,238],{"type":48,"tag":65,"props":194,"children":195},{},[196],{"type":54,"value":197},"Connectivity matrix.",{"type":54,"value":199}," By default, ",{"type":48,"tag":73,"props":201,"children":203},{"className":202},[],[204],{"type":54,"value":205},"l8k validate",{"type":54,"value":207}," applies the generated\nexample DaemonSet, waits for ready pods, and runs source-bound ",{"type":48,"tag":73,"props":209,"children":211},{"className":210},[],[212],{"type":54,"value":213},"icmp",{"type":54,"value":215},",\n",{"type":48,"tag":73,"props":217,"children":219},{"className":218},[],[220],{"type":54,"value":221},"rping",{"type":54,"value":223},", and ",{"type":48,"tag":73,"props":225,"children":227},{"className":226},[],[228],{"type":54,"value":229},"ib_write_bw",{"type":54,"value":231}," tests. The default mode is ",{"type":48,"tag":73,"props":233,"children":235},{"className":234},[],[236],{"type":54,"value":237},"strict",{"type":54,"value":189},{"type":48,"tag":61,"props":240,"children":241},{},[242,244,249],{"type":54,"value":243},"Exit code is non-zero (4) on any missing manifest, version mismatch, or\ngating connectivity failure. Version checks soft-skip when prerequisites are\nabsent — no ",{"type":48,"tag":73,"props":245,"children":247},{"className":246},[],[248],{"type":54,"value":137},{"type":54,"value":250},", no Helm release Secret, etc.",{"type":48,"tag":87,"props":252,"children":254},{"id":253},"usage",[255],{"type":54,"value":256},"Usage",{"type":48,"tag":258,"props":259,"children":264},"pre",{"className":260,"code":261,"language":262,"meta":263,"style":263},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","l8k validate [--user-config \u003CPATH>] [--deployment-files \u003CDIR>] [--kubeconfig \u003CPATH>]\n","bash","",[265],{"type":48,"tag":73,"props":266,"children":267},{"__ignoreMap":263},[268],{"type":48,"tag":269,"props":270,"children":273},"span",{"class":271,"line":272},"line",1,[274,280,286,292,298,303,308,313,318,323,327,332,337,341,345,350,354,358,362,366],{"type":48,"tag":269,"props":275,"children":277},{"style":276},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[278],{"type":54,"value":279},"l8k",{"type":48,"tag":269,"props":281,"children":283},{"style":282},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[284],{"type":54,"value":285}," validate",{"type":48,"tag":269,"props":287,"children":289},{"style":288},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[290],{"type":54,"value":291}," [--user-config ",{"type":48,"tag":269,"props":293,"children":295},{"style":294},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[296],{"type":54,"value":297},"\u003C",{"type":48,"tag":269,"props":299,"children":300},{"style":282},[301],{"type":54,"value":302},"PAT",{"type":48,"tag":269,"props":304,"children":305},{"style":288},[306],{"type":54,"value":307},"H",{"type":48,"tag":269,"props":309,"children":310},{"style":294},[311],{"type":54,"value":312},">",{"type":48,"tag":269,"props":314,"children":315},{"style":282},[316],{"type":54,"value":317},"]",{"type":48,"tag":269,"props":319,"children":320},{"style":288},[321],{"type":54,"value":322}," [--deployment-files ",{"type":48,"tag":269,"props":324,"children":325},{"style":294},[326],{"type":54,"value":297},{"type":48,"tag":269,"props":328,"children":329},{"style":282},[330],{"type":54,"value":331},"DI",{"type":48,"tag":269,"props":333,"children":334},{"style":288},[335],{"type":54,"value":336},"R",{"type":48,"tag":269,"props":338,"children":339},{"style":294},[340],{"type":54,"value":312},{"type":48,"tag":269,"props":342,"children":343},{"style":282},[344],{"type":54,"value":317},{"type":48,"tag":269,"props":346,"children":347},{"style":288},[348],{"type":54,"value":349}," [--kubeconfig ",{"type":48,"tag":269,"props":351,"children":352},{"style":294},[353],{"type":54,"value":297},{"type":48,"tag":269,"props":355,"children":356},{"style":282},[357],{"type":54,"value":302},{"type":48,"tag":269,"props":359,"children":360},{"style":288},[361],{"type":54,"value":307},{"type":48,"tag":269,"props":363,"children":364},{"style":294},[365],{"type":54,"value":312},{"type":48,"tag":269,"props":367,"children":368},{"style":282},[369],{"type":54,"value":370},"]\n",{"type":48,"tag":87,"props":372,"children":374},{"id":373},"flags",[375],{"type":54,"value":376},"Flags",{"type":48,"tag":378,"props":379,"children":380},"table",{},[381,405],{"type":48,"tag":382,"props":383,"children":384},"thead",{},[385],{"type":48,"tag":386,"props":387,"children":388},"tr",{},[389,395,400],{"type":48,"tag":390,"props":391,"children":392},"th",{},[393],{"type":54,"value":394},"Flag",{"type":48,"tag":390,"props":396,"children":397},{},[398],{"type":54,"value":399},"Default",{"type":48,"tag":390,"props":401,"children":402},{},[403],{"type":54,"value":404},"Description",{"type":48,"tag":406,"props":407,"children":408},"tbody",{},[409,436,469,494,548,590,616,642],{"type":48,"tag":386,"props":410,"children":411},{},[412,422,431],{"type":48,"tag":413,"props":414,"children":415},"td",{},[416],{"type":48,"tag":73,"props":417,"children":419},{"className":418},[],[420],{"type":54,"value":421},"--kubeconfig",{"type":48,"tag":413,"props":423,"children":424},{},[425],{"type":48,"tag":73,"props":426,"children":428},{"className":427},[],[429],{"type":54,"value":430},"$KUBECONFIG",{"type":48,"tag":413,"props":432,"children":433},{},[434],{"type":54,"value":435},"Path to kubeconfig with read access to the cluster",{"type":48,"tag":386,"props":437,"children":438},{},[439,448,457],{"type":48,"tag":413,"props":440,"children":441},{},[442],{"type":48,"tag":73,"props":443,"children":445},{"className":444},[],[446],{"type":54,"value":447},"--user-config",{"type":48,"tag":413,"props":449,"children":450},{},[451],{"type":48,"tag":73,"props":452,"children":454},{"className":453},[],[455],{"type":54,"value":456},".\u002Fcluster-config.yaml",{"type":48,"tag":413,"props":458,"children":459},{},[460,462,467],{"type":54,"value":461},"Cluster config YAML; used for ",{"type":48,"tag":73,"props":463,"children":465},{"className":464},[],[466],{"type":54,"value":129},{"type":54,"value":468}," and the operator namespace",{"type":48,"tag":386,"props":470,"children":471},{},[472,480,489],{"type":48,"tag":413,"props":473,"children":474},{},[475],{"type":48,"tag":73,"props":476,"children":478},{"className":477},[],[479],{"type":54,"value":155},{"type":48,"tag":413,"props":481,"children":482},{},[483],{"type":48,"tag":73,"props":484,"children":486},{"className":485},[],[487],{"type":54,"value":488},".\u002Fdeployment",{"type":48,"tag":413,"props":490,"children":491},{},[492],{"type":54,"value":493},"Directory containing the manifests to verify",{"type":48,"tag":386,"props":495,"children":496},{},[497,506,524],{"type":48,"tag":413,"props":498,"children":499},{},[500],{"type":48,"tag":73,"props":501,"children":503},{"className":502},[],[504],{"type":54,"value":505},"--validation-mode",{"type":48,"tag":413,"props":507,"children":508},{},[509,515,517,522],{"type":48,"tag":73,"props":510,"children":512},{"className":511},[],[513],{"type":54,"value":514},"validation.mode",{"type":54,"value":516}," (",{"type":48,"tag":73,"props":518,"children":520},{"className":519},[],[521],{"type":54,"value":237},{"type":54,"value":523},")",{"type":48,"tag":413,"props":525,"children":526},{},[527,529,535,536,542,543],{"type":54,"value":528},"Connectivity mode: ",{"type":48,"tag":73,"props":530,"children":532},{"className":531},[],[533],{"type":54,"value":534},"quick",{"type":54,"value":173},{"type":48,"tag":73,"props":537,"children":539},{"className":538},[],[540],{"type":54,"value":541},"full",{"type":54,"value":181},{"type":48,"tag":73,"props":544,"children":546},{"className":545},[],[547],{"type":54,"value":237},{"type":48,"tag":386,"props":549,"children":550},{},[551,560,577],{"type":48,"tag":413,"props":552,"children":553},{},[554],{"type":48,"tag":73,"props":555,"children":557},{"className":556},[],[558],{"type":54,"value":559},"--validation-checks",{"type":48,"tag":413,"props":561,"children":562},{},[563,569,570,576],{"type":48,"tag":73,"props":564,"children":566},{"className":565},[],[567],{"type":54,"value":568},"validation.checks",{"type":54,"value":516},{"type":48,"tag":73,"props":571,"children":573},{"className":572},[],[574],{"type":54,"value":575},"icmp,rping,ib_write_bw",{"type":54,"value":523},{"type":48,"tag":413,"props":578,"children":579},{},[580,582,588],{"type":54,"value":581},"Comma-separated connectivity checks; ",{"type":48,"tag":73,"props":583,"children":585},{"className":584},[],[586],{"type":54,"value":587},"\"\"",{"type":54,"value":589}," disables all",{"type":48,"tag":386,"props":591,"children":592},{},[593,602,611],{"type":48,"tag":413,"props":594,"children":595},{},[596],{"type":48,"tag":73,"props":597,"children":599},{"className":598},[],[600],{"type":54,"value":601},"--rdma-rping-iterations",{"type":48,"tag":413,"props":603,"children":604},{},[605],{"type":48,"tag":73,"props":606,"children":608},{"className":607},[],[609],{"type":54,"value":610},"validation.rdma.rpingIterations",{"type":48,"tag":413,"props":612,"children":613},{},[614],{"type":54,"value":615},"rping client iteration count",{"type":48,"tag":386,"props":617,"children":618},{},[619,628,637],{"type":48,"tag":413,"props":620,"children":621},{},[622],{"type":48,"tag":73,"props":623,"children":625},{"className":624},[],[626],{"type":54,"value":627},"--rdma-ib-write-size",{"type":48,"tag":413,"props":629,"children":630},{},[631],{"type":48,"tag":73,"props":632,"children":634},{"className":633},[],[635],{"type":54,"value":636},"validation.rdma.ibWriteSize",{"type":48,"tag":413,"props":638,"children":639},{},[640],{"type":54,"value":641},"ib_write_bw message size",{"type":48,"tag":386,"props":643,"children":644},{},[645,654,663],{"type":48,"tag":413,"props":646,"children":647},{},[648],{"type":48,"tag":73,"props":649,"children":651},{"className":650},[],[652],{"type":54,"value":653},"--rdma-ib-write-min-bandwidth-gbps",{"type":48,"tag":413,"props":655,"children":656},{},[657],{"type":48,"tag":73,"props":658,"children":660},{"className":659},[],[661],{"type":54,"value":662},"validation.rdma.ibWriteMinBandwidthGbps",{"type":48,"tag":413,"props":664,"children":665},{},[666,668,674],{"type":54,"value":667},"Minimum peak Gbps; ",{"type":48,"tag":73,"props":669,"children":671},{"className":670},[],[672],{"type":54,"value":673},"0",{"type":54,"value":675}," disables bandwidth gating",{"type":48,"tag":87,"props":677,"children":679},{"id":678},"connectivity-modes",[680],{"type":54,"value":681},"Connectivity Modes",{"type":48,"tag":683,"props":684,"children":685},"ul",{},[686,696,706],{"type":48,"tag":98,"props":687,"children":688},{},[689,694],{"type":48,"tag":73,"props":690,"children":692},{"className":691},[],[693],{"type":54,"value":534},{"type":54,"value":695},": all same-rail node pairs plus one non-gating cross-rail canary per\nsource-rail\u002Fdestination-rail mapping.",{"type":48,"tag":98,"props":697,"children":698},{},[699,704],{"type":48,"tag":73,"props":700,"children":702},{"className":701},[],[703],{"type":54,"value":541},{"type":54,"value":705},": every source rail × every destination rail × every ordered pod pair;\ncross-rail results are reported but do not gate pass\u002Ffail.",{"type":48,"tag":98,"props":707,"children":708},{},[709,714,716,722,724,730,732,738],{"type":48,"tag":73,"props":710,"children":712},{"className":711},[],[713],{"type":54,"value":237},{"type":54,"value":715},": full matrix. Cross-rail gates by ",{"type":48,"tag":73,"props":717,"children":719},{"className":718},[],[720],{"type":54,"value":721},"profile.routing",{"type":54,"value":723},": ",{"type":48,"tag":73,"props":725,"children":727},{"className":726},[],[728],{"type":54,"value":729},"source-based",{"type":54,"value":731},"\nmust succeed, ",{"type":48,"tag":73,"props":733,"children":735},{"className":734},[],[736],{"type":54,"value":737},"destination-based",{"type":54,"value":739}," must stay isolated.",{"type":48,"tag":61,"props":741,"children":742},{},[743,745,751,752,757,759,765,766,771,773,779],{"type":54,"value":744},"All checks are source-bound. ICMP uses ",{"type":48,"tag":73,"props":746,"children":748},{"className":747},[],[749],{"type":54,"value":750},"ping -I \u003Csrc-iface>",{"type":54,"value":173},{"type":48,"tag":73,"props":753,"children":755},{"className":754},[],[756],{"type":54,"value":221},{"type":54,"value":758}," uses\n",{"type":48,"tag":73,"props":760,"children":762},{"className":761},[],[763],{"type":54,"value":764},"-I \u003Csrc-ip>",{"type":54,"value":223},{"type":48,"tag":73,"props":767,"children":769},{"className":768},[],[770],{"type":54,"value":229},{"type":54,"value":772}," uses ",{"type":48,"tag":73,"props":774,"children":776},{"className":775},[],[777],{"type":54,"value":778},"--bind_source_ip \u003Csrc-ip>",{"type":54,"value":189},{"type":48,"tag":87,"props":781,"children":783},{"id":782},"examples",[784],{"type":54,"value":785},"Examples",{"type":48,"tag":258,"props":787,"children":789},{"className":260,"code":788,"language":262,"meta":263,"style":263},"# Defaults: .\u002Fcluster-config.yaml + .\u002Fdeployment, $KUBECONFIG\nl8k validate\n\n# Explicit paths\nl8k validate --user-config .\u002Fcluster-config.yaml \\\n  --deployment-files .\u002Fdeployment \\\n  --kubeconfig ~\u002F.kube\u002Fconfig\n\n# Agent mode (single JSON object on stdout, logs on stderr)\nl8k validate --output json 2>\u002Fdev\u002Fnull | jq '.summary'\n",[790],{"type":48,"tag":73,"props":791,"children":792},{"__ignoreMap":263},[793,802,815,825,833,860,878,892,900,909],{"type":48,"tag":269,"props":794,"children":795},{"class":271,"line":272},[796],{"type":48,"tag":269,"props":797,"children":799},{"style":798},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[800],{"type":54,"value":801},"# Defaults: .\u002Fcluster-config.yaml + .\u002Fdeployment, $KUBECONFIG\n",{"type":48,"tag":269,"props":803,"children":805},{"class":271,"line":804},2,[806,810],{"type":48,"tag":269,"props":807,"children":808},{"style":276},[809],{"type":54,"value":279},{"type":48,"tag":269,"props":811,"children":812},{"style":282},[813],{"type":54,"value":814}," validate\n",{"type":48,"tag":269,"props":816,"children":818},{"class":271,"line":817},3,[819],{"type":48,"tag":269,"props":820,"children":822},{"emptyLinePlaceholder":821},true,[823],{"type":54,"value":824},"\n",{"type":48,"tag":269,"props":826,"children":827},{"class":271,"line":30},[828],{"type":48,"tag":269,"props":829,"children":830},{"style":798},[831],{"type":54,"value":832},"# Explicit paths\n",{"type":48,"tag":269,"props":834,"children":836},{"class":271,"line":835},5,[837,841,845,850,855],{"type":48,"tag":269,"props":838,"children":839},{"style":276},[840],{"type":54,"value":279},{"type":48,"tag":269,"props":842,"children":843},{"style":282},[844],{"type":54,"value":285},{"type":48,"tag":269,"props":846,"children":847},{"style":282},[848],{"type":54,"value":849}," --user-config",{"type":48,"tag":269,"props":851,"children":852},{"style":282},[853],{"type":54,"value":854}," .\u002Fcluster-config.yaml",{"type":48,"tag":269,"props":856,"children":857},{"style":288},[858],{"type":54,"value":859}," \\\n",{"type":48,"tag":269,"props":861,"children":863},{"class":271,"line":862},6,[864,869,874],{"type":48,"tag":269,"props":865,"children":866},{"style":282},[867],{"type":54,"value":868},"  --deployment-files",{"type":48,"tag":269,"props":870,"children":871},{"style":282},[872],{"type":54,"value":873}," .\u002Fdeployment",{"type":48,"tag":269,"props":875,"children":876},{"style":288},[877],{"type":54,"value":859},{"type":48,"tag":269,"props":879,"children":881},{"class":271,"line":880},7,[882,887],{"type":48,"tag":269,"props":883,"children":884},{"style":282},[885],{"type":54,"value":886},"  --kubeconfig",{"type":48,"tag":269,"props":888,"children":889},{"style":282},[890],{"type":54,"value":891}," ~\u002F.kube\u002Fconfig\n",{"type":48,"tag":269,"props":893,"children":895},{"class":271,"line":894},8,[896],{"type":48,"tag":269,"props":897,"children":898},{"emptyLinePlaceholder":821},[899],{"type":54,"value":824},{"type":48,"tag":269,"props":901,"children":903},{"class":271,"line":902},9,[904],{"type":48,"tag":269,"props":905,"children":906},{"style":798},[907],{"type":54,"value":908},"# Agent mode (single JSON object on stdout, logs on stderr)\n",{"type":48,"tag":269,"props":910,"children":912},{"class":271,"line":911},10,[913,917,921,926,931,936,941,946,951,956,961],{"type":48,"tag":269,"props":914,"children":915},{"style":276},[916],{"type":54,"value":279},{"type":48,"tag":269,"props":918,"children":919},{"style":282},[920],{"type":54,"value":285},{"type":48,"tag":269,"props":922,"children":923},{"style":282},[924],{"type":54,"value":925}," --output",{"type":48,"tag":269,"props":927,"children":928},{"style":282},[929],{"type":54,"value":930}," json",{"type":48,"tag":269,"props":932,"children":933},{"style":294},[934],{"type":54,"value":935}," 2>",{"type":48,"tag":269,"props":937,"children":938},{"style":282},[939],{"type":54,"value":940},"\u002Fdev\u002Fnull",{"type":48,"tag":269,"props":942,"children":943},{"style":294},[944],{"type":54,"value":945}," |",{"type":48,"tag":269,"props":947,"children":948},{"style":276},[949],{"type":54,"value":950}," jq",{"type":48,"tag":269,"props":952,"children":953},{"style":294},[954],{"type":54,"value":955}," '",{"type":48,"tag":269,"props":957,"children":958},{"style":282},[959],{"type":54,"value":960},".summary",{"type":48,"tag":269,"props":962,"children":963},{"style":294},[964],{"type":54,"value":965},"'\n",{"type":48,"tag":87,"props":967,"children":969},{"id":968},"output",[970],{"type":54,"value":971},"Output",{"type":48,"tag":61,"props":973,"children":974},{},[975],{"type":54,"value":976},"Text mode prints a short report:",{"type":48,"tag":258,"props":978,"children":982},{"className":979,"code":981,"language":54},[980],"language-text","Network Operator release\n  selectedRelease: 26.4\n  expected version: v26.4.0-beta.6\n  deployed: network-operator (chart=26.4.0-beta.6 app=v26.4.0-beta.6 rev=3 status=deployed)\n  result: MATCH\n\nManifests\n  [FOUND] NicClusterPolicy\u002Fnic-cluster-policy in (cluster-scoped)\n  [FOUND] NicNodePolicy\u002Fnicnodepolicy-h100 in (cluster-scoped)\n  [MISSING] SriovNetwork\u002Fsriov-network-rail-0 in default — not found in cluster\n  ...\n\nSummary: 12 manifests, 1 missing\u002Ferror; version: match\n",[983],{"type":48,"tag":73,"props":984,"children":985},{"__ignoreMap":263},[986],{"type":54,"value":981},{"type":48,"tag":61,"props":988,"children":989},{},[990,992,998,1000,1006,1007,1013,1014,1020],{"type":54,"value":991},"JSON mode (",{"type":48,"tag":73,"props":993,"children":995},{"className":994},[],[996],{"type":54,"value":997},"--output json",{"type":54,"value":999},") emits one object with ",{"type":48,"tag":73,"props":1001,"children":1003},{"className":1002},[],[1004],{"type":54,"value":1005},"versionCheck",{"type":54,"value":215},{"type":48,"tag":73,"props":1008,"children":1010},{"className":1009},[],[1011],{"type":54,"value":1012},"manifests",{"type":54,"value":223},{"type":48,"tag":73,"props":1015,"children":1017},{"className":1016},[],[1018],{"type":54,"value":1019},"summary",{"type":54,"value":1021}," fields.",{"type":48,"tag":87,"props":1023,"children":1025},{"id":1024},"when-this-skill-activates",[1026],{"type":54,"value":1027},"When this skill activates",{"type":48,"tag":61,"props":1029,"children":1030},{},[1031],{"type":54,"value":1032},"Trigger phrases include: \"validate my deployment\", \"is my cluster\ncorrect\", \"are all the manifests applied\", \"does the chart version\nmatch\", \"did the deploy succeed\", or any discrepancy claim about\nexpected vs deployed state.",{"type":48,"tag":87,"props":1034,"children":1036},{"id":1035},"see-also",[1037],{"type":54,"value":1038},"See Also",{"type":48,"tag":683,"props":1040,"children":1041},{},[1042,1054,1065],{"type":48,"tag":98,"props":1043,"children":1044},{},[1045,1052],{"type":48,"tag":1046,"props":1047,"children":1049},"a",{"href":1048},"..\u002Fk8s-launch-kit-deploy\u002FSKILL.md",[1050],{"type":54,"value":1051},"k8s-launch-kit-deploy",{"type":54,"value":1053}," — apply manifests",{"type":48,"tag":98,"props":1055,"children":1056},{},[1057,1063],{"type":48,"tag":1046,"props":1058,"children":1060},{"href":1059},"..\u002Fk8s-launch-kit-troubleshoot\u002FSKILL.md",[1061],{"type":54,"value":1062},"k8s-launch-kit-troubleshoot",{"type":54,"value":1064}," — investigate failures uncovered by validate",{"type":48,"tag":98,"props":1066,"children":1067},{},[1068,1072],{"type":48,"tag":1046,"props":1069,"children":1070},{"href":78},[1071],{"type":54,"value":43},{"type":54,"value":1073}," — global flags and exit codes",{"type":48,"tag":1075,"props":1076,"children":1077},"style",{},[1078],{"type":54,"value":1079},"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":1081,"total":1238},[1082,1100,1118,1129,1141,1155,1168,1182,1193,1204,1218,1227],{"slug":1083,"name":1083,"fn":1084,"description":1085,"org":1086,"tags":1087,"stars":1097,"repoUrl":1098,"updatedAt":1099},"nemoclaw-user-guide","retrieve NemoClaw documentation and configuration","Guides human users' AI agents to the NemoClaw docs MCP server and canonical Fern documentation in Markdown form. Use when users ask how to install, configure, operate, troubleshoot, secure, or learn NemoClaw with an AI coding assistant. Trigger keywords - nemoclaw docs, use nemoclaw with ai agent, nemoclaw mcp docs, nemoclaw install help, nemoclaw quickstart, nemoclaw markdown docs, llms.txt, agent skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1088,1091,1094],{"name":1089,"slug":1090,"type":15},"Documentation","documentation",{"name":1092,"slug":1093,"type":15},"MCP","mcp",{"name":1095,"slug":1096,"type":15},"Search","search",21777,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FNemoClaw","2026-07-20T06:00:01.461044",{"slug":1101,"name":1101,"fn":1102,"description":1103,"org":1104,"tags":1105,"stars":1115,"repoUrl":1116,"updatedAt":1117},"mcore-build-and-dependency","manage Megatron-LM development environments","Container-based dev environment setup and dependency management for Megatron-LM. Covers acquiring and launching the CI container, uv package management, and updating uv.lock.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1106,1109,1112],{"name":1107,"slug":1108,"type":15},"Containers","containers",{"name":1110,"slug":1111,"type":15},"Deployment","deployment",{"name":1113,"slug":1114,"type":15},"Python","python",17049,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FMegatron-LM","2026-07-27T06:06:11.249662",{"slug":1119,"name":1119,"fn":1120,"description":1121,"org":1122,"tags":1123,"stars":1115,"repoUrl":1116,"updatedAt":1128},"mcore-bump-base-image","update NVIDIA PyTorch base images","Bump the NVIDIA PyTorch base image (`nvcr.io\u002Fnvidia\u002Fpytorch:YY.MM-py3`) used by Megatron-LM CI. Covers the two pin sites (GitHub CI in `docker\u002F.ngc_version.dev` and GitLab CI in `.gitlab\u002Fstages\u002F01.build.yml`), the post-bump CI loop (re-run functional tests, refresh golden values, mark broken tests), and the gotchas that bit PRs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1124,1127],{"name":1125,"slug":1126,"type":15},"CI\u002FCD","ci-cd",{"name":1110,"slug":1111,"type":15},"2026-07-14T05:25:59.97109",{"slug":1130,"name":1130,"fn":1131,"description":1132,"org":1133,"tags":1134,"stars":1115,"repoUrl":1116,"updatedAt":1140},"mcore-cicd","manage CI\u002FCD pipelines for Megatron-LM","CI\u002FCD reference for Megatron-LM. Covers CI pipeline structure, PR scope labels, triggering internal GitLab CI (which force-pushes the current branch to a pull-request\u002FBRANCH ref — always dry-run and verify the destination first; never run against shared or protected branches), and CI failure investigation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1135,1136,1137],{"name":1125,"slug":1126,"type":15},{"name":1110,"slug":1111,"type":15},{"name":1138,"slug":1139,"type":15},"GitHub","github","2026-07-27T06:06:12.278222",{"slug":1142,"name":1142,"fn":1143,"description":1144,"org":1145,"tags":1146,"stars":1115,"repoUrl":1116,"updatedAt":1154},"mcore-create-issue","investigate CI failures and create issues","Investigate a failing GitHub Actions run or job and create a GitHub issue for the failure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1147,1150,1151],{"name":1148,"slug":1149,"type":15},"Debugging","debugging",{"name":1138,"slug":1139,"type":15},{"name":1152,"slug":1153,"type":15},"Triage","triage","2026-07-14T05:25:57.442089",{"slug":1156,"name":1156,"fn":1157,"description":1158,"org":1159,"tags":1160,"stars":1115,"repoUrl":1116,"updatedAt":1167},"mcore-linting-and-formatting","lint and format Megatron-LM code","Linting and formatting for Megatron-LM. Covers running autoformat.sh, tools (ruff, black, isort, pylint, mypy), and code style rules.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1161,1164],{"name":1162,"slug":1163,"type":15},"Best Practices","best-practices",{"name":1165,"slug":1166,"type":15},"Code Analysis","code-analysis","2026-07-14T05:25:56.18433",{"slug":1169,"name":1169,"fn":1170,"description":1171,"org":1172,"tags":1173,"stars":1115,"repoUrl":1116,"updatedAt":1181},"mcore-migrate-gpt-to-hybrid","migrate Megatron-LM models to HybridModel","Migration guide for moving Megatron Core GPTModel checkpoints, model providers, training commands, and layer mappings to HybridModel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1174,1177,1180],{"name":1175,"slug":1176,"type":15},"Machine Learning","machine-learning",{"name":1178,"slug":1179,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:11.777011",{"slug":1183,"name":1183,"fn":1184,"description":1185,"org":1186,"tags":1187,"stars":1115,"repoUrl":1116,"updatedAt":1192},"mcore-onboard-gb200-1node-tests","onboard functional tests for GB200","Onboard 1-node GitHub MR functional tests for GB200 from existing mr-scoped 2-node tests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1188,1189],{"name":17,"slug":18,"type":15},{"name":1190,"slug":1191,"type":15},"Testing","testing","2026-07-14T05:25:53.673039",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":1115,"repoUrl":1116,"updatedAt":1203},"mcore-run-on-slurm","launch distributed training jobs on SLURM","How to launch distributed Megatron-LM training jobs on a SLURM cluster. Covers a minimal sbatch skeleton, environment-variable setup for torch.distributed.run, CUDA_DEVICE_MAX_CONNECTIONS rules across hardware and parallelism modes, container conventions, monitoring, and per-rank failure diagnosis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1199,1200],{"name":1110,"slug":1111,"type":15},{"name":1201,"slug":1202,"type":15},"Infrastructure","infrastructure","2026-07-14T05:25:49.362534",{"slug":1205,"name":1205,"fn":1206,"description":1207,"org":1208,"tags":1209,"stars":1115,"repoUrl":1116,"updatedAt":1217},"mcore-split-pr","split pull requests to reduce review load","Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1210,1213,1214],{"name":1211,"slug":1212,"type":15},"Code Review","code-review",{"name":1138,"slug":1139,"type":15},{"name":1215,"slug":1216,"type":15},"Pull Requests","pull-requests","2026-07-14T05:26:01.226578",{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":1115,"repoUrl":1116,"updatedAt":1226},"mcore-testing","run and manage Megatron-LM tests","Test system for Megatron-LM. Covers test layout, recipe YAML structure, adding and running unit and functional tests, golden values, marker filters, and CI parity.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1224,1225],{"name":17,"slug":18,"type":15},{"name":1190,"slug":1191,"type":15},"2026-07-14T05:25:54.928983",{"slug":1228,"name":1228,"fn":1229,"description":1230,"org":1231,"tags":1232,"stars":1115,"repoUrl":1116,"updatedAt":1237},"nightly-sync","manage nightly main-to-dev sync workflows","Domain knowledge for the nightly main-to-dev sync workflow. Covers merge strategy, CI architecture, failure investigation, and known issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1233,1236],{"name":1234,"slug":1235,"type":15},"Automation","automation",{"name":1125,"slug":1126,"type":15},"2026-07-30T05:29:03.275638",496,{"items":1240,"total":911},[1241,1254,1264,1280,1292,1306,1318],{"slug":1242,"name":1242,"fn":1243,"description":1244,"org":1245,"tags":1246,"stars":26,"repoUrl":27,"updatedAt":1253},"k8s-launch-kit-config","configure k8s-launch-kit clusters","Use this skill when the user needs help understanding, creating, or editing a k8s-launch-kit (l8k) configuration file (l8k-config.yaml or cluster-config.yaml). Activate for: config file questions, parameter tuning, subnet configuration, NV-IPAM setup, DOCA driver settings, maintenance concurrency, NIC configuration operator settings, changing MTU, VFs, resource names, or understanding what any config field does.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1247,1250,1251,1252],{"name":1248,"slug":1249,"type":15},"Configuration","configuration",{"name":1110,"slug":1111,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},"2026-07-30T05:29:15.229216",{"slug":1051,"name":1051,"fn":1255,"description":1256,"org":1257,"tags":1258,"stars":26,"repoUrl":27,"updatedAt":1263},"deploy NVIDIA networking manifests to Kubernetes","Use this skill when the user wants to deploy generated NVIDIA networking manifests to a Kubernetes cluster using k8s-launch-kit (l8k). Activate for: applying manifests, deploying to cluster, the `l8k deploy` subcommand or the legacy --deploy flag on `l8k generate`, applying generated files, or any mention of pushing l8k output to a live cluster. Even if the user just says 'apply these' or 'push to cluster' after generating manifests, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1259,1260,1261,1262],{"name":1110,"slug":1111,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-07-14T05:31:50.114923",{"slug":1265,"name":1265,"fn":1266,"description":1267,"org":1268,"tags":1269,"stars":26,"repoUrl":27,"updatedAt":1279},"k8s-launch-kit-discover","discover Kubernetes cluster network hardware capabilities","Use this skill when the user wants to discover their Kubernetes cluster's network hardware capabilities using k8s-launch-kit (l8k). Activate for: cluster discovery, hardware detection, NIC detection, finding what GPUs or NICs are in a cluster, creating a cluster config file, or when the user says 'discover' in the context of l8k or NVIDIA networking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1270,1273,1274,1275,1276],{"name":1271,"slug":1272,"type":15},"Hardware","hardware",{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1277,"slug":1278,"type":15},"Operations","operations","2026-07-14T05:31:58.825512",{"slug":1281,"name":1281,"fn":1282,"description":1283,"org":1284,"tags":1285,"stars":26,"repoUrl":27,"updatedAt":1291},"k8s-launch-kit-dryrun","preview NVIDIA networking deployment changes","Use this skill when the user wants to preview what k8s-launch-kit (l8k) would deploy without making changes, or wants to safely validate their configuration before applying. Activate for: dry-run, preview, validation, 'what would happen if', testing configurations, schema discovery, checking generated manifests, or any cautious pre-deployment step. Also use when the user asks 'is my config valid' or 'show me what would be created' -- even without mentioning dry-run explicitly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1286,1287,1288,1289,1290],{"name":1248,"slug":1249,"type":15},{"name":1110,"slug":1111,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-07-14T05:31:56.325698",{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1296,"tags":1297,"stars":26,"repoUrl":27,"updatedAt":1305},"k8s-launch-kit-generate","generate Kubernetes manifests for NVIDIA networking","Use this skill when the user wants to generate Kubernetes YAML manifests for NVIDIA networking deployment using k8s-launch-kit (l8k). Activate for: manifest generation, profile selection, choosing between SR-IOV\u002Fhost-device\u002FRDMA-shared\u002FIPoIB\u002FMacVLAN\u002FSpectrum-X, creating deployment files, or when the user asks 'which profile should I use' or needs help choosing a network configuration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1298,1299,1300,1301,1302],{"name":1110,"slug":1111,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1303,"slug":1304,"type":15},"YAML","yaml","2026-07-14T05:31:51.352013",{"slug":1307,"name":1307,"fn":1308,"description":1309,"org":1310,"tags":1311,"stars":26,"repoUrl":27,"updatedAt":1317},"k8s-launch-kit-pipeline","run end-to-end NVIDIA networking deployment pipelines","Use this skill when the user wants to run the full k8s-launch-kit (l8k) pipeline end-to-end: discover cluster hardware, select a profile, generate manifests, and deploy them all in one command. Also activate for CI\u002FCD integration, automation pipelines, 'one-liner', 'complete workflow', or end-to-end NVIDIA networking deployment.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1312,1313,1314,1315,1316],{"name":1234,"slug":1235,"type":15},{"name":1110,"slug":1111,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-07-14T05:31:55.07782",{"slug":43,"name":43,"fn":1319,"description":1320,"org":1321,"tags":1322,"stars":26,"repoUrl":27,"updatedAt":1331},"manage NVIDIA k8s-launch-kit CLI patterns","k8s-launch-kit (l8k) CLI: Shared patterns for binary location, global flags, output formatting, exit codes, and error handling. Read this before using any other k8s-launch-kit skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1323,1326,1329,1330],{"name":1324,"slug":1325,"type":15},"CLI","cli",{"name":1327,"slug":1328,"type":15},"Engineering","engineering",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},"2026-07-14T05:32:01.309487"]