nemoclaw-contributor-create-pr

Creates GitHub pull requests with the NemoClaw template and monitors CI and automated reviews.

Updated Aug 1, 2026
One-click install
npx skills add https://github.com/Army161/NemoClaw --skill nemoclaw-contributor-create-pr-army161
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nemoclaw-contributor-create-pr
Source: https://github.com/Army161/NemoClaw/tree/main/.agents/skills/nemoclaw-contributor-create-pr
Command: npx skills add https://github.com/Army161/NemoClaw --skill nemoclaw-contributor-create-pr-army161

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Contributors to the NemoClaw repository must follow strict PR requirements—Conventional Commits titles, DCO sign-off, verified commits, template sections, and evidence-based checkboxes—which are easy to get wrong manually. This Skill automates the entire PR creation workflow so every submission meets project standards. ## Core Features & Use Cases - Guided PR Creation: Verifies branch state, runs pre-PR checks, fills the official PR template from the base branch, and creates the PR with the gh CLI. - Compliance Gates: Enforces DCO Signed-off-by declarations and confirms every commit shows as verified on GitHub before opening the PR. - CI and Review Monitoring: Follows up on CI results and automated review feedback after the PR is created, then reports status. - Use Case: A contributor finishes a bug fix on a feature branch and asks the agent to open a PR. The Skill runs targeted tests, composes the template body with evidence, creates the PR with gh pr create, and reports CI status. ## Quick Start Ask the agent to create a pull request for your current feature branch and monitor its CI and review status.

Frequently Asked Questions about nemoclaw-contributor-create-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a GitHub pull request with the gh CLI?

Authenticate with gh auth status, push your feature branch, then run gh pr create with a title, body file, and --assignee @me. This Skill automates those steps while filling the NemoClaw PR template from the base branch.

How do I add a DCO sign-off to a pull request?

Add a Signed-off-by line with your name and email from git config user.name and git config user.email to the PR body. The Skill requires this declaration before running gh pr create and stops if it is missing.

Can I create a pull request from the main branch?

No. The Skill requires a feature branch with commits ahead of origin/main and a clean working tree. Creating a PR directly from main is explicitly prohibited by the workflow.

Why does PR creation stop before running gh pr create?

Creation stops if the DCO declaration is missing or any commit in origin/main..HEAD is not verified on GitHub. The Skill checks each commit's verification status via the GitHub API and requires fixes before proceeding.

What checks run before opening a NemoClaw pull request?

The Skill uses Git hook evidence from pre-commit, commit-msg, and pre-push when available, or falls back to npm run validate:pr. It also runs targeted vitest projects matching the changed files and npm run docs for doc-only changes.