NemoClaw: Skill for Codex

.agents/skills/nemoclaw-contributor-create-pr/SKILL.md

nemoclaw-contributor-create-pr is a skill for Codex from NVIDIA/NemoClaw. It costs 73 tokens per session (3,663 once invoked), scanned A, original, Apache-2.0.

A contribution workflow for creating a GitHub pull request in the NemoClaw project, then checking its automated tests and reviews.

In plain words
What is it for?
Use it when publishing a completed change from a branch for review, including checking the branch, commits, validation, and contributor sign-off.
Why use it?
It helps contributors verify that a feature branch is ready and that the proposed change passes the project's required checks before review.

Skill for Codex ✓ vendor

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is NVIDIA/NemoClaw's own configuration. It tells Codex how to work on NemoClaw itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything NemoClaw configures →

About the project

NVIDIA/NemoClaw is an open-source reference stack for running supported AI agents inside NVIDIA OpenShell sandboxes with managed inference, network policies, integrations, snapshots, and lifecycle controls. It is used to run agents such as OpenClaw, Hermes, and LangChain Deep Agents with administrative and security controls. Catalogue add-ons guide coding agents through NemoClaw workflows.

NVIDIA/NemoClaw · 22,418 stars · on GitHub · docs.nvidia.com

Reuse

Borrowing it

Nothing to install: this file belongs to NVIDIA/NemoClaw. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/NVIDIA/NemoClaw/main/.agents/skills/nemoclaw-contributor-create-pr/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/NVIDIA/NemoClaw

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nemoclaw-contributor-create-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/nvidia/nemoclaw/nemoclaw-contributor-create-pr/github.svg)](https://agentmods.dev/skills/nvidia/nemoclaw/nemoclaw-contributor-create-pr)
Your own site
<a href="https://agentmods.dev/skills/nvidia/nemoclaw/nemoclaw-contributor-create-pr"><img src="https://agentmods.dev/badge/skills/nvidia/nemoclaw/nemoclaw-contributor-create-pr/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nemoclaw-contributor-create-pr

Your own site · 80×15
<a href="https://agentmods.dev/skills/nvidia/nemoclaw/nemoclaw-contributor-create-pr"><img src="https://agentmods.dev/badge/skills/nvidia/nemoclaw/nemoclaw-contributor-create-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,663 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Snyk warn 7 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.03663
Opus 5 $0.00036 $0.01832
Sonnet 5 $0.00015 $0.00733
Haiku 4.5 $0.00007 $0.00366

Measured yesterday against content hash d65fb8d18743, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

nemoclaw-contributor-create-pr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/nemoclaw-contributor-create-pr/SKILL.md · 262 lines

How it starts

The opening of the file, as written. The whole thing — 262 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Create GitHub Pull Request

Publish one complete candidate from a feature branch based on the current canonical comparison ref. Treat each pushed commit as one candidate. Finish required CI and scheduled automated reviews before another push. Stop unless branch state, implementation-owned validation, DCO declaration, and GitHub commit verification are complete. For access errors, follow Git and GitHub Access Hard Stop.

Satisfy publication requirements

Branch state

Read the canonical base SHA from GitHub. Fetch the canonical branch into the comparison ref. Confirm that both sources resolve to the same SHA. Then confirm a feature branch, commits to publish, and a clean tree:

nemoclaw_trusted_base_sha="$(gh api --method GET repos/NVIDIA/NemoClaw/git/ref/heads/main --jq '.object.sha')"
test -n "$nemoclaw_trusted_base_sha"
git fetch --no-tags https://github.com/NVIDIA/NemoClaw.git +refs/heads/main:refs/remotes/origin/main
nemoclaw_fetched_base_sha="$(git rev-parse --verify refs/remotes/origin/main)"
test "$nemoclaw_fetched_base_sha" = "$nemoclaw_trusted_base_sha"
git branch --show-current
git log origin/main..HEAD --oneline
git status --short

Every command must succeed. The origin/main name is a local comparison ref; it does not prove remote identity. Do not replace the canonical API endpoint or fetch URL with a checkout remote. Stop if the sources differ. Do not validate against a stale ref. Do not publish from main or with uncommitted changes.

This fetch refreshes read-only comparison evidence. It does not authorize merging or rebasing main into the candidate. Follow Integrate the base branch before changing candidate history.

Validation

Normal pre-commit, commit-msg, and pre-push hooks provide early feedback, but a successful commit or push does not prove that they ran; hooks can be missing, stale, or redirected through core.hooksPath.

Read the full file on GitHub · 262 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · +100 lines d65fb8d18743
  2. 6d ago Changed · +32 lines 6efb0d7004e2
  3. 10d ago First seen · 130 lines · 73 tokens per session scan A fe09edae45d9

Subscribe to this mod's changes

nemoclaw-contributor-create-pr is a skill published in the GitHub repository NVIDIA/NemoClaw (22,418 stars, last pushed yesterday), licensed Apache-2.0. It adds 73 tokens to every session and 3,663 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

pentest-whitebox-code-review

Source code security audit using backward taint analysis, slot type classification, render context verification, and 3-phase parallel review producing an exploitation queue.

jd-opensource/JoySafeter · 36 tokens

triage-contributor-pr

Triage open pull requests from external contributors to prisma/prisma and produce a per-PR verdict with evidence. Use when a maintainer asks to triage, evaluate, assess, or review the queue of incoming contributor PRs, to decide whether a fork PR is safe to run CI on, to check whether a PR is in scope for its version…

prisma/orm · 131 tokens

review-implement-phase

Implements triaged review actions, commits focused fixes, and posts Done plus resolves threads. Use when the user wants only the implementation phase of the review-framework workflow.

prisma/orm · 38 tokens

update-pr

Update the pull request for the current session. Use when the user wants to push new changes to an existing PR.

microsoft/vscode · 26 tokens

remember

Review the current conversation and capture valuable knowledge — best practices, coding conventions, architecture decisions, workflows, and user feedback — into persistent memory (AGENTS.md) or reusable skills. Use when the user says: (1) remember this, (2) save what we learned, (3) update memory, (4) capture…

langchain-ai/deepagents · 71 tokens

code-review

Perform a structured code review of changes, checking for correctness, style, tests, and potential issues.

langchain-ai/deepagents · 23 tokens