mcpbeat Sign in

Nemo Relay Plugin Adaptive Tuning Agent Skill

Use this skill when baseline NeMo Relay instrumentation exists and the user wants to configure or evaluate adaptive plugin behavior, including telemetry, state, adaptive_hints, tool_parallelism, ACG, hint consumption, or measured rollout.

10k tokens
context cost
the whole folder, loaded on every use
7
files
instructions only
0
copies elsewhere
how many repositories repackaged it
102
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/NVIDIA/skills --skill nemo-relay-plugin-adaptive-tuning

What comes with it

36 130 bytes besides the instruction
BENCHMARK.md
evals/evals.json
references/config.md
references/hints.md
skill-card.md
skill.oms.sig

The instruction itself

10 sections, as written by the author

Tune Adaptive Plugin Behavior

Use This When

Use this skill when a user has baseline NeMo Relay instrumentation and wants to

improve latency, parallelism, prompt-cache behavior, or model-request behavior

from runtime signals.

Keep adaptive behavior measured against a known baseline.

Do Not Use This When

Do not use this skill when the application is not instrumented yet. Start with

nemo-relay-instrument-calls or nemo-relay-get-started first.

Default Guidance

  • Observe first, compare against a baseline, then enable one behavior change at

a time.

  • Use the adaptive plugin component rather than inventing separate tuning logic

or hand-registering adaptive behavior at every call site.

  • Start with in-memory state and telemetry-only behavior for local development.
  • Move to persistent state only when learned signals must survive restarts or be

shared across workers.

  • Add active behavior only after representative runtime events show what should

change.

Embedded Adaptive Model

  • Adaptive behavior is configured through the first-party plugin component with

kind adaptive.

  • Adaptive requires existing NeMo Relay scopes and at least one relevant

managed tool or LLM lifecycle event stream because it learns from runtime

signals.

  • Main configuration areas are state, telemetry, adaptive hints, tool

parallelism, Adaptive Cache Governor (ACG), and rollout policy.

  • State backends are in_memory and redis.
  • Tool-parallelism modes are observe_only, inject_hints, and schedule.
  • Adaptive Cache Governor providers are passthrough, anthropic, and

openai; omit ACG until prompt-cache planning is needed.

  • Helper APIs exist in Rust nemo_relay_adaptive, Python nemo_relay.adaptive,

and Node.js nemo-relay-node/adaptive. Go and raw FFI are

source-first or advanced surfaces.

Default Path

Use this rollout sequence:

  • Confirm the app emits scope events and the managed tool or LLM events needed

for the behavior being evaluated. Do not require both call types when the

workflow uses only one.

  • Capture a baseline for the workflow you want to improve.
  • Enable adaptive telemetry with in-memory state.
  • Read references/config.md when exact plugin configuration fields are needed.
  • Run representative traffic and inspect reports or runtime events.
  • If configuration validation fails or expected events are absent, return the

diagnostics and stop. Keep the last known working configuration active.

  • Before enabling scheduling, verify tool idempotency and race behavior. Before

enabling ACG, verify that provider request payloads are stable.

  • Enable the smallest behavior change in config.
  • Read references/hints.md when application logic consumes adaptive hints,

tool-parallelism guidance, or ACG diagnostics.

10. Compare results against the baseline. If latency, correctness, or failure

rate regresses, restore the last known working configuration and retain the

sanitized diagnostics for review.

Failure Modes To Avoid

  • Do not enable scheduling before tool idempotency and race behavior are known.
  • Do not enable prompt-cache planning before provider payloads are stable.
  • Do not treat adaptive hints as mandatory instructions unless the consuming

path explicitly defines that contract.

  • Do not use environment variables as the primary adaptive configuration model.
  • Do not tune from a single run or unrepresentative traffic.
  • Do not suppress or replace original tool and model errors.
  • Do not add retries until the call owner defines their safety.
  • Revert adaptive behavior when it increases the failure rate.

Load A Reference When

  • You need the exact adaptive config shape -> references/config.md
  • You need to consume adaptive hints or scheduling guidance in app logic ->

references/hints.md

Use Another Skill When

  • You need to build reusable plugin behavior instead of configuring the built-in

adaptive component -> nemo-relay-plugin-build

  • nemo-relay-get-started
  • nemo-relay-instrument-calls
  • nemo-relay-plugin-observability
  • nemo-relay-plugin-build

Other skills for the same job

different authors, same section of the catalogue
Skill Creator
by anthropics
vendor ×10

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

56k tokens scripts
Skill Creator
by vercel-labs
vendor ×10

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

12k tokens scripts
Skill Creator
by JayZeeDesign
×9

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

10k tokens scripts
Template Skill
by JayZeeDesign
×7

Replace with description of the skill and when Claude should use it.

35 tokens
Dispatching Parallel Agents
by ZhanlinCui
×5

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

2k tokens
Skill Development
by anthropics
vendor ×4

This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.

9k tokens
Find Skills
by sanity-io
vendor ×4

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

1k tokens
Writing Skills
by ZhanlinCui
×4

Use when creating new skills, editing existing skills, or verifying skills work before deployment

26k tokens scripts

How to use it

Copy the folder

Take nvidia/nemo-relay-plugin-adaptive-tuning from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.