cuOpt User Rules
Read this when helping someone use cuOpt — calling the SDK, installing, deploying the server, or formulating optimization problems. For modifying cuOpt itself, switch to cuopt-developer.
When to Use
Activate this skill when the user:
- Asks about NVIDIA cuOpt (routing, LP, MILP, QP, or related solvers)
- Needs help installing, configuring, or deploying cuOpt
- Wants to write code that calls the cuOpt Python API, C API, REST server, or CLI
- Is formulating an optimization problem and needs guidance on constraints, objectives, or data
- Asks about cuOpt examples, documentation, or troubleshooting
Do NOT use this skill for cuOpt internal development, source code changes, or build-system work — use cuopt-developer instead.
Prerequisites
- Windows host is primary (PowerShell). Keep Windows path notes when present.
- User may or may not have cuOpt installed — never assume installation is needed.
- If the user references
scripts/ or references/ subdirectories, load them on demand (see Procedure).
Procedure
1. Ask Before Assuming
Always clarify ambiguous requirements before implementing:
- What language/interface? (Python, C, REST server, CLI)
- What problem type? (routing, LP, MILP, QP)
- What constraints matter? (time windows, capacities, precedence, etc.)
- What output format?
Skip asking only if:
- User explicitly stated the requirement
- Context makes it unambiguous (e.g., user shows Python code)
2. Handle Incomplete Questions
If a question seems partial or incomplete, ask follow-up questions:
- "Could you tell me more about [missing detail]?"
- "What specifically would you like to achieve with this?"
- "Are there any constraints or requirements I should know about?"
Common missing information to probe for:
- Problem size (number of vehicles, locations, variables, constraints)
- Specific constraints (time windows, capacities, precedence)
- Performance requirements (time limits, solution quality)
- Integration context (existing codebase, deployment environment)
Don't guess — ask. A brief clarifying question saves time vs. solving the wrong problem.
3. Clarify Data Requirements
Before generating examples, ask about data:
Check if user has data:
- "Do you have specific data you'd like to use, or should I create a sample dataset?"
- "Can you share the format of your input data?"
If using synthesized data:
- State clearly: "I'll create a sample dataset for demonstration"
- Keep it small and understandable (e.g., 5-10 locations, 2-3 vehicles)
- Make values realistic and meaningful
Always document what you used:
"For this example I'm using:
- [X] locations/variables/constraints
- [Key assumptions: e.g., all vehicles start at depot, 8-hour shifts]
- [Data source: synthesized / user-provided / from docs]"
State assumptions explicitly:
- "I'm assuming [X] — let me know if this differs from your scenario"
- List any default values or simplifications made
4. MUST Verify Understanding
Before writing substantial code, you MUST confirm your understanding:
"Let me confirm I understand:
- Problem: [restate in your words]
- Constraints: [list them]
- Objective: [minimize/maximize what]
- Interface: [Python/REST/C/CLI]
Is this correct?"
5. Follow Requirements Exactly
- Use the exact variable names, formats, and structures the user specifies
- Don't add features the user didn't ask for
- Don't change the problem formulation unless asked
- If user provides partial code, extend it — don't rewrite from scratch
6. Check Environment First
Before writing code or suggesting installation, verify the user's setup:
Ask how they access cuOpt:
- "Do you have cuOpt installed? If so, which interface?"
- "What environment are you using? (local GPU, cloud, Docker, server, etc.)"
Different packages by language/interface:
| Language / Interface |
Package |
Check |
| Python |
cuopt (pip/conda) — also pulls in libcuopt |
import cuopt |
| C |
libcuopt (pip/conda) — already present if cuopt is installed |
find libcuopt.so or header check |
| REST Server |
cuopt-server or Docker |
curl /cuopt/health |
| CLI |
cuopt package includes CLI |
cuopt_cli --help |
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.
If not installed, ask how they want to access:
- "Would you like help installing cuOpt, or do you have access another way?"
- Options: pip, conda, Docker, cloud instance, existing remote server
Never assume installation is needed — the user may:
- Already have it installed
- Be connecting to a remote server
- Prefer a specific installation method
- Only need the C library (not Python)
Ask before running any verification commands:
# Python API check - ask first
import cuopt
print(cuopt.__version__)
# C API check - ask first
find ${CONDA_PREFIX} -name "libcuopt.so"
# Server check - ask first
curl http://localhost:8000/cuopt/health
7. Check Results
After providing a solution, guide the user to verify:
- Status check: Is it
Optimal / FeasibleFound / SUCCESS?
- Constraint satisfaction: Are all constraints met?
- Objective value: Is it reasonable for the problem?
Always end with a Result summary that includes at least:
- Solver status (e.g. Optimal, FeasibleFound, SUCCESS).
- Objective value with highlight — easy to spot (bold or code block). Example: Objective value (min total cost):
<value> or Objective value: <value>.
- Briefly what the objective represents (e.g. total cost, total profit).
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).
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.
Provide diagnostic code snippets when helpful.
8. Post-Correction Check (Mandatory)
If the result required a correction, retry, or workaround to reach this point, you MUST evaluate the skill-evolution workflow (skills/skill-evolution/SKILL.md) before moving on. Do not skip this step.
9. Loading Reference Files
- If the user references
scripts/ — load relevant scripts from the scripts/ directory within this skill folder when needed for examples or diagnostics.
- If the user references
references/ — load reference documentation from the references/ directory when deeper API or configuration detail is needed.
- Load these on demand, not preemptively.
Pitfalls
Never Install Packages Automatically
🔒 MANDATORY — You MUST NOT install, upgrade, or modify packages. Provide the exact command; the user runs it. No exceptions.
| Forbidden |
What to do instead |
pip install ..., conda install ..., apt install ..., any package manager |
Give the exact command and ask the user to run it. Say why the package is needed. |
When a package is needed: Identify it, provide the exact command, explain why, then wait for the user to confirm they ran it. Even if the user says "just install it", give the command and require them to execute it themselves.
Ask Before Running
Do not execute commands or code without explicit permission:
| Action |
Rule |
| Shell commands |
Show command, explain what it does, ask "Should I run this?" |
| Package installs |
Never run installs yourself — give the exact command, user runs it |
| Examples/scripts |
Show the code first, ask "Would you like me to run this?" |
| File writes |
Explain what will change, ask before writing |
Exceptions (okay without asking):
- Read-only commands the user explicitly requested
- Commands the user just provided and asked you to run
No Privileged Operations
Never do these without explicit user request AND confirmation:
- Use
sudo or run as root
- Modify system files or configurations
- Add package repositories or keys
- Change firewall, network, or driver settings
- Write files outside the workspace
Common Mistakes
- Guessing problem size or constraints — always ask if unclear
- Rewriting user code from scratch — extend, don't replace
- Adding unrequested features — follow requirements exactly
- Burying the objective value — it must be prominent in the result summary
- Assuming installation is needed — user may already have cuOpt or use a remote server
- Installing
libcuopt alone expecting Python API — it does NOT include the Python API; install cuopt instead
Verification
Verify Environment
Ask the user to run (do not run yourself unless explicitly permitted):
# Python API check
import cuopt
print(cuopt.__version__)
# C API check
find ${CONDA_PREFIX} -name "libcuopt.so"
# Server health check
curl http://localhost:8000/cuopt/health
Verify Solution
After solving, confirm:
- Solver status is
Optimal, FeasibleFound, or SUCCESS
- All constraints are satisfied
- Objective value is reasonable for the problem size and type
Verify Understanding
Before writing substantial code, restate the problem and get confirmation (see Procedure step 4).
Resources
Documentation
Examples
Support
Related Skills
- cuopt-developer — Use when modifying cuOpt internals, source code, or build system
- skill-evolution — Mandatory evaluation after any correction, retry, or workaround (see Procedure step 8)
1---2name: cuopt-user-rules3description: Guides end users calling NVIDIA cuOpt for routing, LP, MILP, or QP via Python, C, REST, or CLI — install, formulate, and check solver status. Use when asking about the cuOpt SDK, installation, server deploy, or optimization problem setup. Not for modifying cuOpt internals, source, or build systems (cuopt-developer). Never auto-install packages.4license: Apache-2.05---6
7# cuOpt User Rules
8
9**Read this when helping someone *use* cuOpt** — calling the SDK, installing, deploying the server, or formulating optimization problems. For modifying cuOpt itself, switch to `cuopt-developer`.
10
11---
12
13## When to Use
14
15Activate this skill when the user:
16- Asks about NVIDIA cuOpt (routing, LP, MILP, QP, or related solvers)
17- Needs help installing, configuring, or deploying cuOpt
18- Wants to write code that calls the cuOpt Python API, C API, REST server, or CLI
19- Is formulating an optimization problem and needs guidance on constraints, objectives, or data
20- Asks about cuOpt examples, documentation, or troubleshooting
21
22**Do NOT use this skill** for cuOpt internal development, source code changes, or build-system work — use `cuopt-developer` instead.
23
24---
25
26## Prerequisites
27
28- Windows host is primary (PowerShell). Keep Windows path notes when present.
29- User may or may not have cuOpt installed — never assume installation is needed.
30- If the user references `scripts/` or `references/` subdirectories, load them on demand (see Procedure).
31
32---
33
34## Procedure
35
36### 1. Ask Before Assuming
37
38**Always clarify ambiguous requirements before implementing:**
39
40- What **language/interface**? (Python, C, REST server, CLI)
41- What problem type? (routing, LP, MILP, QP)
42- What constraints matter? (time windows, capacities, precedence, etc.)
43- What output format?
44
45**Skip asking only if:**
46- User explicitly stated the requirement
47- Context makes it unambiguous (e.g., user shows Python code)
48
49### 2. Handle Incomplete Questions
50
51If a question seems partial or incomplete, ask follow-up questions:
52
53- "Could you tell me more about [missing detail]?"
54- "What specifically would you like to achieve with this?"
55- "Are there any constraints or requirements I should know about?"
56
57**Common missing information to probe for:**
58- Problem size (number of vehicles, locations, variables, constraints)
59- Specific constraints (time windows, capacities, precedence)
60- Performance requirements (time limits, solution quality)
61- Integration context (existing codebase, deployment environment)
62
63**Don't guess — ask.** A brief clarifying question saves time vs. solving the wrong problem.
64
65### 3. Clarify Data Requirements
66
67Before generating examples, ask about data:
68
691. **Check if user has data:**
70 - "Do you have specific data you'd like to use, or should I create a sample dataset?"
71 - "Can you share the format of your input data?"
72
732. **If using synthesized data:**
74 - State clearly: "I'll create a sample dataset for demonstration"
75 - Keep it small and understandable (e.g., 5-10 locations, 2-3 vehicles)
76 - Make values realistic and meaningful
77
783. **Always document what you used:**
79 ```
80 "For this example I'm using:
81 - [X] locations/variables/constraints
82 - [Key assumptions: e.g., all vehicles start at depot, 8-hour shifts]
83 - [Data source: synthesized / user-provided / from docs]"
84 ```
85
864. **State assumptions explicitly:**
87 - "I'm assuming [X] — let me know if this differs from your scenario"
88 - List any default values or simplifications made
89
90### 4. MUST Verify Understanding
91
92Before writing substantial code, you MUST confirm your understanding:
93
94```
95"Let me confirm I understand:
96- Problem: [restate in your words]
97- Constraints: [list them]
98- Objective: [minimize/maximize what]
99- Interface: [Python/REST/C/CLI]
100Is this correct?"
101```
102
103### 5. Follow Requirements Exactly
104
105- Use the **exact** variable names, formats, and structures the user specifies
106- Don't add features the user didn't ask for
107- Don't change the problem formulation unless asked
108- If user provides partial code, extend it — don't rewrite from scratch
109
110### 6. Check Environment First
111
112Before writing code or suggesting installation, verify the user's setup:
113
1141. **Ask how they access cuOpt:**
115 - "Do you have cuOpt installed? If so, which interface?"
116 - "What environment are you using? (local GPU, cloud, Docker, server, etc.)"
117
1182. **Different packages by language/interface:**
119
120 | Language / Interface | Package | Check |
121 |----------------------|---------|-------|
122 | **Python** | `cuopt` (pip/conda) — also pulls in `libcuopt` | `import cuopt` |
123 | **C** | `libcuopt` (pip/conda) — already present if `cuopt` is installed | `find libcuopt.so` or header check |
124 | REST Server | `cuopt-server` or Docker | `curl /cuopt/health` |
125 | CLI | `cuopt` package includes CLI | `cuopt_cli --help` |
126
127 **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.
128
1293. **If not installed, ask how they want to access:**
130 - "Would you like help installing cuOpt, or do you have access another way?"
131 - Options: pip, conda, Docker, cloud instance, existing remote server
132
1334. **Never assume installation is needed** — the user may:
134 - Already have it installed
135 - Be connecting to a remote server
136 - Prefer a specific installation method
137 - Only need the C library (not Python)
138
1395. **Ask before running any verification commands:**
140 ```python
141 # Python API check - ask first
142 import cuopt
143 print(cuopt.__version__)
144 ```
145 ```bash
146 # C API check - ask first
147 find ${CONDA_PREFIX} -name "libcuopt.so"
148 ```
149 ```bash
150 # Server check - ask first
151 curl http://localhost:8000/cuopt/health
152 ```
153
154### 7. Check Results
155
156After providing a solution, guide the user to verify:
157
158- **Status check**: Is it `Optimal` / `FeasibleFound` / `SUCCESS`?
159- **Constraint satisfaction**: Are all constraints met?
160- **Objective value**: Is it reasonable for the problem?
161
162**Always end with a Result summary** that includes at least:
163- Solver status (e.g. Optimal, FeasibleFound, SUCCESS).
164- **Objective value with highlight** — easy to spot (bold or code block). Example: **Objective value (min total cost):** `<value>` or `Objective value: <value>`.
165- Briefly what the objective represents (e.g. total cost, total profit).
166
167Do 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).
168
169**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.
170
171Provide diagnostic code snippets when helpful.
172
173### 8. Post-Correction Check (Mandatory)
174
175If the result required a correction, retry, or workaround to reach this point, you MUST evaluate the skill-evolution workflow (`skills/skill-evolution/SKILL.md`) before moving on. Do not skip this step.
176
177### 9. Loading Reference Files
178
179- If the user references `scripts/` — load relevant scripts from the `scripts/` directory within this skill folder when needed for examples or diagnostics.
180- If the user references `references/` — load reference documentation from the `references/` directory when deeper API or configuration detail is needed.
181- Load these on demand, not preemptively.
182
183---
184
185## Pitfalls
186
187### Never Install Packages Automatically
188
189> **🔒 MANDATORY — You MUST NOT install, upgrade, or modify packages.** Provide the exact command; the user runs it. No exceptions.
190
191| Forbidden | What to do instead |
192|-----------|--------------------|
193| `pip install ...`, `conda install ...`, `apt install ...`, any package manager | Give the exact command and ask the user to run it. Say why the package is needed. |
194
195**When a package is needed:** Identify it, provide the exact command, explain why, then wait for the user to confirm they ran it. Even if the user says "just install it", give the command and require them to execute it themselves.
196
197### Ask Before Running
198
199Do not execute commands or code without explicit permission:
200
201| Action | Rule |
202|--------|------|
203| Shell commands | Show command, explain what it does, ask "Should I run this?" |
204| Package installs | **Never** run installs yourself — give the exact command, user runs it |
205| Examples/scripts | Show the code first, ask "Would you like me to run this?" |
206| File writes | Explain what will change, ask before writing |
207
208**Exceptions (okay without asking):**
209- Read-only commands the user explicitly requested
210- Commands the user just provided and asked you to run
211
212### No Privileged Operations
213
214**Never do these without explicit user request AND confirmation:**
215
216- Use `sudo` or run as root
217- Modify system files or configurations
218- Add package repositories or keys
219- Change firewall, network, or driver settings
220- Write files outside the workspace
221
222### Common Mistakes
223
224- **Guessing problem size or constraints** — always ask if unclear
225- **Rewriting user code from scratch** — extend, don't replace
226- **Adding unrequested features** — follow requirements exactly
227- **Burying the objective value** — it must be prominent in the result summary
228- **Assuming installation is needed** — user may already have cuOpt or use a remote server
229- **Installing `libcuopt` alone expecting Python API** — it does NOT include the Python API; install `cuopt` instead
230
231---
232
233## Verification
234
235### Verify Environment
236
237Ask the user to run (do not run yourself unless explicitly permitted):
238
239```python
240# Python API check
241import cuopt
242print(cuopt.__version__)
243```
244
245```bash
246# C API check
247find ${CONDA_PREFIX} -name "libcuopt.so"
248```
249
250```bash
251# Server health check
252curl http://localhost:8000/cuopt/health
253```
254
255### Verify Solution
256
257After solving, confirm:
2581. **Solver status** is `Optimal`, `FeasibleFound`, or `SUCCESS`
2592. **All constraints** are satisfied
2603. **Objective value** is reasonable for the problem size and type
261
262### Verify Understanding
263
264Before writing substantial code, restate the problem and get confirmation (see Procedure step 4).
265
266---
267
268## Resources
269
270### Documentation
271- [cuOpt User Guide](https://docs.nvidia.com/cuopt/user-guide/latest/introduction.html)
272- [API Reference](https://docs.nvidia.com/cuopt/user-guide/latest/api.html)
273
274### Examples
275- [cuopt-examples repo](https://github.com/NVIDIA/cuopt-examples)
276- [Google Colab notebooks](https://colab.research.google.com/github/nvidia/cuopt-examples/)
277
278### Support
279- [File a Bug](https://github.com/NVIDIA/cuopt/issues/new?template=bug_report.md)
280- [Ask a Question](https://github.com/NVIDIA/cuopt/issues/new?template=submit-question.md)
281- [All Issues](https://github.com/NVIDIA/cuopt/issues)
282
283---
284
285## Related Skills
286
287- **cuopt-developer** — Use when modifying cuOpt internals, source code, or build system
288- **skill-evolution** — Mandatory evaluation after any correction, retry, or workaround (see Procedure step 8)