nvidia/nemo-relay-instrument-calls
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.
npx skills add https://github.com/NVIDIA/skills --skill nemo-relay-instrument-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.
tool_call_execute(ToolCallExecuteParams::builder()...),llm_call_execute(LlmCallExecuteParams::builder()...)
tools.execute(...), llm.execute(...)toolCallExecute(...), llmCallExecute(...)tools.Execute(...), llm.Execute(...) or the top-level wrappersmanaged execute helpers.
the raw input. If rejected, the runtime emits a standalone mark event and does
not run request intercepts or the callable.
that reaches execution intercepts and the callback.
not rewrite the caller-visible request or arguments.
next pattern andmay short-circuit by returning their own result.
returned to application code remains the raw callback or execution-intercept
result.
emits an end event without a semantic output payload.
Keep the original tool callable responsible for business logic; let NeMo Relay
own lifecycle events, middleware, and metadata.
LLMRequest made of metadata plus content. Pass model namesand stable call identifiers when they matter for trace export or diagnostics.
If you use them, every start call needs a matching end or error path with the
relevant semantic payloads supplied explicitly.
request_intercepts(...) andconditional_execution(...) are for advanced adapters that need one middleware
family before calling a provider manually.
dropping the stream early can prevent finalizers and subscribers from seeing a
complete output.
Choose another skill when the task requires a neighboring workflow:
nemo-relay-plugin-observability for traces, ATIF, or export setup.nemo-relay-debug-runtime-integration to debug missing events or loadfailures.
nemo-relay-instrument-context-isolation for per-request isolation orworker-pool guidance.
nemo-relay-plugin-build for reusable, configuration-activated runtimebehavior.
Use these skills for adjacent workflows:
nemo-relay-get-started.nemo-relay-instrument-typed-wrappers.nemo-relay-plugin-observability.nemo-relay-plugin-build.Take nvidia/nemo-relay-instrument-calls from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
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.