nemo-relay-install

Installs NeMo Relay CLI, language packages, and framework integrations with verified setup checks.

3.2k|370|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/NVIDIA/skills --skill nemo-relay-install
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nemo-relay-install
Source: https://github.com/NVIDIA/skills/tree/main/skills/nemo-relay-install
Command: npx skills add https://github.com/NVIDIA/skills --skill nemo-relay-install

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve?

Installing NeMo Relay involves choosing between a CLI executable, Python/Node.js/Rust language packages, and maintained framework integrations, and picking the wrong path leads to broken setups or unnecessary runtime configuration. This Skill routes each request to the correct install path and stops after verified installation.

Core Features & Use Cases

  • Install Path Routing: Selects among CLI, language package (Python, Node.js, Rust), maintained integrations (LangChain, LangGraph, Deep Agents, OpenClaw, Hermes), or source checkout based on the user's stated outcome.
  • Package Manager Preservation: Inspects existing manifests and lockfiles (pyproject.toml, package.json, Cargo.toml) and uses the project's existing package manager rather than introducing a new one.
  • Codex Desktop Safety Gate: Warns about the provider-filtering bug that hides threads after persistent Codex installation, renders a recovery file, and requires confirmation before changing global configuration.
  • Use Case: A developer with a Poetry-managed Python app asks to add NeMo Relay; the Skill detects poetry.lock, recommends poetry add nemo-relay, verifies the import, and stops before any scopes or plugin configuration.

Quick Start

Ask your agent to install NeMo Relay for your specific target, such as "install the NeMo Relay CLI on macOS" or "add NeMo Relay to my Python project".

Frequently Asked Questions about nemo-relay-install

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I install the NeMo Relay CLI?

Download the versioned installer from the NeMo Relay GitHub Releases page, review it, then run it as a separate step, or use cargo install nemo-relay-cli on unsupported platforms. Verify the installation with nemo-relay --version.

How do I add NeMo Relay to a Python project?

Inspect pyproject.toml and lockfiles to identify the package manager, then use uv add, poetry add, or pdm add nemo-relay matching that manager. Verify by running python -c "import nemo_relay" in the target environment.

Should I use the CLI or a language package for NeMo Relay?

Use the CLI for trying Relay, coding-agent runs, or local gateway use. Use a Python, Node.js, or Rust package when your application directly owns its tool or model call sites, and use maintained integrations when you already use LangChain, LangGraph, Deep Agents, OpenClaw, or Hermes.

Why did my Codex Desktop threads disappear after installing NeMo Relay?

Persistent installation changes the active Codex provider, and an upstream provider-filtering bug hides threads from other providers after restart; the threads are not deleted. Fully quit Desktop, run nemo-relay uninstall codex, and restart to restore visibility.

When should I run nemo-relay doctor?

Run nemo-relay doctor when the CLI is installed and you hit config, gateway, agent-readiness, plugin, exporter, or model-pricing issues. Do not use it to verify Python, Node.js, or Rust package installs; use the language package manager or import checks instead.

Does the install skill configure plugins.toml or observability?

No. The skill stops after installation and basic availability checks. Runtime configuration, plugins.toml, scopes, and observability are handed off to follow-up skills such as nemo-relay-get-started or the matching plugin configuration skill.