mcpbeat Sign in

Nemo Relay Instrument Calls Agent Skill

Use this skill when an application owns tool or LLM/provider call sites and needs to wrap them with NeMo Relay scopes and managed execution APIs for lifecycle events, middleware, or guardrails.

5k tokens
context cost
the whole folder, loaded on every use
5
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-instrument-calls

What comes with it

17 634 bytes besides the instruction
BENCHMARK.md
evals/evals.json
skill-card.md
skill.oms.sig

The instruction itself

6 sections, as written by the author

Instrument Tool And LLM Calls

Use this skill when an app already has tool functions or model/provider calls and

needs to run them through NeMo Relay correctly.

Keep the original callable behavior stable while adding Relay lifecycle capture.

Default Guidance

  • Put a scope around the natural agent, request, workflow, or graph boundary.
  • Use managed execution APIs first:
  • Rust: tool_call_execute(ToolCallExecuteParams::builder()...),

llm_call_execute(LlmCallExecuteParams::builder()...)

  • Python: tools.execute(...), llm.execute(...)
  • Node.js: toolCallExecute(...), llmCallExecute(...)
  • Go: tools.Execute(...), llm.Execute(...) or the top-level wrappers
  • Use manual lifecycle APIs only when the host framework cannot be wrapped by the

managed execute helpers.

Embedded Runtime Semantics

  • Managed tool and LLM execution runs conditional-execution guardrails first on

the raw input. If rejected, the runtime emits a standalone mark event and does

not run request intercepts or the callable.

  • Request intercepts run after conditional guardrails and rewrite the real input

that reaches execution intercepts and the callback.

  • Sanitize-request guardrails affect emitted start-event payloads only. They do

not rewrite the caller-visible request or arguments.

  • Execution intercepts wrap the callback with the middleware next pattern and

may short-circuit by returning their own result.

  • Sanitize-response guardrails affect emitted end-event payloads only. The value

returned to application code remains the raw callback or execution-intercept

result.

  • If execution fails after the start event has been emitted, the runtime still

emits an end event without a semantic output payload.

  • Tool calls are named operations with JSON-compatible arguments and results.

Keep the original tool callable responsible for business logic; let NeMo Relay

own lifecycle events, middleware, and metadata.

  • LLM calls use an LLMRequest made of metadata plus content. Pass model names

and stable call identifiers when they matter for trace export or diagnostics.

  • Manual lifecycle APIs are for framework adapters that already own execution.

If you use them, every start call needs a matching end or error path with the

relevant semantic payloads supplied explicitly.

  • Partial middleware APIs such as request_intercepts(...) and

conditional_execution(...) are for advanced adapters that need one middleware

family before calling a provider manually.

  • Streaming LLM wrappers collect chunks and finalize a response at stream end;

dropping the stream early can prevent finalizers and subscribers from seeing a

complete output.

Checklist

  • [ ] Scope boundary chosen before the first tool or LLM call
  • [ ] Existing tool function wrapped without losing its original arguments/result
  • [ ] Existing LLM/provider call wrapped at the right abstraction layer
  • [ ] Optional metadata, attributes, or model name attached where useful
  • [ ] Context propagation handled if the call hops threads or async tasks

Use Another Skill When

Choose another skill when the task requires a neighboring workflow:

  • Use nemo-relay-plugin-observability for traces, ATIF, or export setup.
  • Use nemo-relay-debug-runtime-integration to debug missing events or load

failures.

  • Use nemo-relay-instrument-context-isolation for per-request isolation or

worker-pool guidance.

  • Use nemo-relay-plugin-build for reusable, configuration-activated runtime

behavior.

Use these skills for adjacent workflows:

  • Start onboarding with nemo-relay-get-started.
  • Add typed wrappers with nemo-relay-instrument-typed-wrappers.
  • Configure export with nemo-relay-plugin-observability.
  • Package reusable behavior with nemo-relay-plugin-build.

Other skills for the same job

different authors, same section of the catalogue
Hook Development
by anthropics
vendor ×2

This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.

16k tokens scripts
Hook Development
by anthropics
vendor ×2

This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.

16k tokens scripts
Copilot SDK
by christophacham
×2

Build agentic applications with GitHub Copilot SDK. Use when embedding AI agents in apps, creating custom tools, implementing streaming responses, managing sessions, connecting to MCP servers, or creating custom agents. Triggers on Copilot SDK, GitHub SDK, agentic app, embed Copilot, programmable agent, MCP server, custom agent.

6k tokens
Cass
by Dicklesworthstone
×2

Coding Agent Session Search - unified CLI/TUI to index and search local coding agent history from Claude Code, Codex, Gemini, Cursor, Aider, ChatGPT, Pi-Agent, Factory, and more. Purpose-built for AI agent consumption with robot mode.

6k tokens
Dcg
by Dicklesworthstone
×2

Destructive Command Guard - High-performance Rust hook for Claude Code that blocks dangerous commands before execution. SIMD-accelerated, modular pack system, whitelist-first architecture. Essential safety layer for agent workflows.

4k tokens
Makepad Skills
by ComeOnOliver
×2

Makepad UI development skills for Rust apps: setup, patterns, shaders, packaging, and troubleshooting.

2k tokens
Varlock Claude Skill
by ComeOnOliver
×2

Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits

3k tokens
Create Agentsmd
by github
vendor ×1

Prompt for generating an AGENTS.md file for a repository

2k tokens

How to use it

Copy the folder

Take nvidia/nemo-relay-instrument-calls 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.