-
Notifications
You must be signed in to change notification settings - Fork 161
Refactoring agentic skill files based on roles and modules #818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
bc40a04
Adding new skill based structure
rgsl888prabhu 7250813
update
rgsl888prabhu 53e5541
update codeowners file for agents and few other template files
rgsl888prabhu eb8e45c
style
rgsl888prabhu 793f153
fix
rgsl888prabhu 1aefd60
Merge branch 'main' into add_agentic_skill
rgsl888prabhu 02519b1
Add more details
rgsl888prabhu 06c4af4
Add more reference
rgsl888prabhu ddacaec
Merge branch 'add_agentic_skill' of github.com:rgsl888prabhu/cuopt_pu…
rgsl888prabhu aa9dd73
fix C API
rgsl888prabhu 309db04
udpate rules
rgsl888prabhu 7281759
remove legacy
rgsl888prabhu 7b98a7a
review
rgsl888prabhu 27a0865
remove cuopt.yaml files
rgsl888prabhu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,32 @@ | ||
| # AGENTS.md - AI Coding Agent Guidelines for cuOpt | ||
| # AGENTS.md - cuOpt AI Agent Entry Point | ||
|
|
||
| This file is intentionally **minimal**. Choose a role and follow the matching rules: | ||
| AI agent skills for NVIDIA cuOpt optimization engine. | ||
|
|
||
| - **Using cuOpt (model + solve problems)**: `.github/agents/cuopt-user.md` | ||
| - **Developing cuOpt (changing this repo)**: `.github/agents/cuopt-developer.md` | ||
| ## Quick Start | ||
|
|
||
| ### Machine-readable skill manifest | ||
| | Task | Read These Skills | | ||
| |------|-------------------| | ||
| | **Using cuOpt** (routing, LP, etc.) | `skills/cuopt-user-rules/` → then domain skill | | ||
| | **Developing cuOpt** (contributing) | `skills/cuopt-developer/` | | ||
|
|
||
| - **Primary**: `.github/.ai/skills/cuopt.yaml` | ||
| - **Root shim (compat)**: `.ai/skills/cuopt.yaml` | ||
| ## Skills Directory | ||
|
|
||
| ### Canonical contribution guide | ||
| See `skills/README.md` for the full index. | ||
|
|
||
| - `CONTRIBUTING.md` | ||
| ### User Skills (read cuopt-user-rules first) | ||
| - `skills/cuopt-routing/` — VRP, TSP, PDP | ||
| - `skills/cuopt-lp-milp/` — Linear programming, integer variables | ||
| - `skills/cuopt-qp/` — Quadratic programming | ||
| - `skills/cuopt-debugging/` — Troubleshooting | ||
| - `skills/cuopt-installation/` — Setup & requirements | ||
| - `skills/cuopt-server/` — REST API deployment | ||
|
|
||
| ### Developer Skill (has its own rules) | ||
| - `skills/cuopt-developer/` — Contributing code | ||
|
|
||
| ## Resources | ||
|
|
||
| - [cuOpt Documentation](https://docs.nvidia.com/cuopt/user-guide/latest/) | ||
| - [cuopt-examples repo](https://github.com/NVIDIA/cuopt-examples) | ||
| - [GitHub Issues](https://github.com/NVIDIA/cuopt/issues) | ||
| - [Developer Forums](https://forums.developer.nvidia.com/c/ai-data-science/nvidia-cuopt/514) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 1282
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 112
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 928
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 87
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 782
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 129
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 396
Clarify skill paths as
.github/skills/...to avoid ambiguity.The paths in this document are currently referenced as
skills/..., but all these directories actually exist under.github/skills/. While these relative references technically resolve correctly from the document's location, they can be ambiguous when viewed from the repo root or on GitHub. Use explicit.github/skills/...paths throughout to make the references unambiguous.Affected locations
Quick Start table (lines 9–10), Skills Directory heading (line 14), and all skill paths in the list (lines 17–22, 25).
🤖 Prompt for AI Agents