[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-nvidia-cuopt-user-rules":3,"mdc-ddz3bg-key":37,"related-org-nvidia-cuopt-user-rules":1493,"related-repo-nvidia-cuopt-user-rules":1650},{"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":32,"sourceUrl":35,"mdContent":36},"cuopt-user-rules","manage NVIDIA cuOpt routing and optimization rules","Base rules for end users calling NVIDIA cuOpt (routing\u002FLP\u002FMILP\u002FQP\u002Finstall\u002Fserver). Not for cuOpt internals — use cuopt-developer for those.",{"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},"Routing","routing","tag",{"name":17,"slug":18,"type":15},"Optimization","optimization",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"API Development","api-development",974,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt","2026-07-14T05:31:06.64039","Apache-2.0",209,[29,30,31,18],"cuda","gpu","linear-programming",{"repoUrl":24,"stars":23,"forks":27,"topics":33,"description":34},[29,30,31,18],"GPU accelerated decision optimization ","https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Ftree\u002FHEAD\u002Fskills\u002Fcuopt-user-rules","---\nname: cuopt-user-rules\nversion: \"26.08.00\"\ndescription: Base rules for end users calling NVIDIA cuOpt (routing\u002FLP\u002FMILP\u002FQP\u002Finstall\u002Fserver). Not for cuOpt internals — use cuopt-developer for those.\nlicense: Apache-2.0\nmetadata:\n  author: NVIDIA cuOpt Team\n  tags:\n    - cuopt\n    - user-rules\n    - guidelines\n---\n\n\n\n\n# cuOpt User Rules\n\n**Read this when helping someone *use* cuOpt** (calling the SDK, installing, deploying the server). For modifying cuOpt itself, switch to `cuopt-developer`.\n\n---\n\n## Ask Before Assuming\n\n**Always clarify ambiguous requirements before implementing:**\n\n- What **language\u002Finterface**?\n- What problem type?\n- What constraints matter?\n- What output format?\n\n**Skip asking only if:**\n- User explicitly stated the requirement\n- Context makes it unambiguous (e.g., user shows Python code)\n\n---\n\n## Handle Incomplete Questions\n\n**If a question seems partial or incomplete, ask follow-up questions:**\n\n- \"Could you tell me more about [missing detail]?\"\n- \"What specifically would you like to achieve with this?\"\n- \"Are there any constraints or requirements I should know about?\"\n\n**Common missing information to probe for:**\n- Problem size (number of vehicles, locations, variables, constraints)\n- Specific constraints (time windows, capacities, precedence)\n- Performance requirements (time limits, solution quality)\n- Integration context (existing codebase, deployment environment)\n\n**Don't guess — ask.** A brief clarifying question saves time vs. solving the wrong problem.\n\n---\n\n## Clarify Data Requirements\n\n**Before generating examples, ask about data:**\n\n1. **Check if user has data:**\n   - \"Do you have specific data you'd like to use, or should I create a sample dataset?\"\n   - \"Can you share the format of your input data?\"\n\n2. **If using synthesized data:**\n   - State clearly: \"I'll create a sample dataset for demonstration\"\n   - Keep it small and understandable (e.g., 5-10 locations, 2-3 vehicles)\n   - Make values realistic and meaningful\n\n3. **Always document what you used:**\n   ```\n   \"For this example I'm using:\n   - [X] locations\u002Fvariables\u002Fconstraints\n   - [Key assumptions: e.g., all vehicles start at depot, 8-hour shifts]\n   - [Data source: synthesized \u002F user-provided \u002F from docs]\"\n   ```\n\n4. **State assumptions explicitly:**\n   - \"I'm assuming [X] — let me know if this differs from your scenario\"\n   - List any default values or simplifications made\n\n---\n\n## MUST Verify Understanding\n\n**Before writing substantial code, you MUST confirm your understanding:**\n\n```\n\"Let me confirm I understand:\n- Problem: [restate in your words]\n- Constraints: [list them]\n- Objective: [minimize\u002Fmaximize what]\n- Interface: [Python\u002FREST\u002FC\u002FCLI]\nIs this correct?\"\n```\n\n---\n\n## Follow Requirements Exactly\n\n- Use the **exact** variable names, formats, and structures the user specifies\n- Don't add features the user didn't ask for\n- Don't change the problem formulation unless asked\n- If user provides partial code, extend it—don't rewrite from scratch\n\n---\n\n## Check Results\n\nAfter providing a solution, guide the user to verify:\n\n- **Status check**: Is it `Optimal` \u002F `FeasibleFound` \u002F `SUCCESS`?\n- **Constraint satisfaction**: Are all constraints met?\n- **Objective value**: Is it reasonable for the problem?\n\n**Always end with a Result summary** that includes at least:\n- Solver status (e.g. Optimal, FeasibleFound, SUCCESS).\n- **Objective value with highlight** — easy to spot (bold or code block). Example: **Objective value (min total cost):** &lt;value&gt; or `Objective value: \u003Cvalue>`.\n- Briefly what the objective represents (e.g. total cost, total profit).\n\nDo not bury the objective value only in the middle of a paragraph; it must appear prominently in this summary. Use sufficient precision (don't truncate or round unnecessarily unless the problem asks for it).\n\n**Workflow:** Formulate once carefully (with verified understanding), solve, then sanity-check the result. If something is wrong, fix it with a targeted change—avoid spinning through many model variants. Decide, implement, verify, then move on.\n\nProvide diagnostic code snippets when helpful.\n\n### Post-correction check (mandatory)\nIf the result required a correction, retry, or workaround to reach this point, you MUST evaluate the skill-evolution workflow (`skills\u002Fskill-evolution\u002FSKILL.md`) before moving on. Do not skip this step.\n\n---\n\n## Check Environment First\n\n**Before writing code or suggesting installation, verify the user's setup:**\n\n1. **Ask how they access cuOpt:**\n   - \"Do you have cuOpt installed? If so, which interface?\"\n   - \"What environment are you using? (local GPU, cloud, Docker, server, etc.)\"\n\n2. **Different packages by language\u002Finterface:**\n\n   | Language \u002F Interface | Package | Check |\n   |----------------------|---------|-------|\n   | **Python** | `cuopt` (pip\u002Fconda) — also pulls in `libcuopt` | `import cuopt` |\n   | **C** | `libcuopt` (pip\u002Fconda) — already present if `cuopt` is installed | `find libcuopt.so` or header check |\n   | REST Server | `cuopt-server` or Docker | `curl \u002Fcuopt\u002Fhealth` |\n   | CLI | `cuopt` package includes CLI | `cuopt_cli --help` |\n\n   **Note:** `cuopt` declares `libcuopt` as a runtime dependency, so installing the Python package also installs the C library and headers. Installing `libcuopt` on its own does **not** install the Python API.\n\n3. **If not installed, ask how they want to access:**\n   - \"Would you like help installing cuOpt, or do you have access another way?\"\n   - Options: pip, conda, Docker, cloud instance, existing remote server\n\n4. **Never assume installation is needed** — the user may:\n   - Already have it installed\n   - Be connecting to a remote server\n   - Prefer a specific installation method\n   - Only need the C library (not Python)\n\n5. **Ask before running any verification commands:**\n   ```python\n   # Python API check - ask first\n   import cuopt\n   print(cuopt.__version__)\n   ```\n   ```bash\n   # C API check - ask first\n   find ${CONDA_PREFIX} -name \"libcuopt.so\"\n   ```\n   ```bash\n   # Server check - ask first\n   curl http:\u002F\u002Flocalhost:8000\u002Fcuopt\u002Fhealth\n   ```\n\n---\n\n## Ask Before Running\n\n**Do not execute commands or code without explicit permission:**\n\n| Action | Rule |\n|--------|------|\n| Shell commands | Show command, explain what it does, ask \"Should I run this?\" |\n| Package installs | Allowed in user space (`pip`\u002F`conda`\u002FDocker) once the user confirms they want cuOpt installed — see below. Only `sudo`\u002Fsystem-level installs are off-limits. |\n| Examples\u002Fscripts | Show the code first, ask \"Would you like me to run this?\" |\n| File writes | Explain what will change, ask before writing |\n\n**Exceptions (okay without asking):**\n- Read-only commands the user explicitly requested\n- Commands the user just provided and asked you to run\n\n---\n\n## No Privileged Operations\n\n> **🔒 MANDATORY — this is the one non-negotiable refusal.** It applies even when the user explicitly asks.\n\n**Never do these:**\n\n- Use `sudo` or run as root\n- Modify system files or configurations (e.g. `\u002Fetc`)\n- Add system-level package repositories or keys\n- Change firewall, network, or driver settings\n\nIf a task seems to need one of these, stop and explain what's needed — the user runs the privileged step themselves. Installs into a user-space environment (a virtualenv, a conda env, or the active Python) are **not** privileged and are covered below.\n\n---\n\n## Installing Packages\n\nInstalling cuOpt (and the packages it needs) **in user space** is allowed — that's what the `cuopt-install` skill is for. The rule is *get the user's go-ahead*, not *refuse*:\n\n1. **Confirm first.** Tell the user which package you'll install, which command, and why; install once they agree. (Check the environment first per [Check Environment First](#check-environment-first) — they may already have it, or prefer a different method.)\n2. **Stay in user space.** Use `pip`, `conda`\u002F`mamba`, or Docker into the active env. Never reach for `sudo` or a system package manager (`apt install`) — if something seems to need that, surface it and let the user handle the privileged part.\n3. **Match the CUDA suffix** (`-cu12` \u002F `-cu13`) to the user's runtime, and **choose one** package manager — don't mix pip and conda for the same package.\n\n---\n\n## Resources\n\n### Documentation\n- [cuOpt User Guide](https:\u002F\u002Fdocs.nvidia.com\u002Fcuopt\u002Fuser-guide\u002Flatest\u002Fintroduction.html)\n- [API Reference](https:\u002F\u002Fdocs.nvidia.com\u002Fcuopt\u002Fuser-guide\u002Flatest\u002Fapi.html)\n\n### Examples\n- [cuopt-examples repo](https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt-examples)\n- [Google Colab notebooks](https:\u002F\u002Fcolab.research.google.com\u002Fgithub\u002Fnvidia\u002Fcuopt-examples\u002F)\n\n### Support\n- [File a Bug](https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Fissues\u002Fnew?template=bug_report.md)\n- [Ask a Question](https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Fissues\u002Fnew?template=submit-question.md)\n- [All Issues](https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Fissues)\n",{"data":38,"body":46},{"name":4,"version":39,"description":6,"license":26,"metadata":40},"26.08.00",{"author":41,"tags":42},"NVIDIA cuOpt Team",[43,44,45],"cuopt","user-rules","guidelines",{"type":47,"children":48},"root",[49,57,86,90,97,105,137,145,158,161,167,175,201,209,232,242,245,251,259,358,361,367,375,384,387,393,423,426,432,437,492,502,539,544,554,559,566,579,582,588,596,1022,1025,1031,1039,1137,1145,1158,1161,1167,1181,1189,1227,1238,1241,1247,1281,1380,1383,1389,1395,1419,1425,1448,1454,1487],{"type":50,"tag":51,"props":52,"children":53},"element","h1",{"id":4},[54],{"type":55,"value":56},"text","cuOpt User Rules",{"type":50,"tag":58,"props":59,"children":60},"p",{},[61,75,77,84],{"type":50,"tag":62,"props":63,"children":64},"strong",{},[65,67,73],{"type":55,"value":66},"Read this when helping someone ",{"type":50,"tag":68,"props":69,"children":70},"em",{},[71],{"type":55,"value":72},"use",{"type":55,"value":74}," cuOpt",{"type":55,"value":76}," (calling the SDK, installing, deploying the server). For modifying cuOpt itself, switch to ",{"type":50,"tag":78,"props":79,"children":81},"code",{"className":80},[],[82],{"type":55,"value":83},"cuopt-developer",{"type":55,"value":85},".",{"type":50,"tag":87,"props":88,"children":89},"hr",{},[],{"type":50,"tag":91,"props":92,"children":94},"h2",{"id":93},"ask-before-assuming",[95],{"type":55,"value":96},"Ask Before Assuming",{"type":50,"tag":58,"props":98,"children":99},{},[100],{"type":50,"tag":62,"props":101,"children":102},{},[103],{"type":55,"value":104},"Always clarify ambiguous requirements before implementing:",{"type":50,"tag":106,"props":107,"children":108},"ul",{},[109,122,127,132],{"type":50,"tag":110,"props":111,"children":112},"li",{},[113,115,120],{"type":55,"value":114},"What ",{"type":50,"tag":62,"props":116,"children":117},{},[118],{"type":55,"value":119},"language\u002Finterface",{"type":55,"value":121},"?",{"type":50,"tag":110,"props":123,"children":124},{},[125],{"type":55,"value":126},"What problem type?",{"type":50,"tag":110,"props":128,"children":129},{},[130],{"type":55,"value":131},"What constraints matter?",{"type":50,"tag":110,"props":133,"children":134},{},[135],{"type":55,"value":136},"What output format?",{"type":50,"tag":58,"props":138,"children":139},{},[140],{"type":50,"tag":62,"props":141,"children":142},{},[143],{"type":55,"value":144},"Skip asking only if:",{"type":50,"tag":106,"props":146,"children":147},{},[148,153],{"type":50,"tag":110,"props":149,"children":150},{},[151],{"type":55,"value":152},"User explicitly stated the requirement",{"type":50,"tag":110,"props":154,"children":155},{},[156],{"type":55,"value":157},"Context makes it unambiguous (e.g., user shows Python code)",{"type":50,"tag":87,"props":159,"children":160},{},[],{"type":50,"tag":91,"props":162,"children":164},{"id":163},"handle-incomplete-questions",[165],{"type":55,"value":166},"Handle Incomplete Questions",{"type":50,"tag":58,"props":168,"children":169},{},[170],{"type":50,"tag":62,"props":171,"children":172},{},[173],{"type":55,"value":174},"If a question seems partial or incomplete, ask follow-up questions:",{"type":50,"tag":106,"props":176,"children":177},{},[178,191,196],{"type":50,"tag":110,"props":179,"children":180},{},[181,183,189],{"type":55,"value":182},"\"Could you tell me more about ",{"type":50,"tag":184,"props":185,"children":186},"span",{},[187],{"type":55,"value":188},"missing detail",{"type":55,"value":190},"?\"",{"type":50,"tag":110,"props":192,"children":193},{},[194],{"type":55,"value":195},"\"What specifically would you like to achieve with this?\"",{"type":50,"tag":110,"props":197,"children":198},{},[199],{"type":55,"value":200},"\"Are there any constraints or requirements I should know about?\"",{"type":50,"tag":58,"props":202,"children":203},{},[204],{"type":50,"tag":62,"props":205,"children":206},{},[207],{"type":55,"value":208},"Common missing information to probe for:",{"type":50,"tag":106,"props":210,"children":211},{},[212,217,222,227],{"type":50,"tag":110,"props":213,"children":214},{},[215],{"type":55,"value":216},"Problem size (number of vehicles, locations, variables, constraints)",{"type":50,"tag":110,"props":218,"children":219},{},[220],{"type":55,"value":221},"Specific constraints (time windows, capacities, precedence)",{"type":50,"tag":110,"props":223,"children":224},{},[225],{"type":55,"value":226},"Performance requirements (time limits, solution quality)",{"type":50,"tag":110,"props":228,"children":229},{},[230],{"type":55,"value":231},"Integration context (existing codebase, deployment environment)",{"type":50,"tag":58,"props":233,"children":234},{},[235,240],{"type":50,"tag":62,"props":236,"children":237},{},[238],{"type":55,"value":239},"Don't guess — ask.",{"type":55,"value":241}," A brief clarifying question saves time vs. solving the wrong problem.",{"type":50,"tag":87,"props":243,"children":244},{},[],{"type":50,"tag":91,"props":246,"children":248},{"id":247},"clarify-data-requirements",[249],{"type":55,"value":250},"Clarify Data Requirements",{"type":50,"tag":58,"props":252,"children":253},{},[254],{"type":50,"tag":62,"props":255,"children":256},{},[257],{"type":55,"value":258},"Before generating examples, ask about data:",{"type":50,"tag":260,"props":261,"children":262},"ol",{},[263,284,310,330],{"type":50,"tag":110,"props":264,"children":265},{},[266,271],{"type":50,"tag":62,"props":267,"children":268},{},[269],{"type":55,"value":270},"Check if user has data:",{"type":50,"tag":106,"props":272,"children":273},{},[274,279],{"type":50,"tag":110,"props":275,"children":276},{},[277],{"type":55,"value":278},"\"Do you have specific data you'd like to use, or should I create a sample dataset?\"",{"type":50,"tag":110,"props":280,"children":281},{},[282],{"type":55,"value":283},"\"Can you share the format of your input data?\"",{"type":50,"tag":110,"props":285,"children":286},{},[287,292],{"type":50,"tag":62,"props":288,"children":289},{},[290],{"type":55,"value":291},"If using synthesized data:",{"type":50,"tag":106,"props":293,"children":294},{},[295,300,305],{"type":50,"tag":110,"props":296,"children":297},{},[298],{"type":55,"value":299},"State clearly: \"I'll create a sample dataset for demonstration\"",{"type":50,"tag":110,"props":301,"children":302},{},[303],{"type":55,"value":304},"Keep it small and understandable (e.g., 5-10 locations, 2-3 vehicles)",{"type":50,"tag":110,"props":306,"children":307},{},[308],{"type":55,"value":309},"Make values realistic and meaningful",{"type":50,"tag":110,"props":311,"children":312},{},[313,318],{"type":50,"tag":62,"props":314,"children":315},{},[316],{"type":55,"value":317},"Always document what you used:",{"type":50,"tag":319,"props":320,"children":324},"pre",{"className":321,"code":323,"language":55},[322],"language-text","\"For this example I'm using:\n- [X] locations\u002Fvariables\u002Fconstraints\n- [Key assumptions: e.g., all vehicles start at depot, 8-hour shifts]\n- [Data source: synthesized \u002F user-provided \u002F from docs]\"\n",[325],{"type":50,"tag":78,"props":326,"children":328},{"__ignoreMap":327},"",[329],{"type":55,"value":323},{"type":50,"tag":110,"props":331,"children":332},{},[333,338],{"type":50,"tag":62,"props":334,"children":335},{},[336],{"type":55,"value":337},"State assumptions explicitly:",{"type":50,"tag":106,"props":339,"children":340},{},[341,353],{"type":50,"tag":110,"props":342,"children":343},{},[344,346,351],{"type":55,"value":345},"\"I'm assuming ",{"type":50,"tag":184,"props":347,"children":348},{},[349],{"type":55,"value":350},"X",{"type":55,"value":352}," — let me know if this differs from your scenario\"",{"type":50,"tag":110,"props":354,"children":355},{},[356],{"type":55,"value":357},"List any default values or simplifications made",{"type":50,"tag":87,"props":359,"children":360},{},[],{"type":50,"tag":91,"props":362,"children":364},{"id":363},"must-verify-understanding",[365],{"type":55,"value":366},"MUST Verify Understanding",{"type":50,"tag":58,"props":368,"children":369},{},[370],{"type":50,"tag":62,"props":371,"children":372},{},[373],{"type":55,"value":374},"Before writing substantial code, you MUST confirm your understanding:",{"type":50,"tag":319,"props":376,"children":379},{"className":377,"code":378,"language":55},[322],"\"Let me confirm I understand:\n- Problem: [restate in your words]\n- Constraints: [list them]\n- Objective: [minimize\u002Fmaximize what]\n- Interface: [Python\u002FREST\u002FC\u002FCLI]\nIs this correct?\"\n",[380],{"type":50,"tag":78,"props":381,"children":382},{"__ignoreMap":327},[383],{"type":55,"value":378},{"type":50,"tag":87,"props":385,"children":386},{},[],{"type":50,"tag":91,"props":388,"children":390},{"id":389},"follow-requirements-exactly",[391],{"type":55,"value":392},"Follow Requirements Exactly",{"type":50,"tag":106,"props":394,"children":395},{},[396,408,413,418],{"type":50,"tag":110,"props":397,"children":398},{},[399,401,406],{"type":55,"value":400},"Use the ",{"type":50,"tag":62,"props":402,"children":403},{},[404],{"type":55,"value":405},"exact",{"type":55,"value":407}," variable names, formats, and structures the user specifies",{"type":50,"tag":110,"props":409,"children":410},{},[411],{"type":55,"value":412},"Don't add features the user didn't ask for",{"type":50,"tag":110,"props":414,"children":415},{},[416],{"type":55,"value":417},"Don't change the problem formulation unless asked",{"type":50,"tag":110,"props":419,"children":420},{},[421],{"type":55,"value":422},"If user provides partial code, extend it—don't rewrite from scratch",{"type":50,"tag":87,"props":424,"children":425},{},[],{"type":50,"tag":91,"props":427,"children":429},{"id":428},"check-results",[430],{"type":55,"value":431},"Check Results",{"type":50,"tag":58,"props":433,"children":434},{},[435],{"type":55,"value":436},"After providing a solution, guide the user to verify:",{"type":50,"tag":106,"props":438,"children":439},{},[440,472,482],{"type":50,"tag":110,"props":441,"children":442},{},[443,448,450,456,458,464,465,471],{"type":50,"tag":62,"props":444,"children":445},{},[446],{"type":55,"value":447},"Status check",{"type":55,"value":449},": Is it ",{"type":50,"tag":78,"props":451,"children":453},{"className":452},[],[454],{"type":55,"value":455},"Optimal",{"type":55,"value":457}," \u002F ",{"type":50,"tag":78,"props":459,"children":461},{"className":460},[],[462],{"type":55,"value":463},"FeasibleFound",{"type":55,"value":457},{"type":50,"tag":78,"props":466,"children":468},{"className":467},[],[469],{"type":55,"value":470},"SUCCESS",{"type":55,"value":121},{"type":50,"tag":110,"props":473,"children":474},{},[475,480],{"type":50,"tag":62,"props":476,"children":477},{},[478],{"type":55,"value":479},"Constraint satisfaction",{"type":55,"value":481},": Are all constraints met?",{"type":50,"tag":110,"props":483,"children":484},{},[485,490],{"type":50,"tag":62,"props":486,"children":487},{},[488],{"type":55,"value":489},"Objective value",{"type":55,"value":491},": Is it reasonable for the problem?",{"type":50,"tag":58,"props":493,"children":494},{},[495,500],{"type":50,"tag":62,"props":496,"children":497},{},[498],{"type":55,"value":499},"Always end with a Result summary",{"type":55,"value":501}," that includes at least:",{"type":50,"tag":106,"props":503,"children":504},{},[505,510,534],{"type":50,"tag":110,"props":506,"children":507},{},[508],{"type":55,"value":509},"Solver status (e.g. Optimal, FeasibleFound, SUCCESS).",{"type":50,"tag":110,"props":511,"children":512},{},[513,518,520,525,527,533],{"type":50,"tag":62,"props":514,"children":515},{},[516],{"type":55,"value":517},"Objective value with highlight",{"type":55,"value":519}," — easy to spot (bold or code block). Example: ",{"type":50,"tag":62,"props":521,"children":522},{},[523],{"type":55,"value":524},"Objective value (min total cost):",{"type":55,"value":526}," \u003Cvalue> or ",{"type":50,"tag":78,"props":528,"children":530},{"className":529},[],[531],{"type":55,"value":532},"Objective value: \u003Cvalue>",{"type":55,"value":85},{"type":50,"tag":110,"props":535,"children":536},{},[537],{"type":55,"value":538},"Briefly what the objective represents (e.g. total cost, total profit).",{"type":50,"tag":58,"props":540,"children":541},{},[542],{"type":55,"value":543},"Do not bury the objective value only in the middle of a paragraph; it must appear prominently in this summary. Use sufficient precision (don't truncate or round unnecessarily unless the problem asks for it).",{"type":50,"tag":58,"props":545,"children":546},{},[547,552],{"type":50,"tag":62,"props":548,"children":549},{},[550],{"type":55,"value":551},"Workflow:",{"type":55,"value":553}," Formulate once carefully (with verified understanding), solve, then sanity-check the result. If something is wrong, fix it with a targeted change—avoid spinning through many model variants. Decide, implement, verify, then move on.",{"type":50,"tag":58,"props":555,"children":556},{},[557],{"type":55,"value":558},"Provide diagnostic code snippets when helpful.",{"type":50,"tag":560,"props":561,"children":563},"h3",{"id":562},"post-correction-check-mandatory",[564],{"type":55,"value":565},"Post-correction check (mandatory)",{"type":50,"tag":58,"props":567,"children":568},{},[569,571,577],{"type":55,"value":570},"If the result required a correction, retry, or workaround to reach this point, you MUST evaluate the skill-evolution workflow (",{"type":50,"tag":78,"props":572,"children":574},{"className":573},[],[575],{"type":55,"value":576},"skills\u002Fskill-evolution\u002FSKILL.md",{"type":55,"value":578},") before moving on. Do not skip this step.",{"type":50,"tag":87,"props":580,"children":581},{},[],{"type":50,"tag":91,"props":583,"children":585},{"id":584},"check-environment-first",[586],{"type":55,"value":587},"Check Environment First",{"type":50,"tag":58,"props":589,"children":590},{},[591],{"type":50,"tag":62,"props":592,"children":593},{},[594],{"type":55,"value":595},"Before writing code or suggesting installation, verify the user's setup:",{"type":50,"tag":260,"props":597,"children":598},{},[599,620,830,851,884],{"type":50,"tag":110,"props":600,"children":601},{},[602,607],{"type":50,"tag":62,"props":603,"children":604},{},[605],{"type":55,"value":606},"Ask how they access cuOpt:",{"type":50,"tag":106,"props":608,"children":609},{},[610,615],{"type":50,"tag":110,"props":611,"children":612},{},[613],{"type":55,"value":614},"\"Do you have cuOpt installed? If so, which interface?\"",{"type":50,"tag":110,"props":616,"children":617},{},[618],{"type":55,"value":619},"\"What environment are you using? (local GPU, cloud, Docker, server, etc.)\"",{"type":50,"tag":110,"props":621,"children":622},{},[623,628,791,795,800,802,807,809,814,816,821,823,828],{"type":50,"tag":62,"props":624,"children":625},{},[626],{"type":55,"value":627},"Different packages by language\u002Finterface:",{"type":50,"tag":629,"props":630,"children":631},"table",{},[632,656],{"type":50,"tag":633,"props":634,"children":635},"thead",{},[636],{"type":50,"tag":637,"props":638,"children":639},"tr",{},[640,646,651],{"type":50,"tag":641,"props":642,"children":643},"th",{},[644],{"type":55,"value":645},"Language \u002F Interface",{"type":50,"tag":641,"props":647,"children":648},{},[649],{"type":55,"value":650},"Package",{"type":50,"tag":641,"props":652,"children":653},{},[654],{"type":55,"value":655},"Check",{"type":50,"tag":657,"props":658,"children":659},"tbody",{},[660,697,736,764],{"type":50,"tag":637,"props":661,"children":662},{},[663,672,688],{"type":50,"tag":664,"props":665,"children":666},"td",{},[667],{"type":50,"tag":62,"props":668,"children":669},{},[670],{"type":55,"value":671},"Python",{"type":50,"tag":664,"props":673,"children":674},{},[675,680,682],{"type":50,"tag":78,"props":676,"children":678},{"className":677},[],[679],{"type":55,"value":43},{"type":55,"value":681}," (pip\u002Fconda) — also pulls in ",{"type":50,"tag":78,"props":683,"children":685},{"className":684},[],[686],{"type":55,"value":687},"libcuopt",{"type":50,"tag":664,"props":689,"children":690},{},[691],{"type":50,"tag":78,"props":692,"children":694},{"className":693},[],[695],{"type":55,"value":696},"import cuopt",{"type":50,"tag":637,"props":698,"children":699},{},[700,708,725],{"type":50,"tag":664,"props":701,"children":702},{},[703],{"type":50,"tag":62,"props":704,"children":705},{},[706],{"type":55,"value":707},"C",{"type":50,"tag":664,"props":709,"children":710},{},[711,716,718,723],{"type":50,"tag":78,"props":712,"children":714},{"className":713},[],[715],{"type":55,"value":687},{"type":55,"value":717}," (pip\u002Fconda) — already present if ",{"type":50,"tag":78,"props":719,"children":721},{"className":720},[],[722],{"type":55,"value":43},{"type":55,"value":724}," is installed",{"type":50,"tag":664,"props":726,"children":727},{},[728,734],{"type":50,"tag":78,"props":729,"children":731},{"className":730},[],[732],{"type":55,"value":733},"find libcuopt.so",{"type":55,"value":735}," or header check",{"type":50,"tag":637,"props":737,"children":738},{},[739,744,755],{"type":50,"tag":664,"props":740,"children":741},{},[742],{"type":55,"value":743},"REST Server",{"type":50,"tag":664,"props":745,"children":746},{},[747,753],{"type":50,"tag":78,"props":748,"children":750},{"className":749},[],[751],{"type":55,"value":752},"cuopt-server",{"type":55,"value":754}," or Docker",{"type":50,"tag":664,"props":756,"children":757},{},[758],{"type":50,"tag":78,"props":759,"children":761},{"className":760},[],[762],{"type":55,"value":763},"curl \u002Fcuopt\u002Fhealth",{"type":50,"tag":637,"props":765,"children":766},{},[767,772,782],{"type":50,"tag":664,"props":768,"children":769},{},[770],{"type":55,"value":771},"CLI",{"type":50,"tag":664,"props":773,"children":774},{},[775,780],{"type":50,"tag":78,"props":776,"children":778},{"className":777},[],[779],{"type":55,"value":43},{"type":55,"value":781}," package includes CLI",{"type":50,"tag":664,"props":783,"children":784},{},[785],{"type":50,"tag":78,"props":786,"children":788},{"className":787},[],[789],{"type":55,"value":790},"cuopt_cli --help",{"type":50,"tag":792,"props":793,"children":794},"br",{},[],{"type":50,"tag":62,"props":796,"children":797},{},[798],{"type":55,"value":799},"Note:",{"type":55,"value":801}," ",{"type":50,"tag":78,"props":803,"children":805},{"className":804},[],[806],{"type":55,"value":43},{"type":55,"value":808}," declares ",{"type":50,"tag":78,"props":810,"children":812},{"className":811},[],[813],{"type":55,"value":687},{"type":55,"value":815}," as a runtime dependency, so installing the Python package also installs the C library and headers. Installing ",{"type":50,"tag":78,"props":817,"children":819},{"className":818},[],[820],{"type":55,"value":687},{"type":55,"value":822}," on its own does ",{"type":50,"tag":62,"props":824,"children":825},{},[826],{"type":55,"value":827},"not",{"type":55,"value":829}," install the Python API.",{"type":50,"tag":110,"props":831,"children":832},{},[833,838],{"type":50,"tag":62,"props":834,"children":835},{},[836],{"type":55,"value":837},"If not installed, ask how they want to access:",{"type":50,"tag":106,"props":839,"children":840},{},[841,846],{"type":50,"tag":110,"props":842,"children":843},{},[844],{"type":55,"value":845},"\"Would you like help installing cuOpt, or do you have access another way?\"",{"type":50,"tag":110,"props":847,"children":848},{},[849],{"type":55,"value":850},"Options: pip, conda, Docker, cloud instance, existing remote server",{"type":50,"tag":110,"props":852,"children":853},{},[854,859,861],{"type":50,"tag":62,"props":855,"children":856},{},[857],{"type":55,"value":858},"Never assume installation is needed",{"type":55,"value":860}," — the user may:",{"type":50,"tag":106,"props":862,"children":863},{},[864,869,874,879],{"type":50,"tag":110,"props":865,"children":866},{},[867],{"type":55,"value":868},"Already have it installed",{"type":50,"tag":110,"props":870,"children":871},{},[872],{"type":55,"value":873},"Be connecting to a remote server",{"type":50,"tag":110,"props":875,"children":876},{},[877],{"type":55,"value":878},"Prefer a specific installation method",{"type":50,"tag":110,"props":880,"children":881},{},[882],{"type":55,"value":883},"Only need the C library (not Python)",{"type":50,"tag":110,"props":885,"children":886},{},[887,892,929,994],{"type":50,"tag":62,"props":888,"children":889},{},[890],{"type":55,"value":891},"Ask before running any verification commands:",{"type":50,"tag":319,"props":893,"children":897},{"className":894,"code":895,"language":896,"meta":327,"style":327},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Python API check - ask first\nimport cuopt\nprint(cuopt.__version__)\n","python",[898],{"type":50,"tag":78,"props":899,"children":900},{"__ignoreMap":327},[901,911,920],{"type":50,"tag":184,"props":902,"children":905},{"class":903,"line":904},"line",1,[906],{"type":50,"tag":184,"props":907,"children":908},{},[909],{"type":55,"value":910},"# Python API check - ask first\n",{"type":50,"tag":184,"props":912,"children":914},{"class":903,"line":913},2,[915],{"type":50,"tag":184,"props":916,"children":917},{},[918],{"type":55,"value":919},"import cuopt\n",{"type":50,"tag":184,"props":921,"children":923},{"class":903,"line":922},3,[924],{"type":50,"tag":184,"props":925,"children":926},{},[927],{"type":55,"value":928},"print(cuopt.__version__)\n",{"type":50,"tag":319,"props":930,"children":934},{"className":931,"code":932,"language":933,"meta":327,"style":327},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# C API check - ask first\nfind ${CONDA_PREFIX} -name \"libcuopt.so\"\n","bash",[935],{"type":50,"tag":78,"props":936,"children":937},{"__ignoreMap":327},[938,947],{"type":50,"tag":184,"props":939,"children":940},{"class":903,"line":904},[941],{"type":50,"tag":184,"props":942,"children":944},{"style":943},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[945],{"type":55,"value":946},"# C API check - ask first\n",{"type":50,"tag":184,"props":948,"children":949},{"class":903,"line":913},[950,956,962,968,973,979,984,989],{"type":50,"tag":184,"props":951,"children":953},{"style":952},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[954],{"type":55,"value":955},"find",{"type":50,"tag":184,"props":957,"children":959},{"style":958},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[960],{"type":55,"value":961}," ${",{"type":50,"tag":184,"props":963,"children":965},{"style":964},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[966],{"type":55,"value":967},"CONDA_PREFIX",{"type":50,"tag":184,"props":969,"children":970},{"style":958},[971],{"type":55,"value":972},"}",{"type":50,"tag":184,"props":974,"children":976},{"style":975},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[977],{"type":55,"value":978}," -name",{"type":50,"tag":184,"props":980,"children":981},{"style":958},[982],{"type":55,"value":983}," \"",{"type":50,"tag":184,"props":985,"children":986},{"style":975},[987],{"type":55,"value":988},"libcuopt.so",{"type":50,"tag":184,"props":990,"children":991},{"style":958},[992],{"type":55,"value":993},"\"\n",{"type":50,"tag":319,"props":995,"children":997},{"className":931,"code":996,"language":933,"meta":327,"style":327},"# Server check - ask first\ncurl http:\u002F\u002Flocalhost:8000\u002Fcuopt\u002Fhealth\n",[998],{"type":50,"tag":78,"props":999,"children":1000},{"__ignoreMap":327},[1001,1009],{"type":50,"tag":184,"props":1002,"children":1003},{"class":903,"line":904},[1004],{"type":50,"tag":184,"props":1005,"children":1006},{"style":943},[1007],{"type":55,"value":1008},"# Server check - ask first\n",{"type":50,"tag":184,"props":1010,"children":1011},{"class":903,"line":913},[1012,1017],{"type":50,"tag":184,"props":1013,"children":1014},{"style":952},[1015],{"type":55,"value":1016},"curl",{"type":50,"tag":184,"props":1018,"children":1019},{"style":975},[1020],{"type":55,"value":1021}," http:\u002F\u002Flocalhost:8000\u002Fcuopt\u002Fhealth\n",{"type":50,"tag":87,"props":1023,"children":1024},{},[],{"type":50,"tag":91,"props":1026,"children":1028},{"id":1027},"ask-before-running",[1029],{"type":55,"value":1030},"Ask Before Running",{"type":50,"tag":58,"props":1032,"children":1033},{},[1034],{"type":50,"tag":62,"props":1035,"children":1036},{},[1037],{"type":55,"value":1038},"Do not execute commands or code without explicit permission:",{"type":50,"tag":629,"props":1040,"children":1041},{},[1042,1058],{"type":50,"tag":633,"props":1043,"children":1044},{},[1045],{"type":50,"tag":637,"props":1046,"children":1047},{},[1048,1053],{"type":50,"tag":641,"props":1049,"children":1050},{},[1051],{"type":55,"value":1052},"Action",{"type":50,"tag":641,"props":1054,"children":1055},{},[1056],{"type":55,"value":1057},"Rule",{"type":50,"tag":657,"props":1059,"children":1060},{},[1061,1074,1111,1124],{"type":50,"tag":637,"props":1062,"children":1063},{},[1064,1069],{"type":50,"tag":664,"props":1065,"children":1066},{},[1067],{"type":55,"value":1068},"Shell commands",{"type":50,"tag":664,"props":1070,"children":1071},{},[1072],{"type":55,"value":1073},"Show command, explain what it does, ask \"Should I run this?\"",{"type":50,"tag":637,"props":1075,"children":1076},{},[1077,1082],{"type":50,"tag":664,"props":1078,"children":1079},{},[1080],{"type":55,"value":1081},"Package installs",{"type":50,"tag":664,"props":1083,"children":1084},{},[1085,1087,1093,1095,1101,1103,1109],{"type":55,"value":1086},"Allowed in user space (",{"type":50,"tag":78,"props":1088,"children":1090},{"className":1089},[],[1091],{"type":55,"value":1092},"pip",{"type":55,"value":1094},"\u002F",{"type":50,"tag":78,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":55,"value":1100},"conda",{"type":55,"value":1102},"\u002FDocker) once the user confirms they want cuOpt installed — see below. Only ",{"type":50,"tag":78,"props":1104,"children":1106},{"className":1105},[],[1107],{"type":55,"value":1108},"sudo",{"type":55,"value":1110},"\u002Fsystem-level installs are off-limits.",{"type":50,"tag":637,"props":1112,"children":1113},{},[1114,1119],{"type":50,"tag":664,"props":1115,"children":1116},{},[1117],{"type":55,"value":1118},"Examples\u002Fscripts",{"type":50,"tag":664,"props":1120,"children":1121},{},[1122],{"type":55,"value":1123},"Show the code first, ask \"Would you like me to run this?\"",{"type":50,"tag":637,"props":1125,"children":1126},{},[1127,1132],{"type":50,"tag":664,"props":1128,"children":1129},{},[1130],{"type":55,"value":1131},"File writes",{"type":50,"tag":664,"props":1133,"children":1134},{},[1135],{"type":55,"value":1136},"Explain what will change, ask before writing",{"type":50,"tag":58,"props":1138,"children":1139},{},[1140],{"type":50,"tag":62,"props":1141,"children":1142},{},[1143],{"type":55,"value":1144},"Exceptions (okay without asking):",{"type":50,"tag":106,"props":1146,"children":1147},{},[1148,1153],{"type":50,"tag":110,"props":1149,"children":1150},{},[1151],{"type":55,"value":1152},"Read-only commands the user explicitly requested",{"type":50,"tag":110,"props":1154,"children":1155},{},[1156],{"type":55,"value":1157},"Commands the user just provided and asked you to run",{"type":50,"tag":87,"props":1159,"children":1160},{},[],{"type":50,"tag":91,"props":1162,"children":1164},{"id":1163},"no-privileged-operations",[1165],{"type":55,"value":1166},"No Privileged Operations",{"type":50,"tag":1168,"props":1169,"children":1170},"blockquote",{},[1171],{"type":50,"tag":58,"props":1172,"children":1173},{},[1174,1179],{"type":50,"tag":62,"props":1175,"children":1176},{},[1177],{"type":55,"value":1178},"🔒 MANDATORY — this is the one non-negotiable refusal.",{"type":55,"value":1180}," It applies even when the user explicitly asks.",{"type":50,"tag":58,"props":1182,"children":1183},{},[1184],{"type":50,"tag":62,"props":1185,"children":1186},{},[1187],{"type":55,"value":1188},"Never do these:",{"type":50,"tag":106,"props":1190,"children":1191},{},[1192,1204,1217,1222],{"type":50,"tag":110,"props":1193,"children":1194},{},[1195,1197,1202],{"type":55,"value":1196},"Use ",{"type":50,"tag":78,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":55,"value":1108},{"type":55,"value":1203}," or run as root",{"type":50,"tag":110,"props":1205,"children":1206},{},[1207,1209,1215],{"type":55,"value":1208},"Modify system files or configurations (e.g. ",{"type":50,"tag":78,"props":1210,"children":1212},{"className":1211},[],[1213],{"type":55,"value":1214},"\u002Fetc",{"type":55,"value":1216},")",{"type":50,"tag":110,"props":1218,"children":1219},{},[1220],{"type":55,"value":1221},"Add system-level package repositories or keys",{"type":50,"tag":110,"props":1223,"children":1224},{},[1225],{"type":55,"value":1226},"Change firewall, network, or driver settings",{"type":50,"tag":58,"props":1228,"children":1229},{},[1230,1232,1236],{"type":55,"value":1231},"If a task seems to need one of these, stop and explain what's needed — the user runs the privileged step themselves. Installs into a user-space environment (a virtualenv, a conda env, or the active Python) are ",{"type":50,"tag":62,"props":1233,"children":1234},{},[1235],{"type":55,"value":827},{"type":55,"value":1237}," privileged and are covered below.",{"type":50,"tag":87,"props":1239,"children":1240},{},[],{"type":50,"tag":91,"props":1242,"children":1244},{"id":1243},"installing-packages",[1245],{"type":55,"value":1246},"Installing Packages",{"type":50,"tag":58,"props":1248,"children":1249},{},[1250,1252,1257,1259,1265,1267,1272,1274,1279],{"type":55,"value":1251},"Installing cuOpt (and the packages it needs) ",{"type":50,"tag":62,"props":1253,"children":1254},{},[1255],{"type":55,"value":1256},"in user space",{"type":55,"value":1258}," is allowed — that's what the ",{"type":50,"tag":78,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":55,"value":1264},"cuopt-install",{"type":55,"value":1266}," skill is for. The rule is ",{"type":50,"tag":68,"props":1268,"children":1269},{},[1270],{"type":55,"value":1271},"get the user's go-ahead",{"type":55,"value":1273},", not ",{"type":50,"tag":68,"props":1275,"children":1276},{},[1277],{"type":55,"value":1278},"refuse",{"type":55,"value":1280},":",{"type":50,"tag":260,"props":1282,"children":1283},{},[1284,1302,1348],{"type":50,"tag":110,"props":1285,"children":1286},{},[1287,1292,1294,1300],{"type":50,"tag":62,"props":1288,"children":1289},{},[1290],{"type":55,"value":1291},"Confirm first.",{"type":55,"value":1293}," Tell the user which package you'll install, which command, and why; install once they agree. (Check the environment first per ",{"type":50,"tag":1295,"props":1296,"children":1298},"a",{"href":1297},"#check-environment-first",[1299],{"type":55,"value":587},{"type":55,"value":1301}," — they may already have it, or prefer a different method.)",{"type":50,"tag":110,"props":1303,"children":1304},{},[1305,1310,1312,1317,1319,1324,1325,1331,1333,1338,1340,1346],{"type":50,"tag":62,"props":1306,"children":1307},{},[1308],{"type":55,"value":1309},"Stay in user space.",{"type":55,"value":1311}," Use ",{"type":50,"tag":78,"props":1313,"children":1315},{"className":1314},[],[1316],{"type":55,"value":1092},{"type":55,"value":1318},", ",{"type":50,"tag":78,"props":1320,"children":1322},{"className":1321},[],[1323],{"type":55,"value":1100},{"type":55,"value":1094},{"type":50,"tag":78,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":55,"value":1330},"mamba",{"type":55,"value":1332},", or Docker into the active env. Never reach for ",{"type":50,"tag":78,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":55,"value":1108},{"type":55,"value":1339}," or a system package manager (",{"type":50,"tag":78,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":55,"value":1345},"apt install",{"type":55,"value":1347},") — if something seems to need that, surface it and let the user handle the privileged part.",{"type":50,"tag":110,"props":1349,"children":1350},{},[1351,1356,1358,1364,1365,1371,1373,1378],{"type":50,"tag":62,"props":1352,"children":1353},{},[1354],{"type":55,"value":1355},"Match the CUDA suffix",{"type":55,"value":1357}," (",{"type":50,"tag":78,"props":1359,"children":1361},{"className":1360},[],[1362],{"type":55,"value":1363},"-cu12",{"type":55,"value":457},{"type":50,"tag":78,"props":1366,"children":1368},{"className":1367},[],[1369],{"type":55,"value":1370},"-cu13",{"type":55,"value":1372},") to the user's runtime, and ",{"type":50,"tag":62,"props":1374,"children":1375},{},[1376],{"type":55,"value":1377},"choose one",{"type":55,"value":1379}," package manager — don't mix pip and conda for the same package.",{"type":50,"tag":87,"props":1381,"children":1382},{},[],{"type":50,"tag":91,"props":1384,"children":1386},{"id":1385},"resources",[1387],{"type":55,"value":1388},"Resources",{"type":50,"tag":560,"props":1390,"children":1392},{"id":1391},"documentation",[1393],{"type":55,"value":1394},"Documentation",{"type":50,"tag":106,"props":1396,"children":1397},{},[1398,1409],{"type":50,"tag":110,"props":1399,"children":1400},{},[1401],{"type":50,"tag":1295,"props":1402,"children":1406},{"href":1403,"rel":1404},"https:\u002F\u002Fdocs.nvidia.com\u002Fcuopt\u002Fuser-guide\u002Flatest\u002Fintroduction.html",[1405],"nofollow",[1407],{"type":55,"value":1408},"cuOpt User Guide",{"type":50,"tag":110,"props":1410,"children":1411},{},[1412],{"type":50,"tag":1295,"props":1413,"children":1416},{"href":1414,"rel":1415},"https:\u002F\u002Fdocs.nvidia.com\u002Fcuopt\u002Fuser-guide\u002Flatest\u002Fapi.html",[1405],[1417],{"type":55,"value":1418},"API Reference",{"type":50,"tag":560,"props":1420,"children":1422},{"id":1421},"examples",[1423],{"type":55,"value":1424},"Examples",{"type":50,"tag":106,"props":1426,"children":1427},{},[1428,1438],{"type":50,"tag":110,"props":1429,"children":1430},{},[1431],{"type":50,"tag":1295,"props":1432,"children":1435},{"href":1433,"rel":1434},"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt-examples",[1405],[1436],{"type":55,"value":1437},"cuopt-examples repo",{"type":50,"tag":110,"props":1439,"children":1440},{},[1441],{"type":50,"tag":1295,"props":1442,"children":1445},{"href":1443,"rel":1444},"https:\u002F\u002Fcolab.research.google.com\u002Fgithub\u002Fnvidia\u002Fcuopt-examples\u002F",[1405],[1446],{"type":55,"value":1447},"Google Colab notebooks",{"type":50,"tag":560,"props":1449,"children":1451},{"id":1450},"support",[1452],{"type":55,"value":1453},"Support",{"type":50,"tag":106,"props":1455,"children":1456},{},[1457,1467,1477],{"type":50,"tag":110,"props":1458,"children":1459},{},[1460],{"type":50,"tag":1295,"props":1461,"children":1464},{"href":1462,"rel":1463},"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Fissues\u002Fnew?template=bug_report.md",[1405],[1465],{"type":55,"value":1466},"File a Bug",{"type":50,"tag":110,"props":1468,"children":1469},{},[1470],{"type":50,"tag":1295,"props":1471,"children":1474},{"href":1472,"rel":1473},"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Fissues\u002Fnew?template=submit-question.md",[1405],[1475],{"type":55,"value":1476},"Ask a Question",{"type":50,"tag":110,"props":1478,"children":1479},{},[1480],{"type":50,"tag":1295,"props":1481,"children":1484},{"href":1482,"rel":1483},"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fcuopt\u002Fissues",[1405],[1485],{"type":55,"value":1486},"All Issues",{"type":50,"tag":1488,"props":1489,"children":1490},"style",{},[1491],{"type":55,"value":1492},"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":1494,"total":1649},[1495,1511,1527,1538,1550,1564,1577,1591,1604,1615,1629,1638],{"slug":1496,"name":1496,"fn":1497,"description":1498,"org":1499,"tags":1500,"stars":1508,"repoUrl":1509,"updatedAt":1510},"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},[1501,1502,1505],{"name":1394,"slug":1391,"type":15},{"name":1503,"slug":1504,"type":15},"MCP","mcp",{"name":1506,"slug":1507,"type":15},"Search","search",21777,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FNemoClaw","2026-07-20T06:00:01.461044",{"slug":1512,"name":1512,"fn":1513,"description":1514,"org":1515,"tags":1516,"stars":1524,"repoUrl":1525,"updatedAt":1526},"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},[1517,1520,1523],{"name":1518,"slug":1519,"type":15},"Containers","containers",{"name":1521,"slug":1522,"type":15},"Deployment","deployment",{"name":671,"slug":896,"type":15},17049,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FMegatron-LM","2026-07-27T06:06:11.249662",{"slug":1528,"name":1528,"fn":1529,"description":1530,"org":1531,"tags":1532,"stars":1524,"repoUrl":1525,"updatedAt":1537},"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},[1533,1536],{"name":1534,"slug":1535,"type":15},"CI\u002FCD","ci-cd",{"name":1521,"slug":1522,"type":15},"2026-07-14T05:25:59.97109",{"slug":1539,"name":1539,"fn":1540,"description":1541,"org":1542,"tags":1543,"stars":1524,"repoUrl":1525,"updatedAt":1549},"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},[1544,1545,1546],{"name":1534,"slug":1535,"type":15},{"name":1521,"slug":1522,"type":15},{"name":1547,"slug":1548,"type":15},"GitHub","github","2026-07-27T06:06:12.278222",{"slug":1551,"name":1551,"fn":1552,"description":1553,"org":1554,"tags":1555,"stars":1524,"repoUrl":1525,"updatedAt":1563},"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},[1556,1559,1560],{"name":1557,"slug":1558,"type":15},"Debugging","debugging",{"name":1547,"slug":1548,"type":15},{"name":1561,"slug":1562,"type":15},"Triage","triage","2026-07-14T05:25:57.442089",{"slug":1565,"name":1565,"fn":1566,"description":1567,"org":1568,"tags":1569,"stars":1524,"repoUrl":1525,"updatedAt":1576},"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},[1570,1573],{"name":1571,"slug":1572,"type":15},"Best Practices","best-practices",{"name":1574,"slug":1575,"type":15},"Code Analysis","code-analysis","2026-07-14T05:25:56.18433",{"slug":1578,"name":1578,"fn":1579,"description":1580,"org":1581,"tags":1582,"stars":1524,"repoUrl":1525,"updatedAt":1590},"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},[1583,1586,1589],{"name":1584,"slug":1585,"type":15},"Machine Learning","machine-learning",{"name":1587,"slug":1588,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:11.777011",{"slug":1592,"name":1592,"fn":1593,"description":1594,"org":1595,"tags":1596,"stars":1524,"repoUrl":1525,"updatedAt":1603},"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},[1597,1600],{"name":1598,"slug":1599,"type":15},"QA","qa",{"name":1601,"slug":1602,"type":15},"Testing","testing","2026-07-14T05:25:53.673039",{"slug":1605,"name":1605,"fn":1606,"description":1607,"org":1608,"tags":1609,"stars":1524,"repoUrl":1525,"updatedAt":1614},"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},[1610,1611],{"name":1521,"slug":1522,"type":15},{"name":1612,"slug":1613,"type":15},"Infrastructure","infrastructure","2026-07-14T05:25:49.362534",{"slug":1616,"name":1616,"fn":1617,"description":1618,"org":1619,"tags":1620,"stars":1524,"repoUrl":1525,"updatedAt":1628},"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},[1621,1624,1625],{"name":1622,"slug":1623,"type":15},"Code Review","code-review",{"name":1547,"slug":1548,"type":15},{"name":1626,"slug":1627,"type":15},"Pull Requests","pull-requests","2026-07-14T05:26:01.226578",{"slug":1630,"name":1630,"fn":1631,"description":1632,"org":1633,"tags":1634,"stars":1524,"repoUrl":1525,"updatedAt":1637},"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},[1635,1636],{"name":1598,"slug":1599,"type":15},{"name":1601,"slug":1602,"type":15},"2026-07-14T05:25:54.928983",{"slug":1639,"name":1639,"fn":1640,"description":1641,"org":1642,"tags":1643,"stars":1524,"repoUrl":1525,"updatedAt":1648},"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},[1644,1647],{"name":1645,"slug":1646,"type":15},"Automation","automation",{"name":1534,"slug":1535,"type":15},"2026-07-30T05:29:03.275638",496,{"items":1651,"total":913},[1652,1662],{"slug":1653,"name":1653,"fn":1654,"description":1655,"org":1656,"tags":1657,"stars":23,"repoUrl":24,"updatedAt":1661},"cuopt-skill-evolution","evolve cuOpt skills from interaction learnings","After solving a non-trivial problem, detect generalizable learnings and propose skill updates. Always active — applies to every interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1658,1659,1660],{"name":1645,"slug":1646,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-07-14T05:31:12.318397",{"slug":4,"name":4,"fn":5,"description":6,"org":1663,"tags":1664,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1665,1666,1667,1668],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15}]