[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-nvidia-i4h-catheter-navigation-e2e":3,"mdc--gdkaev-key":34,"related-org-nvidia-i4h-catheter-navigation-e2e":1452,"related-repo-nvidia-i4h-catheter-navigation-e2e":1611},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"i4h-catheter-navigation-e2e","run end-to-end catheter navigation smoke tests","End-to-end smoke for catheter navigation covering setup, digital twin, DRR, and unit tests. Use when asked to run the full catheter workflow smoke or demo the v0.7 pipeline.",{"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,20],{"name":13,"slug":14,"type":15},"Robotics","robotics","tag",{"name":17,"slug":18,"type":15},"Healthcare","healthcare",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Testing","testing",2473,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fskills","2026-07-23T06:06:05.799689","Apache-2.0",281,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"AI agent skills published by NVIDIA","https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fi4h-catheter-navigation-e2e","---\nname: i4h-catheter-navigation-e2e\nversion: \"0.7.0\"\ndescription: End-to-end smoke for catheter navigation covering setup, digital twin, DRR, and unit tests. Use when asked to run the full catheter workflow smoke or demo the v0.7 pipeline.\nlicense: Apache-2.0\nmetadata:\n  author: \"Isaac for Healthcare Team \u003Cisaac-for-healthcare-support@nvidia.com>\"\n  tags:\n    - isaac-for-healthcare\n    - i4h\n    - catheter-navigation\n    - end-to-end\n    - smoke\n---\n\n# i4h Catheter Navigation - End-to-End Smoke\n\n## Purpose\n\nRun a v0.7 smoke pipeline: verify setup, build a digital twin from a TotalSegmentator subject, render a DRR from cache, and run CPU unittests. Skips the interactive viewport (requires display).\n\n## Base Code\n\n```bash\nROOT=\"${I4H_WORKFLOWS:-$(git rev-parse --show-toplevel 2>\u002Fdev\u002Fnull)}\"\nif [ ! -d \"$ROOT\u002Fworkflows\u002Fcatheter_navigation\" ]; then\n  ROOT=\"${I4H_WORKFLOWS:-$HOME\u002Fi4h-workflows}\"\n  [ -d \"$ROOT\u002Fworkflows\u002Fcatheter_navigation\" ] || git clone https:\u002F\u002Fgithub.com\u002Fisaac-for-healthcare\u002Fi4h-workflows \"$ROOT\"\nfi\nexport I4H_WORKFLOWS=\"$ROOT\"; cd \"$ROOT\"\n```\n\n## Basics\n\nStages map to individual skills; this skill chains them with shared `RUN_DIR` and `CACHE`.\n\n| Stage | Skill |\n|---|---|\n| setup + CPU smoke | [[i4h-catheter-navigation-setup]] |\n| digital twin | [[i4h-catheter-navigation-digital-twin]] |\n| GPU DRR | [[i4h-catheter-navigation-render-drr]] |\n| unittest | [[i4h-catheter-navigation-smoke]] |\n\n## Run\n\nRun the steps below in order. Each step is a separate bash call; variables persist in the local agent's tmux session.\n\n### Step 1 - initialize run\n\n```bash\nREPO_ROOT=\"${I4H_WORKFLOWS:-$(git rev-parse --show-toplevel 2>\u002Fdev\u002Fnull)}\"; [ -d \"$REPO_ROOT\u002Fworkflows\u002Fcatheter_navigation\" ] || REPO_ROOT=\"$HOME\u002Fi4h-workflows\"\nWF_ROOT=\"${REPO_ROOT}\u002Fworkflows\u002Fcatheter_navigation\"\nRUN_DIR=\"${WF_ROOT}\u002Fruns\u002Fe2e_$(date +%Y%m%d_%H%M%S)\"\nmkdir -p \"${RUN_DIR}\u002Flogs\"\nln -sfn \"${RUN_DIR}\" \"${WF_ROOT}\u002Fruns\u002F.latest\"\nCACHE=\"${CACHE:-\u002Ftmp\u002Fct_cache}\"\nSUBJ=\"${SUBJ:-}\"\nexport I4H_WORKFLOWS=\"$REPO_ROOT\"\n```\n\n### Step 2 - setup verify\n\nFollow [[i4h-catheter-navigation-setup]] Steps 1-3; tee to `${RUN_DIR}\u002Flogs\u002Fsetup.log`.\n\n### Step 3 - digital twin (requires SUBJ)\n\nSet `SUBJ` to an extracted TotalSegmentator subject, then follow [[i4h-catheter-navigation-digital-twin]] Steps 3-4.\n\nIf `SUBJ` is unset, skip to Step 4 with synthetic DRR only and note partial e2e in the summary.\n\n### Step 4 - render DRR\n\nIf Step 3 succeeded, set `CACHE` and follow [[i4h-catheter-navigation-render-drr]] cache variant.\nOtherwise run synthetic render to `${RUN_DIR}\u002Fdrr_synthetic.png`.\n\n### Step 5 - smoke tests\n\nFollow [[i4h-catheter-navigation-smoke]]; log to `${RUN_DIR}\u002Flogs\u002Fsmoke.log`.\n\n### Step 6 - summary\n\n```bash\ncat > \"${RUN_DIR}\u002Flogs\u002FSUMMARY.txt\" \u003C\u003CEOF\nCatheter navigation e2e smoke\nRUN_DIR=${RUN_DIR}\nCACHE=${CACHE}\nSUBJ=${SUBJ:-\u003Cskipped>}\nArtifacts:\n  $(ls -1 \"${RUN_DIR}\" 2>\u002Fdev\u002Fnull || true)\nEOF\ncat \"${RUN_DIR}\u002Flogs\u002FSUMMARY.txt\"\n```\n\n## Flags (informal)\n\n- Skip digital twin when `SUBJ` unset -> synthetic DRR only.\n- Add viewport manually via [[i4h-catheter-navigation-viewport]] when a display is available.\n\n## Outputs\n\n- `RUN_DIR\u002Flogs\u002F` - per-stage logs and `SUMMARY.txt`\n- `RUN_DIR\u002Fdrr.png` or `drr_synthetic.png` - rendered frame\n- `CACHE\u002F` - digital twin artifacts when Step 3 ran\n\n## Prerequisites\n\n- [[i4h-catheter-navigation-setup]] host requirements.\n- `SUBJ` for full e2e (otherwise partial smoke).\n- GPU for Step 4 cache render.\n\n## Limitations\n\n- Does not launch the interactive viewport (display required).\n- Does not cover RL\u002FIL training loops.\n\n## Troubleshooting\n\n- Partial run when no CT data - expected; document which stages ran.\n- GPU render failure - fall back to synthetic DRR and report GPU setup gap.\n\n## Final Response\n\nPrint `RUN_DIR`, stages completed\u002Fskipped, DRR output path, smoke-test status, and recommend [[i4h-catheter-navigation-viewport]] for interactive demo.\n",{"data":35,"body":45},{"name":4,"version":36,"description":6,"license":26,"metadata":37},"0.7.0",{"author":38,"tags":39},"Isaac for Healthcare Team \u003Cisaac-for-healthcare-support@nvidia.com>",[40,41,42,43,44],"isaac-for-healthcare","i4h","catheter-navigation","end-to-end","smoke",{"type":46,"children":47},"root",[48,57,64,70,76,410,416,437,517,523,528,535,935,941,953,959,971,983,989,1008,1014,1026,1032,1269,1275,1297,1303,1353,1359,1390,1396,1409,1415,1428,1434,1446],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"i4h-catheter-navigation-end-to-end-smoke",[54],{"type":55,"value":56},"text","i4h Catheter Navigation - End-to-End Smoke",{"type":49,"tag":58,"props":59,"children":61},"h2",{"id":60},"purpose",[62],{"type":55,"value":63},"Purpose",{"type":49,"tag":65,"props":66,"children":67},"p",{},[68],{"type":55,"value":69},"Run a v0.7 smoke pipeline: verify setup, build a digital twin from a TotalSegmentator subject, render a DRR from cache, and run CPU unittests. Skips the interactive viewport (requires display).",{"type":49,"tag":58,"props":71,"children":73},{"id":72},"base-code",[74],{"type":55,"value":75},"Base Code",{"type":49,"tag":77,"props":78,"children":83},"pre",{"className":79,"code":80,"language":81,"meta":82,"style":82},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","ROOT=\"${I4H_WORKFLOWS:-$(git rev-parse --show-toplevel 2>\u002Fdev\u002Fnull)}\"\nif [ ! -d \"$ROOT\u002Fworkflows\u002Fcatheter_navigation\" ]; then\n  ROOT=\"${I4H_WORKFLOWS:-$HOME\u002Fi4h-workflows}\"\n  [ -d \"$ROOT\u002Fworkflows\u002Fcatheter_navigation\" ] || git clone https:\u002F\u002Fgithub.com\u002Fisaac-for-healthcare\u002Fi4h-workflows \"$ROOT\"\nfi\nexport I4H_WORKFLOWS=\"$ROOT\"; cd \"$ROOT\"\n","bash","",[84],{"type":49,"tag":85,"props":86,"children":87},"code",{"__ignoreMap":82},[88,181,236,279,347,356],{"type":49,"tag":89,"props":90,"children":93},"span",{"class":91,"line":92},"line",1,[94,100,106,111,116,121,127,132,137,142,147,152,157,162,166,171,176],{"type":49,"tag":89,"props":95,"children":97},{"style":96},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[98],{"type":55,"value":99},"ROOT",{"type":49,"tag":89,"props":101,"children":103},{"style":102},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[104],{"type":55,"value":105},"=",{"type":49,"tag":89,"props":107,"children":108},{"style":102},[109],{"type":55,"value":110},"\"${",{"type":49,"tag":89,"props":112,"children":113},{"style":96},[114],{"type":55,"value":115},"I4H_WORKFLOWS",{"type":49,"tag":89,"props":117,"children":118},{"style":102},[119],{"type":55,"value":120},":-",{"type":49,"tag":89,"props":122,"children":124},{"style":123},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[125],{"type":55,"value":126},"$(",{"type":49,"tag":89,"props":128,"children":129},{"style":96},[130],{"type":55,"value":131},"git",{"type":49,"tag":89,"props":133,"children":134},{"style":96},[135],{"type":55,"value":136}," rev-parse",{"type":49,"tag":89,"props":138,"children":139},{"style":96},[140],{"type":55,"value":141}," --show-toplevel",{"type":49,"tag":89,"props":143,"children":144},{"style":96},[145],{"type":55,"value":146}," 2",{"type":49,"tag":89,"props":148,"children":149},{"style":123},[150],{"type":55,"value":151},">",{"type":49,"tag":89,"props":153,"children":154},{"style":102},[155],{"type":55,"value":156},"\u002F",{"type":49,"tag":89,"props":158,"children":159},{"style":96},[160],{"type":55,"value":161},"dev",{"type":49,"tag":89,"props":163,"children":164},{"style":102},[165],{"type":55,"value":156},{"type":49,"tag":89,"props":167,"children":168},{"style":96},[169],{"type":55,"value":170},"null",{"type":49,"tag":89,"props":172,"children":173},{"style":123},[174],{"type":55,"value":175},")",{"type":49,"tag":89,"props":177,"children":178},{"style":102},[179],{"type":55,"value":180},"}\"\n",{"type":49,"tag":89,"props":182,"children":184},{"class":91,"line":183},2,[185,191,196,201,206,211,216,221,226,231],{"type":49,"tag":89,"props":186,"children":188},{"style":187},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[189],{"type":55,"value":190},"if",{"type":49,"tag":89,"props":192,"children":193},{"style":102},[194],{"type":55,"value":195}," [",{"type":49,"tag":89,"props":197,"children":198},{"style":102},[199],{"type":55,"value":200}," !",{"type":49,"tag":89,"props":202,"children":203},{"style":102},[204],{"type":55,"value":205}," -d",{"type":49,"tag":89,"props":207,"children":208},{"style":102},[209],{"type":55,"value":210}," \"",{"type":49,"tag":89,"props":212,"children":213},{"style":96},[214],{"type":55,"value":215},"$ROOT",{"type":49,"tag":89,"props":217,"children":218},{"style":123},[219],{"type":55,"value":220},"\u002Fworkflows\u002Fcatheter_navigation",{"type":49,"tag":89,"props":222,"children":223},{"style":102},[224],{"type":55,"value":225},"\"",{"type":49,"tag":89,"props":227,"children":228},{"style":102},[229],{"type":55,"value":230}," ];",{"type":49,"tag":89,"props":232,"children":233},{"style":187},[234],{"type":55,"value":235}," then\n",{"type":49,"tag":89,"props":237,"children":239},{"class":91,"line":238},3,[240,245,249,253,257,261,266,270,275],{"type":49,"tag":89,"props":241,"children":242},{"style":96},[243],{"type":55,"value":244},"  ROOT",{"type":49,"tag":89,"props":246,"children":247},{"style":102},[248],{"type":55,"value":105},{"type":49,"tag":89,"props":250,"children":251},{"style":102},[252],{"type":55,"value":110},{"type":49,"tag":89,"props":254,"children":255},{"style":96},[256],{"type":55,"value":115},{"type":49,"tag":89,"props":258,"children":259},{"style":102},[260],{"type":55,"value":120},{"type":49,"tag":89,"props":262,"children":263},{"style":96},[264],{"type":55,"value":265},"$HOME",{"type":49,"tag":89,"props":267,"children":268},{"style":102},[269],{"type":55,"value":156},{"type":49,"tag":89,"props":271,"children":272},{"style":96},[273],{"type":55,"value":274},"i4h-workflows",{"type":49,"tag":89,"props":276,"children":277},{"style":102},[278],{"type":55,"value":180},{"type":49,"tag":89,"props":280,"children":282},{"class":91,"line":281},4,[283,288,292,296,300,304,308,313,318,324,329,334,338,342],{"type":49,"tag":89,"props":284,"children":285},{"style":102},[286],{"type":55,"value":287},"  [",{"type":49,"tag":89,"props":289,"children":290},{"style":102},[291],{"type":55,"value":205},{"type":49,"tag":89,"props":293,"children":294},{"style":102},[295],{"type":55,"value":210},{"type":49,"tag":89,"props":297,"children":298},{"style":96},[299],{"type":55,"value":215},{"type":49,"tag":89,"props":301,"children":302},{"style":123},[303],{"type":55,"value":220},{"type":49,"tag":89,"props":305,"children":306},{"style":102},[307],{"type":55,"value":225},{"type":49,"tag":89,"props":309,"children":310},{"style":102},[311],{"type":55,"value":312}," ]",{"type":49,"tag":89,"props":314,"children":315},{"style":102},[316],{"type":55,"value":317}," ||",{"type":49,"tag":89,"props":319,"children":321},{"style":320},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[322],{"type":55,"value":323}," git",{"type":49,"tag":89,"props":325,"children":326},{"style":123},[327],{"type":55,"value":328}," clone",{"type":49,"tag":89,"props":330,"children":331},{"style":123},[332],{"type":55,"value":333}," https:\u002F\u002Fgithub.com\u002Fisaac-for-healthcare\u002Fi4h-workflows",{"type":49,"tag":89,"props":335,"children":336},{"style":102},[337],{"type":55,"value":210},{"type":49,"tag":89,"props":339,"children":340},{"style":96},[341],{"type":55,"value":215},{"type":49,"tag":89,"props":343,"children":344},{"style":102},[345],{"type":55,"value":346},"\"\n",{"type":49,"tag":89,"props":348,"children":350},{"class":91,"line":349},5,[351],{"type":49,"tag":89,"props":352,"children":353},{"style":187},[354],{"type":55,"value":355},"fi\n",{"type":49,"tag":89,"props":357,"children":359},{"class":91,"line":358},6,[360,366,371,375,379,383,387,392,398,402,406],{"type":49,"tag":89,"props":361,"children":363},{"style":362},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[364],{"type":55,"value":365},"export",{"type":49,"tag":89,"props":367,"children":368},{"style":96},[369],{"type":55,"value":370}," I4H_WORKFLOWS",{"type":49,"tag":89,"props":372,"children":373},{"style":102},[374],{"type":55,"value":105},{"type":49,"tag":89,"props":376,"children":377},{"style":102},[378],{"type":55,"value":225},{"type":49,"tag":89,"props":380,"children":381},{"style":96},[382],{"type":55,"value":215},{"type":49,"tag":89,"props":384,"children":385},{"style":102},[386],{"type":55,"value":225},{"type":49,"tag":89,"props":388,"children":389},{"style":102},[390],{"type":55,"value":391},";",{"type":49,"tag":89,"props":393,"children":395},{"style":394},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[396],{"type":55,"value":397}," cd",{"type":49,"tag":89,"props":399,"children":400},{"style":102},[401],{"type":55,"value":210},{"type":49,"tag":89,"props":403,"children":404},{"style":96},[405],{"type":55,"value":215},{"type":49,"tag":89,"props":407,"children":408},{"style":102},[409],{"type":55,"value":346},{"type":49,"tag":58,"props":411,"children":413},{"id":412},"basics",[414],{"type":55,"value":415},"Basics",{"type":49,"tag":65,"props":417,"children":418},{},[419,421,427,429,435],{"type":55,"value":420},"Stages map to individual skills; this skill chains them with shared ",{"type":49,"tag":85,"props":422,"children":424},{"className":423},[],[425],{"type":55,"value":426},"RUN_DIR",{"type":55,"value":428}," and ",{"type":49,"tag":85,"props":430,"children":432},{"className":431},[],[433],{"type":55,"value":434},"CACHE",{"type":55,"value":436},".",{"type":49,"tag":438,"props":439,"children":440},"table",{},[441,460],{"type":49,"tag":442,"props":443,"children":444},"thead",{},[445],{"type":49,"tag":446,"props":447,"children":448},"tr",{},[449,455],{"type":49,"tag":450,"props":451,"children":452},"th",{},[453],{"type":55,"value":454},"Stage",{"type":49,"tag":450,"props":456,"children":457},{},[458],{"type":55,"value":459},"Skill",{"type":49,"tag":461,"props":462,"children":463},"tbody",{},[464,478,491,504],{"type":49,"tag":446,"props":465,"children":466},{},[467,473],{"type":49,"tag":468,"props":469,"children":470},"td",{},[471],{"type":55,"value":472},"setup + CPU smoke",{"type":49,"tag":468,"props":474,"children":475},{},[476],{"type":55,"value":477},"[[i4h-catheter-navigation-setup]]",{"type":49,"tag":446,"props":479,"children":480},{},[481,486],{"type":49,"tag":468,"props":482,"children":483},{},[484],{"type":55,"value":485},"digital twin",{"type":49,"tag":468,"props":487,"children":488},{},[489],{"type":55,"value":490},"[[i4h-catheter-navigation-digital-twin]]",{"type":49,"tag":446,"props":492,"children":493},{},[494,499],{"type":49,"tag":468,"props":495,"children":496},{},[497],{"type":55,"value":498},"GPU DRR",{"type":49,"tag":468,"props":500,"children":501},{},[502],{"type":55,"value":503},"[[i4h-catheter-navigation-render-drr]]",{"type":49,"tag":446,"props":505,"children":506},{},[507,512],{"type":49,"tag":468,"props":508,"children":509},{},[510],{"type":55,"value":511},"unittest",{"type":49,"tag":468,"props":513,"children":514},{},[515],{"type":55,"value":516},"[[i4h-catheter-navigation-smoke]]",{"type":49,"tag":58,"props":518,"children":520},{"id":519},"run",[521],{"type":55,"value":522},"Run",{"type":49,"tag":65,"props":524,"children":525},{},[526],{"type":55,"value":527},"Run the steps below in order. Each step is a separate bash call; variables persist in the local agent's tmux session.",{"type":49,"tag":529,"props":530,"children":532},"h3",{"id":531},"step-1-initialize-run",[533],{"type":55,"value":534},"Step 1 - initialize run",{"type":49,"tag":77,"props":536,"children":538},{"className":79,"code":537,"language":81,"meta":82,"style":82},"REPO_ROOT=\"${I4H_WORKFLOWS:-$(git rev-parse --show-toplevel 2>\u002Fdev\u002Fnull)}\"; [ -d \"$REPO_ROOT\u002Fworkflows\u002Fcatheter_navigation\" ] || REPO_ROOT=\"$HOME\u002Fi4h-workflows\"\nWF_ROOT=\"${REPO_ROOT}\u002Fworkflows\u002Fcatheter_navigation\"\nRUN_DIR=\"${WF_ROOT}\u002Fruns\u002Fe2e_$(date +%Y%m%d_%H%M%S)\"\nmkdir -p \"${RUN_DIR}\u002Flogs\"\nln -sfn \"${RUN_DIR}\" \"${WF_ROOT}\u002Fruns\u002F.latest\"\nCACHE=\"${CACHE:-\u002Ftmp\u002Fct_cache}\"\nSUBJ=\"${SUBJ:-}\"\nexport I4H_WORKFLOWS=\"$REPO_ROOT\"\n",[539],{"type":49,"tag":85,"props":540,"children":541},{"__ignoreMap":82},[542,678,711,758,793,839,881,907],{"type":49,"tag":89,"props":543,"children":544},{"class":91,"line":92},[545,550,554,558,562,566,570,574,578,582,586,590,594,598,602,606,610,615,619,623,627,631,636,640,644,648,652,657,661,665,669,674],{"type":49,"tag":89,"props":546,"children":547},{"style":96},[548],{"type":55,"value":549},"REPO_ROOT",{"type":49,"tag":89,"props":551,"children":552},{"style":102},[553],{"type":55,"value":105},{"type":49,"tag":89,"props":555,"children":556},{"style":102},[557],{"type":55,"value":110},{"type":49,"tag":89,"props":559,"children":560},{"style":96},[561],{"type":55,"value":115},{"type":49,"tag":89,"props":563,"children":564},{"style":102},[565],{"type":55,"value":120},{"type":49,"tag":89,"props":567,"children":568},{"style":123},[569],{"type":55,"value":126},{"type":49,"tag":89,"props":571,"children":572},{"style":96},[573],{"type":55,"value":131},{"type":49,"tag":89,"props":575,"children":576},{"style":96},[577],{"type":55,"value":136},{"type":49,"tag":89,"props":579,"children":580},{"style":96},[581],{"type":55,"value":141},{"type":49,"tag":89,"props":583,"children":584},{"style":96},[585],{"type":55,"value":146},{"type":49,"tag":89,"props":587,"children":588},{"style":123},[589],{"type":55,"value":151},{"type":49,"tag":89,"props":591,"children":592},{"style":102},[593],{"type":55,"value":156},{"type":49,"tag":89,"props":595,"children":596},{"style":96},[597],{"type":55,"value":161},{"type":49,"tag":89,"props":599,"children":600},{"style":102},[601],{"type":55,"value":156},{"type":49,"tag":89,"props":603,"children":604},{"style":96},[605],{"type":55,"value":170},{"type":49,"tag":89,"props":607,"children":608},{"style":123},[609],{"type":55,"value":175},{"type":49,"tag":89,"props":611,"children":612},{"style":102},[613],{"type":55,"value":614},"}\"",{"type":49,"tag":89,"props":616,"children":617},{"style":102},[618],{"type":55,"value":391},{"type":49,"tag":89,"props":620,"children":621},{"style":102},[622],{"type":55,"value":195},{"type":49,"tag":89,"props":624,"children":625},{"style":102},[626],{"type":55,"value":205},{"type":49,"tag":89,"props":628,"children":629},{"style":102},[630],{"type":55,"value":210},{"type":49,"tag":89,"props":632,"children":633},{"style":96},[634],{"type":55,"value":635},"$REPO_ROOT",{"type":49,"tag":89,"props":637,"children":638},{"style":123},[639],{"type":55,"value":220},{"type":49,"tag":89,"props":641,"children":642},{"style":102},[643],{"type":55,"value":225},{"type":49,"tag":89,"props":645,"children":646},{"style":102},[647],{"type":55,"value":312},{"type":49,"tag":89,"props":649,"children":650},{"style":102},[651],{"type":55,"value":317},{"type":49,"tag":89,"props":653,"children":654},{"style":96},[655],{"type":55,"value":656}," REPO_ROOT",{"type":49,"tag":89,"props":658,"children":659},{"style":102},[660],{"type":55,"value":105},{"type":49,"tag":89,"props":662,"children":663},{"style":102},[664],{"type":55,"value":225},{"type":49,"tag":89,"props":666,"children":667},{"style":96},[668],{"type":55,"value":265},{"type":49,"tag":89,"props":670,"children":671},{"style":123},[672],{"type":55,"value":673},"\u002Fi4h-workflows",{"type":49,"tag":89,"props":675,"children":676},{"style":102},[677],{"type":55,"value":346},{"type":49,"tag":89,"props":679,"children":680},{"class":91,"line":183},[681,686,690,694,698,703,707],{"type":49,"tag":89,"props":682,"children":683},{"style":96},[684],{"type":55,"value":685},"WF_ROOT",{"type":49,"tag":89,"props":687,"children":688},{"style":102},[689],{"type":55,"value":105},{"type":49,"tag":89,"props":691,"children":692},{"style":102},[693],{"type":55,"value":110},{"type":49,"tag":89,"props":695,"children":696},{"style":96},[697],{"type":55,"value":549},{"type":49,"tag":89,"props":699,"children":700},{"style":102},[701],{"type":55,"value":702},"}",{"type":49,"tag":89,"props":704,"children":705},{"style":123},[706],{"type":55,"value":220},{"type":49,"tag":89,"props":708,"children":709},{"style":102},[710],{"type":55,"value":346},{"type":49,"tag":89,"props":712,"children":713},{"class":91,"line":238},[714,718,722,726,730,734,739,743,748,753],{"type":49,"tag":89,"props":715,"children":716},{"style":96},[717],{"type":55,"value":426},{"type":49,"tag":89,"props":719,"children":720},{"style":102},[721],{"type":55,"value":105},{"type":49,"tag":89,"props":723,"children":724},{"style":102},[725],{"type":55,"value":110},{"type":49,"tag":89,"props":727,"children":728},{"style":96},[729],{"type":55,"value":685},{"type":49,"tag":89,"props":731,"children":732},{"style":102},[733],{"type":55,"value":702},{"type":49,"tag":89,"props":735,"children":736},{"style":123},[737],{"type":55,"value":738},"\u002Fruns\u002Fe2e_",{"type":49,"tag":89,"props":740,"children":741},{"style":102},[742],{"type":55,"value":126},{"type":49,"tag":89,"props":744,"children":745},{"style":320},[746],{"type":55,"value":747},"date",{"type":49,"tag":89,"props":749,"children":750},{"style":123},[751],{"type":55,"value":752}," +%Y%m%d_%H%M%S",{"type":49,"tag":89,"props":754,"children":755},{"style":102},[756],{"type":55,"value":757},")\"\n",{"type":49,"tag":89,"props":759,"children":760},{"class":91,"line":281},[761,766,771,776,780,784,789],{"type":49,"tag":89,"props":762,"children":763},{"style":320},[764],{"type":55,"value":765},"mkdir",{"type":49,"tag":89,"props":767,"children":768},{"style":123},[769],{"type":55,"value":770}," -p",{"type":49,"tag":89,"props":772,"children":773},{"style":102},[774],{"type":55,"value":775}," \"${",{"type":49,"tag":89,"props":777,"children":778},{"style":96},[779],{"type":55,"value":426},{"type":49,"tag":89,"props":781,"children":782},{"style":102},[783],{"type":55,"value":702},{"type":49,"tag":89,"props":785,"children":786},{"style":123},[787],{"type":55,"value":788},"\u002Flogs",{"type":49,"tag":89,"props":790,"children":791},{"style":102},[792],{"type":55,"value":346},{"type":49,"tag":89,"props":794,"children":795},{"class":91,"line":349},[796,801,806,810,814,818,822,826,830,835],{"type":49,"tag":89,"props":797,"children":798},{"style":320},[799],{"type":55,"value":800},"ln",{"type":49,"tag":89,"props":802,"children":803},{"style":123},[804],{"type":55,"value":805}," -sfn",{"type":49,"tag":89,"props":807,"children":808},{"style":102},[809],{"type":55,"value":775},{"type":49,"tag":89,"props":811,"children":812},{"style":96},[813],{"type":55,"value":426},{"type":49,"tag":89,"props":815,"children":816},{"style":102},[817],{"type":55,"value":614},{"type":49,"tag":89,"props":819,"children":820},{"style":102},[821],{"type":55,"value":775},{"type":49,"tag":89,"props":823,"children":824},{"style":96},[825],{"type":55,"value":685},{"type":49,"tag":89,"props":827,"children":828},{"style":102},[829],{"type":55,"value":702},{"type":49,"tag":89,"props":831,"children":832},{"style":123},[833],{"type":55,"value":834},"\u002Fruns\u002F.latest",{"type":49,"tag":89,"props":836,"children":837},{"style":102},[838],{"type":55,"value":346},{"type":49,"tag":89,"props":840,"children":841},{"class":91,"line":358},[842,846,850,854,858,863,868,872,877],{"type":49,"tag":89,"props":843,"children":844},{"style":96},[845],{"type":55,"value":434},{"type":49,"tag":89,"props":847,"children":848},{"style":102},[849],{"type":55,"value":105},{"type":49,"tag":89,"props":851,"children":852},{"style":102},[853],{"type":55,"value":110},{"type":49,"tag":89,"props":855,"children":856},{"style":96},[857],{"type":55,"value":434},{"type":49,"tag":89,"props":859,"children":860},{"style":102},[861],{"type":55,"value":862},":-\u002F",{"type":49,"tag":89,"props":864,"children":865},{"style":96},[866],{"type":55,"value":867},"tmp",{"type":49,"tag":89,"props":869,"children":870},{"style":102},[871],{"type":55,"value":156},{"type":49,"tag":89,"props":873,"children":874},{"style":96},[875],{"type":55,"value":876},"ct_cache",{"type":49,"tag":89,"props":878,"children":879},{"style":102},[880],{"type":55,"value":180},{"type":49,"tag":89,"props":882,"children":884},{"class":91,"line":883},7,[885,890,894,898,902],{"type":49,"tag":89,"props":886,"children":887},{"style":96},[888],{"type":55,"value":889},"SUBJ",{"type":49,"tag":89,"props":891,"children":892},{"style":102},[893],{"type":55,"value":105},{"type":49,"tag":89,"props":895,"children":896},{"style":102},[897],{"type":55,"value":110},{"type":49,"tag":89,"props":899,"children":900},{"style":96},[901],{"type":55,"value":889},{"type":49,"tag":89,"props":903,"children":904},{"style":102},[905],{"type":55,"value":906},":-}\"\n",{"type":49,"tag":89,"props":908,"children":910},{"class":91,"line":909},8,[911,915,919,923,927,931],{"type":49,"tag":89,"props":912,"children":913},{"style":362},[914],{"type":55,"value":365},{"type":49,"tag":89,"props":916,"children":917},{"style":96},[918],{"type":55,"value":370},{"type":49,"tag":89,"props":920,"children":921},{"style":102},[922],{"type":55,"value":105},{"type":49,"tag":89,"props":924,"children":925},{"style":102},[926],{"type":55,"value":225},{"type":49,"tag":89,"props":928,"children":929},{"style":96},[930],{"type":55,"value":635},{"type":49,"tag":89,"props":932,"children":933},{"style":102},[934],{"type":55,"value":346},{"type":49,"tag":529,"props":936,"children":938},{"id":937},"step-2-setup-verify",[939],{"type":55,"value":940},"Step 2 - setup verify",{"type":49,"tag":65,"props":942,"children":943},{},[944,946,952],{"type":55,"value":945},"Follow [[i4h-catheter-navigation-setup]] Steps 1-3; tee to ",{"type":49,"tag":85,"props":947,"children":949},{"className":948},[],[950],{"type":55,"value":951},"${RUN_DIR}\u002Flogs\u002Fsetup.log",{"type":55,"value":436},{"type":49,"tag":529,"props":954,"children":956},{"id":955},"step-3-digital-twin-requires-subj",[957],{"type":55,"value":958},"Step 3 - digital twin (requires SUBJ)",{"type":49,"tag":65,"props":960,"children":961},{},[962,964,969],{"type":55,"value":963},"Set ",{"type":49,"tag":85,"props":965,"children":967},{"className":966},[],[968],{"type":55,"value":889},{"type":55,"value":970}," to an extracted TotalSegmentator subject, then follow [[i4h-catheter-navigation-digital-twin]] Steps 3-4.",{"type":49,"tag":65,"props":972,"children":973},{},[974,976,981],{"type":55,"value":975},"If ",{"type":49,"tag":85,"props":977,"children":979},{"className":978},[],[980],{"type":55,"value":889},{"type":55,"value":982}," is unset, skip to Step 4 with synthetic DRR only and note partial e2e in the summary.",{"type":49,"tag":529,"props":984,"children":986},{"id":985},"step-4-render-drr",[987],{"type":55,"value":988},"Step 4 - render DRR",{"type":49,"tag":65,"props":990,"children":991},{},[992,994,999,1001,1007],{"type":55,"value":993},"If Step 3 succeeded, set ",{"type":49,"tag":85,"props":995,"children":997},{"className":996},[],[998],{"type":55,"value":434},{"type":55,"value":1000}," and follow [[i4h-catheter-navigation-render-drr]] cache variant.\nOtherwise run synthetic render to ",{"type":49,"tag":85,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":55,"value":1006},"${RUN_DIR}\u002Fdrr_synthetic.png",{"type":55,"value":436},{"type":49,"tag":529,"props":1009,"children":1011},{"id":1010},"step-5-smoke-tests",[1012],{"type":55,"value":1013},"Step 5 - smoke tests",{"type":49,"tag":65,"props":1015,"children":1016},{},[1017,1019,1025],{"type":55,"value":1018},"Follow [[i4h-catheter-navigation-smoke]]; log to ",{"type":49,"tag":85,"props":1020,"children":1022},{"className":1021},[],[1023],{"type":55,"value":1024},"${RUN_DIR}\u002Flogs\u002Fsmoke.log",{"type":55,"value":436},{"type":49,"tag":529,"props":1027,"children":1029},{"id":1028},"step-6-summary",[1030],{"type":55,"value":1031},"Step 6 - summary",{"type":49,"tag":77,"props":1033,"children":1035},{"className":79,"code":1034,"language":81,"meta":82,"style":82},"cat > \"${RUN_DIR}\u002Flogs\u002FSUMMARY.txt\" \u003C\u003CEOF\nCatheter navigation e2e smoke\nRUN_DIR=${RUN_DIR}\nCACHE=${CACHE}\nSUBJ=${SUBJ:-\u003Cskipped>}\nArtifacts:\n  $(ls -1 \"${RUN_DIR}\" 2>\u002Fdev\u002Fnull || true)\nEOF\ncat \"${RUN_DIR}\u002Flogs\u002FSUMMARY.txt\"\n",[1036],{"type":49,"tag":85,"props":1037,"children":1038},{"__ignoreMap":82},[1039,1083,1091,1113,1133,1171,1179,1234,1241],{"type":49,"tag":89,"props":1040,"children":1041},{"class":91,"line":92},[1042,1047,1052,1056,1060,1064,1069,1073,1078],{"type":49,"tag":89,"props":1043,"children":1044},{"style":320},[1045],{"type":55,"value":1046},"cat",{"type":49,"tag":89,"props":1048,"children":1049},{"style":102},[1050],{"type":55,"value":1051}," >",{"type":49,"tag":89,"props":1053,"children":1054},{"style":102},[1055],{"type":55,"value":775},{"type":49,"tag":89,"props":1057,"children":1058},{"style":96},[1059],{"type":55,"value":426},{"type":49,"tag":89,"props":1061,"children":1062},{"style":102},[1063],{"type":55,"value":702},{"type":49,"tag":89,"props":1065,"children":1066},{"style":123},[1067],{"type":55,"value":1068},"\u002Flogs\u002FSUMMARY.txt",{"type":49,"tag":89,"props":1070,"children":1071},{"style":102},[1072],{"type":55,"value":225},{"type":49,"tag":89,"props":1074,"children":1075},{"style":102},[1076],{"type":55,"value":1077}," \u003C\u003C",{"type":49,"tag":89,"props":1079,"children":1080},{"style":102},[1081],{"type":55,"value":1082},"EOF\n",{"type":49,"tag":89,"props":1084,"children":1085},{"class":91,"line":183},[1086],{"type":49,"tag":89,"props":1087,"children":1088},{"style":123},[1089],{"type":55,"value":1090},"Catheter navigation e2e smoke\n",{"type":49,"tag":89,"props":1092,"children":1093},{"class":91,"line":238},[1094,1099,1104,1108],{"type":49,"tag":89,"props":1095,"children":1096},{"style":123},[1097],{"type":55,"value":1098},"RUN_DIR=",{"type":49,"tag":89,"props":1100,"children":1101},{"style":102},[1102],{"type":55,"value":1103},"${",{"type":49,"tag":89,"props":1105,"children":1106},{"style":96},[1107],{"type":55,"value":426},{"type":49,"tag":89,"props":1109,"children":1110},{"style":102},[1111],{"type":55,"value":1112},"}\n",{"type":49,"tag":89,"props":1114,"children":1115},{"class":91,"line":281},[1116,1121,1125,1129],{"type":49,"tag":89,"props":1117,"children":1118},{"style":123},[1119],{"type":55,"value":1120},"CACHE=",{"type":49,"tag":89,"props":1122,"children":1123},{"style":102},[1124],{"type":55,"value":1103},{"type":49,"tag":89,"props":1126,"children":1127},{"style":96},[1128],{"type":55,"value":434},{"type":49,"tag":89,"props":1130,"children":1131},{"style":102},[1132],{"type":55,"value":1112},{"type":49,"tag":89,"props":1134,"children":1135},{"class":91,"line":349},[1136,1141,1145,1149,1153,1158,1163,1167],{"type":49,"tag":89,"props":1137,"children":1138},{"style":123},[1139],{"type":55,"value":1140},"SUBJ=",{"type":49,"tag":89,"props":1142,"children":1143},{"style":102},[1144],{"type":55,"value":1103},{"type":49,"tag":89,"props":1146,"children":1147},{"style":96},[1148],{"type":55,"value":889},{"type":49,"tag":89,"props":1150,"children":1151},{"style":102},[1152],{"type":55,"value":120},{"type":49,"tag":89,"props":1154,"children":1155},{"style":123},[1156],{"type":55,"value":1157},"\u003C",{"type":49,"tag":89,"props":1159,"children":1160},{"style":96},[1161],{"type":55,"value":1162},"skipped",{"type":49,"tag":89,"props":1164,"children":1165},{"style":123},[1166],{"type":55,"value":151},{"type":49,"tag":89,"props":1168,"children":1169},{"style":102},[1170],{"type":55,"value":1112},{"type":49,"tag":89,"props":1172,"children":1173},{"class":91,"line":358},[1174],{"type":49,"tag":89,"props":1175,"children":1176},{"style":123},[1177],{"type":55,"value":1178},"Artifacts:\n",{"type":49,"tag":89,"props":1180,"children":1181},{"class":91,"line":883},[1182,1187,1192,1197,1201,1205,1209,1214,1219,1224,1229],{"type":49,"tag":89,"props":1183,"children":1184},{"style":102},[1185],{"type":55,"value":1186},"  $(",{"type":49,"tag":89,"props":1188,"children":1189},{"style":320},[1190],{"type":55,"value":1191},"ls",{"type":49,"tag":89,"props":1193,"children":1194},{"style":123},[1195],{"type":55,"value":1196}," -1 ",{"type":49,"tag":89,"props":1198,"children":1199},{"style":102},[1200],{"type":55,"value":110},{"type":49,"tag":89,"props":1202,"children":1203},{"style":96},[1204],{"type":55,"value":426},{"type":49,"tag":89,"props":1206,"children":1207},{"style":102},[1208],{"type":55,"value":614},{"type":49,"tag":89,"props":1210,"children":1211},{"style":102},[1212],{"type":55,"value":1213}," 2>",{"type":49,"tag":89,"props":1215,"children":1216},{"style":123},[1217],{"type":55,"value":1218},"\u002Fdev\u002Fnull ",{"type":49,"tag":89,"props":1220,"children":1221},{"style":102},[1222],{"type":55,"value":1223},"||",{"type":49,"tag":89,"props":1225,"children":1226},{"style":394},[1227],{"type":55,"value":1228}," true",{"type":49,"tag":89,"props":1230,"children":1231},{"style":102},[1232],{"type":55,"value":1233},")\n",{"type":49,"tag":89,"props":1235,"children":1236},{"class":91,"line":909},[1237],{"type":49,"tag":89,"props":1238,"children":1239},{"style":102},[1240],{"type":55,"value":1082},{"type":49,"tag":89,"props":1242,"children":1244},{"class":91,"line":1243},9,[1245,1249,1253,1257,1261,1265],{"type":49,"tag":89,"props":1246,"children":1247},{"style":320},[1248],{"type":55,"value":1046},{"type":49,"tag":89,"props":1250,"children":1251},{"style":102},[1252],{"type":55,"value":775},{"type":49,"tag":89,"props":1254,"children":1255},{"style":96},[1256],{"type":55,"value":426},{"type":49,"tag":89,"props":1258,"children":1259},{"style":102},[1260],{"type":55,"value":702},{"type":49,"tag":89,"props":1262,"children":1263},{"style":123},[1264],{"type":55,"value":1068},{"type":49,"tag":89,"props":1266,"children":1267},{"style":102},[1268],{"type":55,"value":346},{"type":49,"tag":58,"props":1270,"children":1272},{"id":1271},"flags-informal",[1273],{"type":55,"value":1274},"Flags (informal)",{"type":49,"tag":1276,"props":1277,"children":1278},"ul",{},[1279,1292],{"type":49,"tag":1280,"props":1281,"children":1282},"li",{},[1283,1285,1290],{"type":55,"value":1284},"Skip digital twin when ",{"type":49,"tag":85,"props":1286,"children":1288},{"className":1287},[],[1289],{"type":55,"value":889},{"type":55,"value":1291}," unset -> synthetic DRR only.",{"type":49,"tag":1280,"props":1293,"children":1294},{},[1295],{"type":55,"value":1296},"Add viewport manually via [[i4h-catheter-navigation-viewport]] when a display is available.",{"type":49,"tag":58,"props":1298,"children":1300},{"id":1299},"outputs",[1301],{"type":55,"value":1302},"Outputs",{"type":49,"tag":1276,"props":1304,"children":1305},{},[1306,1323,1342],{"type":49,"tag":1280,"props":1307,"children":1308},{},[1309,1315,1317],{"type":49,"tag":85,"props":1310,"children":1312},{"className":1311},[],[1313],{"type":55,"value":1314},"RUN_DIR\u002Flogs\u002F",{"type":55,"value":1316}," - per-stage logs and ",{"type":49,"tag":85,"props":1318,"children":1320},{"className":1319},[],[1321],{"type":55,"value":1322},"SUMMARY.txt",{"type":49,"tag":1280,"props":1324,"children":1325},{},[1326,1332,1334,1340],{"type":49,"tag":85,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":55,"value":1331},"RUN_DIR\u002Fdrr.png",{"type":55,"value":1333}," or ",{"type":49,"tag":85,"props":1335,"children":1337},{"className":1336},[],[1338],{"type":55,"value":1339},"drr_synthetic.png",{"type":55,"value":1341}," - rendered frame",{"type":49,"tag":1280,"props":1343,"children":1344},{},[1345,1351],{"type":49,"tag":85,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":55,"value":1350},"CACHE\u002F",{"type":55,"value":1352}," - digital twin artifacts when Step 3 ran",{"type":49,"tag":58,"props":1354,"children":1356},{"id":1355},"prerequisites",[1357],{"type":55,"value":1358},"Prerequisites",{"type":49,"tag":1276,"props":1360,"children":1361},{},[1362,1375,1385],{"type":49,"tag":1280,"props":1363,"children":1364},{},[1365,1373],{"type":49,"tag":89,"props":1366,"children":1367},{},[1368],{"type":49,"tag":89,"props":1369,"children":1370},{},[1371],{"type":55,"value":1372},"i4h-catheter-navigation-setup",{"type":55,"value":1374}," host requirements.",{"type":49,"tag":1280,"props":1376,"children":1377},{},[1378,1383],{"type":49,"tag":85,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":55,"value":889},{"type":55,"value":1384}," for full e2e (otherwise partial smoke).",{"type":49,"tag":1280,"props":1386,"children":1387},{},[1388],{"type":55,"value":1389},"GPU for Step 4 cache render.",{"type":49,"tag":58,"props":1391,"children":1393},{"id":1392},"limitations",[1394],{"type":55,"value":1395},"Limitations",{"type":49,"tag":1276,"props":1397,"children":1398},{},[1399,1404],{"type":49,"tag":1280,"props":1400,"children":1401},{},[1402],{"type":55,"value":1403},"Does not launch the interactive viewport (display required).",{"type":49,"tag":1280,"props":1405,"children":1406},{},[1407],{"type":55,"value":1408},"Does not cover RL\u002FIL training loops.",{"type":49,"tag":58,"props":1410,"children":1412},{"id":1411},"troubleshooting",[1413],{"type":55,"value":1414},"Troubleshooting",{"type":49,"tag":1276,"props":1416,"children":1417},{},[1418,1423],{"type":49,"tag":1280,"props":1419,"children":1420},{},[1421],{"type":55,"value":1422},"Partial run when no CT data - expected; document which stages ran.",{"type":49,"tag":1280,"props":1424,"children":1425},{},[1426],{"type":55,"value":1427},"GPU render failure - fall back to synthetic DRR and report GPU setup gap.",{"type":49,"tag":58,"props":1429,"children":1431},{"id":1430},"final-response",[1432],{"type":55,"value":1433},"Final Response",{"type":49,"tag":65,"props":1435,"children":1436},{},[1437,1439,1444],{"type":55,"value":1438},"Print ",{"type":49,"tag":85,"props":1440,"children":1442},{"className":1441},[],[1443],{"type":55,"value":426},{"type":55,"value":1445},", stages completed\u002Fskipped, DRR output path, smoke-test status, and recommend [[i4h-catheter-navigation-viewport]] for interactive demo.",{"type":49,"tag":1447,"props":1448,"children":1449},"style",{},[1450],{"type":55,"value":1451},"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":1453,"total":1610},[1454,1472,1490,1501,1513,1527,1540,1554,1565,1576,1590,1599],{"slug":1455,"name":1455,"fn":1456,"description":1457,"org":1458,"tags":1459,"stars":1469,"repoUrl":1470,"updatedAt":1471},"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},[1460,1463,1466],{"name":1461,"slug":1462,"type":15},"Documentation","documentation",{"name":1464,"slug":1465,"type":15},"MCP","mcp",{"name":1467,"slug":1468,"type":15},"Search","search",21777,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FNemoClaw","2026-07-20T06:00:01.461044",{"slug":1473,"name":1473,"fn":1474,"description":1475,"org":1476,"tags":1477,"stars":1487,"repoUrl":1488,"updatedAt":1489},"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},[1478,1481,1484],{"name":1479,"slug":1480,"type":15},"Containers","containers",{"name":1482,"slug":1483,"type":15},"Deployment","deployment",{"name":1485,"slug":1486,"type":15},"Python","python",17049,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FMegatron-LM","2026-07-27T06:06:11.249662",{"slug":1491,"name":1491,"fn":1492,"description":1493,"org":1494,"tags":1495,"stars":1487,"repoUrl":1488,"updatedAt":1500},"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},[1496,1499],{"name":1497,"slug":1498,"type":15},"CI\u002FCD","ci-cd",{"name":1482,"slug":1483,"type":15},"2026-07-14T05:25:59.97109",{"slug":1502,"name":1502,"fn":1503,"description":1504,"org":1505,"tags":1506,"stars":1487,"repoUrl":1488,"updatedAt":1512},"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},[1507,1508,1509],{"name":1497,"slug":1498,"type":15},{"name":1482,"slug":1483,"type":15},{"name":1510,"slug":1511,"type":15},"GitHub","github","2026-07-27T06:06:12.278222",{"slug":1514,"name":1514,"fn":1515,"description":1516,"org":1517,"tags":1518,"stars":1487,"repoUrl":1488,"updatedAt":1526},"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},[1519,1522,1523],{"name":1520,"slug":1521,"type":15},"Debugging","debugging",{"name":1510,"slug":1511,"type":15},{"name":1524,"slug":1525,"type":15},"Triage","triage","2026-07-14T05:25:57.442089",{"slug":1528,"name":1528,"fn":1529,"description":1530,"org":1531,"tags":1532,"stars":1487,"repoUrl":1488,"updatedAt":1539},"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},[1533,1536],{"name":1534,"slug":1535,"type":15},"Best Practices","best-practices",{"name":1537,"slug":1538,"type":15},"Code Analysis","code-analysis","2026-07-14T05:25:56.18433",{"slug":1541,"name":1541,"fn":1542,"description":1543,"org":1544,"tags":1545,"stars":1487,"repoUrl":1488,"updatedAt":1553},"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},[1546,1549,1552],{"name":1547,"slug":1548,"type":15},"Machine Learning","machine-learning",{"name":1550,"slug":1551,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:11.777011",{"slug":1555,"name":1555,"fn":1556,"description":1557,"org":1558,"tags":1559,"stars":1487,"repoUrl":1488,"updatedAt":1564},"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},[1560,1563],{"name":1561,"slug":1562,"type":15},"QA","qa",{"name":21,"slug":22,"type":15},"2026-07-14T05:25:53.673039",{"slug":1566,"name":1566,"fn":1567,"description":1568,"org":1569,"tags":1570,"stars":1487,"repoUrl":1488,"updatedAt":1575},"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},[1571,1572],{"name":1482,"slug":1483,"type":15},{"name":1573,"slug":1574,"type":15},"Infrastructure","infrastructure","2026-07-14T05:25:49.362534",{"slug":1577,"name":1577,"fn":1578,"description":1579,"org":1580,"tags":1581,"stars":1487,"repoUrl":1488,"updatedAt":1589},"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},[1582,1585,1586],{"name":1583,"slug":1584,"type":15},"Code Review","code-review",{"name":1510,"slug":1511,"type":15},{"name":1587,"slug":1588,"type":15},"Pull Requests","pull-requests","2026-07-14T05:26:01.226578",{"slug":1591,"name":1591,"fn":1592,"description":1593,"org":1594,"tags":1595,"stars":1487,"repoUrl":1488,"updatedAt":1598},"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},[1596,1597],{"name":1561,"slug":1562,"type":15},{"name":21,"slug":22,"type":15},"2026-07-14T05:25:54.928983",{"slug":1600,"name":1600,"fn":1601,"description":1602,"org":1603,"tags":1604,"stars":1487,"repoUrl":1488,"updatedAt":1609},"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},[1605,1608],{"name":1606,"slug":1607,"type":15},"Automation","automation",{"name":1497,"slug":1498,"type":15},"2026-07-30T05:29:03.275638",496,{"items":1612,"total":1708},[1613,1630,1640,1654,1664,1679,1694],{"slug":1614,"name":1614,"fn":1615,"description":1616,"org":1617,"tags":1618,"stars":23,"repoUrl":24,"updatedAt":1629},"accelerated-computing-cudf","accelerate data processing with cuDF","Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV\u002FParquet I\u002FO, nullable semantics, and multi-GPU DataFrame workloads.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1619,1622,1625,1626],{"name":1620,"slug":1621,"type":15},"Data Analysis","data-analysis",{"name":1623,"slug":1624,"type":15},"Data Engineering","data-engineering",{"name":9,"slug":8,"type":15},{"name":1627,"slug":1628,"type":15},"Performance","performance","2026-07-14T05:28:43.176466",{"slug":1631,"name":1631,"fn":1632,"description":1633,"org":1634,"tags":1635,"stars":23,"repoUrl":24,"updatedAt":1639},"aiq-deploy","deploy and manage NVIDIA AI-Q infrastructure","Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1636,1637,1638],{"name":1482,"slug":1483,"type":15},{"name":1573,"slug":1574,"type":15},{"name":9,"slug":8,"type":15},"2026-07-14T05:29:06.667109",{"slug":1641,"name":1641,"fn":1642,"description":1643,"org":1644,"tags":1645,"stars":23,"repoUrl":24,"updatedAt":1653},"aiq-research","conduct deep research with AI-Q","Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1646,1649,1650],{"name":1647,"slug":1648,"type":15},"Agents","agents",{"name":9,"slug":8,"type":15},{"name":1651,"slug":1652,"type":15},"Research","research","2026-07-14T05:28:06.816956",{"slug":1655,"name":1655,"fn":1656,"description":1657,"org":1658,"tags":1659,"stars":23,"repoUrl":24,"updatedAt":1663},"amc-run-sample-calibration","run AMC sample dataset calibration","Run end-to-end calibration on the shipped sample dataset (sdg_08_2_sample_data_010926.zip) against a running AMC microservice. Use when user says 'test sample dataset', 'run sample calibration', 'verify AMC install', or 'launch and test'.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1660,1661,1662],{"name":1620,"slug":1621,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-17T05:29:03.913266",{"slug":1665,"name":1665,"fn":1666,"description":1667,"org":1668,"tags":1669,"stars":23,"repoUrl":24,"updatedAt":1678},"amc-run-video-calibration","calibrate video datasets with AutoMagicCalib","Calibrate a new dataset from pre-recorded video files via the AutoMagicCalib REST API. Use when user has local MP4s and says 'calibrate my videos', 'run AMC on these videos', or similar. For RTSP\u002Flive streams, use amc-run-rtsp-calibration instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1670,1671,1674,1675],{"name":1606,"slug":1607,"type":15},{"name":1672,"slug":1673,"type":15},"Imaging","imaging",{"name":9,"slug":8,"type":15},{"name":1676,"slug":1677,"type":15},"Video","video","2026-07-17T05:28:53.905004",{"slug":1680,"name":1680,"fn":1681,"description":1682,"org":1683,"tags":1684,"stars":23,"repoUrl":24,"updatedAt":1693},"amc-setup-calibration-stack","deploy AutoMagicCalib microservice with Docker","Launch AutoMagicCalib microservice and web UI from NGC release images via Docker Compose. Use when user says 'deploy auto calibration', 'launch auto calibration', 'launch AMC', 'start MS+UI', or 'set up auto-magic-calib'. Requires NGC API key.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1685,1686,1689,1690],{"name":1482,"slug":1483,"type":15},{"name":1687,"slug":1688,"type":15},"Docker","docker",{"name":9,"slug":8,"type":15},{"name":1691,"slug":1692,"type":15},"Operations","operations","2026-07-17T05:28:56.913999",{"slug":1695,"name":1695,"fn":1696,"description":1697,"org":1698,"tags":1699,"stars":23,"repoUrl":24,"updatedAt":1707},"cudaq-guide","develop quantum applications with CUDA-Q","CUDA-Q onboarding guide for installation, test programs, GPU simulation, QPU hardware, and quantum applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1700,1701,1704],{"name":9,"slug":8,"type":15},{"name":1702,"slug":1703,"type":15},"Quantum Computing","quantum-computing",{"name":1705,"slug":1706,"type":15},"Simulation","simulation","2026-07-14T05:26:58.898253",305]