Nvidia nemoclaw contributor create pr
Skill autohandai/community-skills/nvidia-nemoclaw-contributor-create-pr
A collection of curated, useful, and safe skills for Autohand Code CLI Agent
npx -y skills add autohandai/community-skills --skill nvidia-nemoclaw-contributor-create-prAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create GitHub pull requests that follow the NemoClaw PR template. Use when the user wants to create a new PR, submit code for review, open a pull request, or push changes for review. Trigger keywords - create PR, pull request, new PR, submit for review, open PR, push for review.
The file declares its own license as Apache-2.0 AND CC-BY-4.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
6.7 KB, as published. Nobody here has run it
Create GitHub Pull Request
Create pull requests on the NemoClaw GitHub repository using the gh CLI. This skill ensures every PR follows the project's PR template exactly.
Prerequisites
- The
ghCLI must be authenticated (gh auth status). - You must be in the NemoClaw git repository.
- You must have commits on a branch that is pushed to the remote.
Step 1: Verify Branch State
Before creating a PR, verify the branch.
-
Not on main. Never create PRs from main.
git branch --show-current -
Branch has commits ahead of main.
git log main..HEAD --oneline -
Working tree is clean. Stage or stash any uncommitted changes first.
git status
Step 2: Run Pre-PR Checks
Choose checks based on the files changed.
For code changes, run both checks and confirm they pass before proceeding:
npx prek run --all-files
npm test
For doc-only changes, do not run the full test suite unless the docs change requires it. Run the docs and hook checks instead:
npx prek run --all-files
make docs
If a required check fails, fix the issue before creating the PR.
When preparing the PR body for a doc-only change, leave the npm test verification box unchecked unless you actually ran it.
Step 3: Push the Branch
Ensure the branch is pushed to the remote.
git push -u origin HEAD
Step 4: Determine PR Metadata
Title
PR titles must follow Conventional Commits format:
<type>(<scope>): <description>
Types: feat, fix, docs, chore, refactor, test, ci, perf
Scope is typically the component name (e.g., cli, blueprint, plugin, policy, docs).
Examples:
feat(cli): add offline mode for onboardingfix(blueprint): prevent SSRF bypass via redirectdocs: update quickstart for Windows prerequisites
Type of Change
Determine which type applies based on the diff:
- Code change for a new feature, bug fix, or refactor — most PRs.
- Code change with doc updates — code plus changes under
docs/. - Doc only, prose changes without code sample modifications — only Markdown prose.
- Doc only, includes code sample changes — doc changes that modify fenced code blocks.
Related Issue
Check the branch name and commit messages for issue references. If an issue exists, use Fixes #NNN or Closes #NNN.
DCO Sign-Off
The PR body must include a DCO sign-off line. Determine the user's name and email from git config:
git config user.name
git config user.email
Step 5: Compose the PR Body
Use the exact template structure below. Fill in each section based on the diff (git diff main...HEAD). Check the applicable boxes and leave others unchecked. Do not add, remove, or reorganize sections.
## Summary
<!-- 1-3 sentences: what this PR does and why. -->
## Related Issue
<!-- Fixes #NNN or Closes #NNN. Remove this section if none. -->
## Changes
<!-- Bullet list of key changes. -->
## Type of Change
- [ ] Code change (feature, bug fix, or refactor)
- [ ] Code change with doc updates
- [ ] Doc only (prose changes, no code sample modifications)
- [ ] Doc only (includes code sample changes)
## Verification
<!-- Check each item you ran and confirmed. Leave unchecked items you skipped. Doc-only changes do not require npm test unless you ran it. -->
- [ ] `npx prek run --all-files` passes
- [ ] `npm test` passes
- [ ] Tests added or updated for new or changed behavior
- [ ] No secrets, API keys, or credentials committed
- [ ] Docs updated for user-facing behavior changes
- [ ] `make docs` builds without warnings (doc changes only)
- [ ] Doc pages follow the [style guide](https://github.com/NVIDIA/NemoClaw/blob/main/docs/CONTRIBUTING.md) (doc changes only)
- [ ] New doc pages include SPDX header and frontmatter (new pages only)
---
<!-- DCO sign-off required by CI. Run: git config user.name && git config user.email -->
Signed-off-by: {name} <{email}>
Populating the Template
Follow these rules when filling in the template:
- Summary: Write 1-3 sentences describing what the PR does and why. Derive this from the commit messages and diff, not from generic descriptions.
- Related Issue: Include
Fixes #NNNorCloses #NNNif an issue exists. Remove the section entirely if there is no related issue. - Changes: Bullet list of key changes. Be specific — reference file names, commands, or behaviors that changed.
- Type of Change: Check exactly one box. Use
[x]for checked,[ ]for unchecked. - Verification: Check only the boxes for steps you actually ran and confirmed passing. Do not check boxes for steps you skipped or did not verify. For doc-only changes,
npm testis not required; leave it unchecked unless you ran it. - DCO Sign-Off: Replace
{name}and{email}with values fromgit config user.nameandgit config user.email.
Step 6: Create the PR
Use gh pr create with the --assignee @me flag and a HEREDOC for the body to preserve formatting.
gh pr create \
--title "<type>(<scope>): <description>" \
--assignee "@me" \
--body "$(cat <<'EOF'
<full PR body from Step 5>
EOF
)"
Labels
Add labels when applicable:
--label "documentation" # for doc-only or doc-inclusive PRs
--label "topic:security" # for security-related changes
Draft PRs
For work-in-progress that is not ready for review:
gh pr create --draft --title "..." --assignee "@me" --body "..."
Step 7: Report the Result
After the PR is created, display the PR URL as a clickable markdown link:
Created PR [#NNN](https://github.com/NVIDIA/NemoClaw/pull/NNN)
Common Mistakes to Avoid
- Do not invent your own PR body format. Use the template from Step 5 exactly.
- Do not omit sections. Even if a section is not applicable, keep it with the "Skip if..." comment.
- Do not check boxes for steps you did not run. If you did not run
make docs, leave that box unchecked. - Do not run the full test suite for doc-only changes by default. Run docs and hook checks instead, and leave
npm testunchecked unless you actually ran it. - Do not forget the DCO sign-off. CI will reject the PR without it.
- Do not forget
--assignee @me. Every PR must be assigned to its creator. - Do not create PRs from main. Always use a feature branch.