npx skills add ...
npx skills add nvidia/openshell --skill create-github-issue
Create GitHub issues using the gh CLI. Use when the user wants to create a new issue, report a bug, request a feature, or create a task in GitHub. Trigger keywords - create issue, new issue, file bug, report bug, feature request, github issue.
npx skills add nvidia/openshell --skill create-github-issue
Create issues on GitHub using the gh CLI. Issues must conform to the project's issue templates.
The gh CLI must be authenticated (gh auth status).
This project uses YAML form issue templates. When creating issues, match the template structure so the output aligns with what GitHub renders.
Do not add a type label automatically. The body must include a User Story, Problem Statement, Impact / Why This Matters, and Acceptance Criteria, followed by bug-specific reproduction steps and environment details. Logs are optional and must be concise and redacted. Apply area or topic labels only when they are clearly known.
<optional minimal, redacted output>
Do not add a type label automatically. The body must include a User Story, Problem Statement, Impact / Why This Matters, Proposed Design, Acceptance Criteria, and Alternatives Considered. The proposed design should define the user-facing workflow and externally observable behavior without prescribing internal implementation. Agent investigation is optional. Apply area or topic labels only when they are clearly known.
For internal tasks that don't fit bug/feature templates:
GitHub built-in issue types (Bug, Feature, Task) should come from the matching issue template when possible, or be set manually afterward. Do not try to emulate them through labels.
Creating an issue does not accept it or queue agent work. Agents never apply state:accepted, the roadmap label, add issues to the roadmap project, or apply agent:plan-requested or agent:implementation-requested. Community issues proceed through triage-issue; a human accepts technically validated work with state:accepted or roadmap placement. The request labels queue work for unattended agents. A user may instead direct an agent to a specific issue; the agent warns about missing expected workflow labels and continues with the requested phase without changing them.
| Option | Description |
|---|---|
--title, -t | Issue title (required) |
--body, -b | Issue description |
--label, -l | Add label (can use multiple times) |
--milestone, -m | Add to milestone |
--project, -p | Add to project |
--web | Open in browser after creation |
The command outputs the issue URL and number.
Display the URL using markdown link syntax so it's easily clickable:
Use the issue number to:
git commit -m "Fix validation error (fixes #123)"<issue-number>-<description>/<username>