npx skills add ...
npx skills add nvidia/nemo --skill fix-issue
Fix a GitHub issue in NeMo Speech (NVIDIA-NeMo/Speech). Read the issue, reproduce the bug with a failing test, implement the fix, and verify tests pass. Only opens a PR if the user explicitly asks for it.
npx skills add nvidia/nemo --skill fix-issue
Fix a GitHub issue in NeMo Speech from first principles: understand the bug, prove it with a test, and fix the root cause.
The key discipline is reproduce first, fix second. Writing the failing test before touching the source code forces a precise understanding of what broken actually means, which keeps the fix focused and correct.
The issue number is the primary input. It may come from:
/fix-issue 1234If no issue number is clear, and the description provided is not good enough, ask for more details before proceeding.
Read the issue description carefully. Identify:
nemo/collections and components are affected?gh issue view <ISSUE_NUMBER> --repo NVIDIA-NeMo/Speechtests/ that demonstrates the failurepytest <your_test_file> -vOnly create a branch and open a PR if the user explicitly asks for it. When they do:
Notes:
git add -A or git add ..Isort and Black Formatting action handles formatting automatically.main directly.