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.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.
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.
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.
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.
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.
Makepad UI development skills for Rust apps: setup, patterns, shaders, packaging, and troubleshooting.
Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits
Prompt for generating an AGENTS.md file for a repository
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.