Coding Agent Installation
Install a persistent integration when you want Claude Code or Codex to load
NeMo Relay without a nemo-relay wrapper command. Both use their normal plugin
systems.
Each persistent integration forwards the lifecycle signals that its host exposes, including agent, subagent, tool, prompt, compaction, and stop events where available. Model-provider routing sends LLM traffic through the local NeMo Relay gateway. Hooks alone cannot capture complete LLM request and response spans.
Both integrations share the same lifecycle gateway. Provider traffic joins that gateway when routing is configured for the host:
Each agent starts its own lightweight MCP stdio process. Those processes share
one compatible gateway. Generated lifecycle hooks use hook-forward to deliver
their canonical payloads to that same gateway.
Requirements
Install nemo-relay and ensure that it is available on PATH or %PATH%.
The installer does not download a second Relay binary, install a daemon, or
require an integration-local executable.
The selected coding-agent CLI must also be available at a supported version:
- Claude Code 2.1.121 or newer through
claude. codex-cli0.143.0 or newer throughcodex.
Relay checks the selected CLI version before modifying agent configuration. Prerelease, malformed, and older versions are rejected consistently by install, doctor, and transparent launch paths.
Install a Persistent Integration
Run the command for the coding-agent integration that you want to install:
Install every supported host detected on the machine:
install all selects only supported agents whose CLI is present. It fails if
Claude Code and Codex are both absent.
Use --dry-run to preview the operation without changing host configuration.
For Claude Code and Codex, the preview includes marketplace paths and host
commands:
For Claude Code and Codex, use --install-dir when you need a non-default
marketplace location. The default plugin directory is platform-specific:
Relay serializes install, force-install, rollback, and uninstall operations for each user and host, even when two operations name different install directories. If another operation is still active after a short wait, Relay stops with a timeout instead of changing host-wide plugin state concurrently.
What Install Changes
For Claude Code and Codex, nemo-relay install writes a local marketplace named
nemo-relay-local, then registers the generated nemo-relay-plugin package
with the selected host.
For Claude Code, nemo-relay install claude-code registers the local
marketplace, installs nemo-relay-plugin@nemo-relay-local at user scope, and
enables provider routing through the local NeMo Relay sidecar. Relay preserves
existing Claude authentication and model settings and backs them up only when
it adds the provider route. The plugin also declares the native
nemo-relay mcp lifecycle client.
For Codex, nemo-relay install codex registers the local marketplace, installs
nemo-relay-plugin@nemo-relay-local, enables Codex hooks, and configures the
nemo-relay-openai provider alias at http://127.0.0.1:47632/v1. The plugin’s
hooks/hooks.json is the sole persistent Relay hook source. The installer uses
the Codex app-server API to select hooks by plugin ID, exact canonical command,
and event definition. It never trusts unrelated user, project, or plugin hooks.
If Codex does not discover exactly one enabled and trusted handler for every
generated event—SessionStart, UserPromptSubmit, PreToolUse, PostToolUse,
PermissionRequest, SubagentStart, SubagentStop, Stop, PreCompact, and
PostCompact—installation restores the previous Codex config, legacy hooks,
Relay backup files, and every original targeted trust entry. These 10 events are
the complete supported Codex 0.143 plugin hook schema; Relay does not generate
undiscoverable PostToolUseFailure, Notification, or SessionEnd handlers.
Upgrade removes legacy Relay groups from
~/.codex/hooks.json while preserving unrelated hooks.
On Windows, generated hooks use the built-in Windows PowerShell encoded-command
format. This avoids quoting and metacharacter differences between the Codex and
Claude Code command runners. The encoded payload contains only the
canonical nemo-relay.exe path and hook-forward arguments. PowerShell starts
that Rust binary directly and preserves its standard input, standard output,
standard error, and exit code. The MCP client and gateway remain Rust-native,
and both install and doctor verify the generated command and event ownership.
Start a new Codex CLI process after installation. Restart the Codex desktop app if it was already running so it reloads the provider and hook configuration.
Shared Gateway Lifecycle
Claude Code and Codex processes use the same
nemo-relay mcp lifecycle client. Before reading MCP protocol frames, it starts
or reuses a detached native sidecar on 127.0.0.1:47632. The client verifies
Relay identity, version, protocol readiness, and effective user-level
configuration, then heartbeats the sidecar every 3 seconds by default. Relay
shortens the default automatically when necessary to keep it below the gateway
idle timeout. Set NEMO_RELAY_PLUGIN_HEARTBEAT_INTERVAL_SECS to a positive
integer shorter than the idle timeout to override it. Concurrent
processes from any host share the gateway. After the final MCP client closes,
the sidecar exits after 300 idle seconds by default. If the gateway exits while
MCP stdio is open, the client performs one coordinated restart and fails if
recovery does not succeed. Relay reports a port conflict for a foreign process
instead of accepting it merely because it returned HTTP 200.
Health and readiness responses include a per-process instance ID. A per-user startup lock serializes launch and recovery, while a small recovery record lets overlapping MCP clients share the same restart attempt. The gateway tracks its own activity, idle shutdown, and authenticated ownership-record cleanup.
When a newly launched MCP client detects a verified Relay-owned gateway from a different Relay version, it stops that old sidecar and starts a matching one. This intentionally interrupts MCP clients still attached to the old gateway. Configuration-only compatibility mismatches remain errors and are not replaced automatically.
Codex marks the MCP server as required, so the captured turn waits for verified
gateway readiness. Claude Code 2.1.121 or newer uses alwaysLoad, which blocks
session startup until the MCP connection is ready. Installed MCP entries and
hook-forward commands carry both the generation-file
path and the immutable identity expected at that path. This prevents a host
process with cached plugin configuration from adopting a replacement
installation after --force. Persistent hooks wait for the MCP-owned gateway,
verify it on the same connection used for delivery, and send the canonical
payload once. They never start or recover the gateway, and Relay does not retry
after payload transmission begins. The MCP server advertises no tools in any
host.
Refresh Installed Integrations
After upgrading the nemo-relay binary, refresh every Relay-managed Codex and
Claude Code installation with:
Refresh retires each old MCP generation, stops the authenticated Relay-owned sidecar, and republishes the integration from the current binary. Restart the affected host clients afterward. To bring a legacy custom-directory installation under Relay management, reinstall the appropriate host before refreshing it:
Manual MCP configurations are not changed; reinstall them through Relay if you want Relay to manage future refreshes.
To explicitly stop the managed shared gateway, first close active MCP clients, then run:
The command resolves the process listening at that exact loopback address,
verifies that its executable is named nemo-relay, and stops it. It can only
stop a gateway running on the local machine; remote gateway processes are not
supported. An open MCP client can restart the managed gateway as part of its
one allowed recovery.
nemo-relay gateway start starts the gateway with the same server
configuration as a bare daemon invocation. nemo-relay gateway stop stops that
gateway at the default daemon endpoint, 127.0.0.1:4040. Pass the same --bind
value to both commands for a custom endpoint. On Unix, add --force to terminate
the process immediately instead of requesting a graceful shutdown. Windows
always terminates the gateway process tree.
Hook Delivery and Upgrade Safety
Before contacting the gateway, Relay rejects a fixed-endpoint hook-forward
command that lacks a valid installer-owned generation fence. It uses the
configured hook failure policy. This prevents a legacy hook retained by a host
process from reviving a retired installation. If install or uninstall reports a
missing or invalid generation marker, follow its cleanup instructions: close
the host and standalone nemo-relay mcp processes, remove the stale
registration and state it identifies, and then run the requested --force
command.
Transparent hooks embed their process-private gateway URL and never recover a
persistent gateway, so they do not need this fence. Source plugins and custom
automation can use --forward-only to contact an existing gateway without a
fence. That mode waits for an authenticated, configuration-compatible Relay
gateway and rejects foreign or incompatible listeners before it sends the
payload. Authentication and delivery use the same TCP connection, so a process
that replaces the listener after a health probe cannot receive lifecycle data.
The mode never launches or recovers Relay.
Relay cannot guarantee exactly-once delivery if the gateway fails after it accepts a request. It does not keep a durable hook outbox or deduplication journal. The opt-in end-to-end tests verify exactly-once lifecycle output for the healthy and cold-start paths they exercise, not for arbitrary crashes between request acceptance and response delivery.
On Windows, Relay requests Job Object breakaway when the host job permits it. When breakaway is unavailable and the host permits nested assignment, the gateway remains scoped to the host job and can exit before the normal idle reuse window. If the host rejects nested assignment, persistent bootstrap stops and explains the conflict instead of running without process-tree cleanup guarantees.
The compatibility fingerprint covers resolved provider, exporter, dynamic
plugin, and relevant environment settings without exposing their values in the
health response. For Claude Code and Codex,
nemo-relay install <host> --force rotates the immutable MCP and hook generation
identity, then uses a private ownership token to stop the shared fixed-endpoint
gateway as one serialized operation. Ownership is keyed by endpoint rather than
host, so an upgrade from any installed host can retire a gateway that another
host originally started.
Relay leaves custom managed endpoints untouched and never sends its shutdown token to an unrelated listener.
Configuration and Credentials
Persistent mode resolves only system and user Relay configuration and starts in
the user configuration directory. Project .nemo-relay layers remain available
through transparent nemo-relay run invocations. Each host passes environment
settings to MCP differently:
- Codex stores variable names—not values—for provider credentials, Relay runtime, OpenTelemetry, AWS, proxies, certificates, approved prefixes, and credential variables referenced by user observability configuration.
- Claude Code supplies its normal plugin MCP environment.
The long-lived managed sidecar injects a forwarded provider credential only when
a request carries provider authorization or Relay’s private per-user client
proof. The Codex installer writes a domain-separated HMAC proof into the
managed provider’s http_headers; Relay stores the resulting Codex config with
an owner-only mode on Unix or protected owner/System DACL on Windows before the
temporary file becomes visible. Relay validates and removes that header before
middleware, observability, or upstream forwarding. The underlying HMAC key
remains in Relay’s owner-only bootstrap state. Claude Code sends its normal
provider authorization. A foreign loopback caller cannot spend
the sidecar’s forwarded credentials. Foreground nemo-relay --bind use retains
environment-key injection for explicit local proxy workflows.
Diagnose
Run the command for the installed integration that you want to diagnose:
nemo-relay doctor includes every persistent integration it finds. It checks
generated marketplace and plugin files where applicable, the Relay binary and
hook support, agent version, registration, provider routing, hooks, and sidecar
readiness assumptions. For Codex, doctor also asks the Codex app-server whether
each exact Relay-generated hook is trusted and enabled. JSON output includes
checks.codex_hooks_trusted and a
codex_hook_trust object that groups trusted, untrusted, modified, disabled,
missing, or duplicated required hooks. A stopped Codex sidecar is informational;
the required plugin MCP starts it before the captured turn. Doctor also reports
newly required forwarded environment names and recommends
nemo-relay install codex --force.
For Claude Code, doctor also validates version 2.1.121 or newer, the generated
alwaysLoad MCP server, and its generation marker. A stopped sidecar remains
informational because the next MCP process starts it. Persistent hooks wait for
that MCP-owned gateway instead of starting it themselves.
Use the focused plugin doctor when diagnosing one host or an installation that uses a custom directory:
If an installed integration is incomplete, doctor reports the failed check and
suggests nemo-relay install <host> --force. Agents without a persistent
installation remain informational, so transparent-run setup does not require
one.
Uninstall
Run the command for the installed integration that you want to remove:
Uninstall removes Codex provider configuration and trust for the exact plugin hooks before unregistering the plugin, while Codex can still report its hook metadata. It then removes the host registration and marketplace. Claude Code provider routing is restored from the Relay backup. Unrelated user hooks and configuration remain unchanged.
Compatibility and Migration
These integrations require Codex 0.143.0 or Claude Code 2.1.121 at minimum.
Relay rejects prerelease or malformed version output.
If you configured an opaque wrapper, its --version output must identify the
selected host.
The MCP bootstrap is host-neutral. Generated Codex and Claude Code
configuration invokes nemo-relay mcp; Hermes-specific --agent hermes
selections no longer parse. The --agent option remains supported for Claude
Code and Codex run flows. Existing fenced installations can be refreshed with
nemo-relay install <host> --force. Relay refuses to replace an older MCP
installation without a valid generation marker because a cached host process
might still be running. In that case, follow the manual cleanup steps in the
error before you retry the forced install.
This release removes the internal nemo-relay plugin-shim command. Refresh a
fenced generated installation with nemo-relay install <host> --force; use the
manual cleanup described above when its generation marker is missing. For
custom automation, use these supported replacements:
Persistent generated hook commands include the fixed gateway URL. Transparent
wrapper hooks embed their dynamic gateway URL, while the process environment
lets an installed plugin MCP authenticate, borrow, and monitor that exact
gateway. Transparent hook delivery authenticates the wrapper gateway before
writing its lifecycle payload. When a transparent run uses a recognizable
wrapper command, such as npx codex, Relay checks the host version through that
wrapper. Opaque custom wrappers remain supported when the configured command
emits the selected host’s canonical version output in response to --version.
Install and doctor enforce the same minimum-version policy.
Source Marketplace Discovery
This repository also contains source marketplace manifests for development and validation:
.claude-plugin/marketplace.json.agents/plugins/marketplace.json
Those manifests are useful when validating host plugin metadata from a source
checkout. For end-user setup, use nemo-relay install <host>. For Claude Code
and Codex, the command generates the local marketplace, registers the host
plugin, and performs the required provider and hook setup. Source manifests do
not provide Codex’s complete provider, environment-forwarding, and
verified-trust workflow.
Do not keep a source-installed plugin and the generated plugin active for the same host. Both can forward the same lifecycle payload and produce duplicate events. Remove the source-installed plugin before you use the generated install.