NemoClaw: Skill for Claude Code

.agents/skills/nemoclaw-maintainer-analyze-ci-performance/SKILL.md

nemoclaw-maintainer-analyze-ci-performance is a skill for Claude Code, Codex from NVIDIA/NemoClaw. It costs 56 tokens per session (624 once invoked), scanned A, original, Apache-2.0.

A read-only analyzer for NemoClaw’s continuous integration (CI) timing data. CI automatically builds and tests code, and the analyzer examines retained GitHub Actions results and publication timings.

In plain words
What is it for?
Use it to rank slow CLI tests, compare base-image publication runs, and investigate runner queue or publication-gate delays.
Why use it?
It shows where automated tests or image publishing spend time without changing the repository or CI system.

Skill for Claude CodeCodex ✓ vendor

Written for Claude Code and Codex: user-invocable in frontmatter, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is NVIDIA/NemoClaw's own configuration. It tells Claude Code and 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,442 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-maintainer-analyze-ci-performance/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/NVIDIA/NemoClaw

Made for: Claude Code, 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-maintainer-analyze-ci-performance

README.md
[![agentmods](https://agentmods.dev/badge/skills/nvidia/nemoclaw/nemoclaw-maintainer-analyze-ci-performance/github.svg)](https://agentmods.dev/skills/nvidia/nemoclaw/nemoclaw-maintainer-analyze-ci-performance)
Your own site
<a href="https://agentmods.dev/skills/nvidia/nemoclaw/nemoclaw-maintainer-analyze-ci-performance"><img src="https://agentmods.dev/badge/skills/nvidia/nemoclaw/nemoclaw-maintainer-analyze-ci-performance/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-maintainer-analyze-ci-performance

Your own site · 80×15
<a href="https://agentmods.dev/skills/nvidia/nemoclaw/nemoclaw-maintainer-analyze-ci-performance"><img src="https://agentmods.dev/badge/skills/nvidia/nemoclaw/nemoclaw-maintainer-analyze-ci-performance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 624 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 pass 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.00056 $0.00624
Opus 5 $0.00028 $0.00312
Sonnet 5 $0.00011 $0.00125
Haiku 4.5 $0.00006 $0.00062

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

Security

Grade A, and why

nemoclaw-maintainer-analyze-ci-performance 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-maintainer-analyze-ci-performance/SKILL.md · 45 lines

How it starts

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

Analyze CI Performance

Run one read-only standalone analyzer from a NemoClaw checkout. Both commands use authenticated gh reads and print bounded JSON to stdout. They perform no GitHub writes.

Analyze recent CLI timings

Use retained cli-vitest-results artifacts to rank consistently slow tests and files. The CI workflow retains this historical input for 14 days:

node --no-warnings \
  .agents/skills/nemoclaw-maintainer-analyze-ci-performance/scripts/analyze-recent-cli-timings.mts \
  --workdir "$PWD"

Defaults preserve the former timing tool contract: repository NVIDIA/NemoClaw, 10 reports, 15 results, a 0.7 minimum sample ratio, and artifact name cli-vitest-results. Optional flags are --repo, --limit, --top, --min-sample-ratio, and --artifact-name.

The analyzer requires at least two usable retained reports. It rejects compressed artifacts above 25,000,000 bytes and bounds ZIP entries, expanded content, listings, and report content. It requires Bash, GNU dd and find, Info-ZIP zipinfo and unzip, awk, base64, mktemp, stat, and wc on Linux.

Analyze base-image publication

Compare main-push E2E runs that publish a same-commit base image with runs that reuse a prior publication:

node --no-warnings \
  .agents/skills/nemoclaw-maintainer-analyze-ci-performance/scripts/analyze-base-image-publication-timings.mts \
  --workdir "$PWD"

Defaults preserve the former timing tool contract: repository NVIDIA/NemoClaw, 300 E2E runs, 500 base-image runs, and up to 150 systematic samples per stratum. Optional flags are --repo, --e2e-limit, --base-limit, and --max-per-stratum.

Report the population window and stratum sizes before statistics. Treat atLeast30SuccessfulJobs: false as insufficient evidence for stable inference. Job execution, verifier, workflow completion, runner queue, and matrix-boundary measurements use successful publication jobs only.

Read the full file on GitHub · 45 lines

Files

What ships with it

5 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 43544a97d62a
  2. 8d ago First seen · 45 lines · 56 tokens per session scan A 7af099adc733

Subscribe to this mod's changes

nemoclaw-maintainer-analyze-ci-performance is a skill published in the GitHub repository NVIDIA/NemoClaw (22,442 stars, last pushed today), licensed Apache-2.0. It adds 56 tokens to every session and 624 once invoked, about $0.0003 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-09-03.