Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

NVIDIA NeMo Fabric Claude Adapter

The nvidia.fabric.claude adapter uses the official Claude Agent SDK for Python behind Fabric's normalized invocation contract. The SDK is an implementation detail; consumers select the Claude harness by adapter ID.

This adapter pins claude-agent-sdk==0.2.120. The SDK supplies its compatible Claude Code runtime unless harness.settings.cli_path explicitly selects another executable.

Install

To install just the Claude adapter by itself:

pip install "nemo-fabric[claude]"

To install just the Claude adapter along with the NeMo Fabric Runtime:

pip install "nemo-fabric[claude, runtime]"

Authentication

Fabric preserves Claude's native credential resolution. Use an existing Claude Code login for local development, ANTHROPIC_AUTH_TOKEN for a gateway or proxy bearer credential, ANTHROPIC_API_KEY for a static API credential, or Anthropic Workload Identity Federation (WIF) for production and CI workloads that should not store a long-lived API key.

When models.default.provider is nvidia, the adapter reads the selected model's credential from api_key_env (default: NVIDIA_API_KEY) and translates the configured NVIDIA /v1 endpoint into the host URL expected by Claude Code. Set the endpoint in models.default.settings.base_url or NVIDIA_FRONTIER_BASE_URL; the adapter does not assume a default frontier endpoint. This request-scoped mapping does not change the parent environment.

The adapter forwards the Anthropic profile and federation environment variables that Claude Code and the Claude Agent SDK consume. This includes ANTHROPIC_CONFIG_DIR, ANTHROPIC_PROFILE, the direct federation identifiers, and ANTHROPIC_IDENTITY_TOKEN or ANTHROPIC_IDENTITY_TOKEN_FILE. Fabric reads selected environment values and forwards them to the Claude runtime, but it does not persist or log them in configuration or artifacts. Authentication is validated when the Claude runtime starts.

Unset unused ANTHROPIC_API_KEY and ANTHROPIC_AUTH_TOKEN variables before using WIF. Anthropic credential resolution treats an empty variable as selected, so an empty API credential prevents fallback to a federation profile.

Refer to the Claude adapter authentication guide for mode selection, required WIF variables, and the Relay boundary. Package installation is verified by the adapter wheel and module-entrypoint tests.

Relay-enabled runs also require the external nemo-relay CLI. Fabric accepts CLI versions >=0.6.0,<0.7.0. Install the CLI separately:

cargo install nemo-relay-cli

The Python nemo-relay package does not install this executable. Refer to the NeMo Relay installation guide for other supported installation methods.

Execution Model

The Claude adapter implements Fabric's persistent local-host wire protocol. Fabric.start_runtime(...) launches one adapter host, creates one ClaudeSDKClient, and connects it once. Every Runtime.invoke(...) reuses that client and its event loop; Runtime.stop() disconnects the client and exits the host. Fabric.run(...) uses the same lifecycle around one invocation.

One Fabric runtime maps to one live Claude session. The adapter records the terminal Claude session ID under the Fabric artifact root for correlation, but does not silently recreate a crashed host or replay an invocation. Start a new Fabric runtime when the host or SDK connection becomes unusable. Runtime hosting is adapter-declared; consumers do not configure a runtime strategy in FabricConfig or harness.settings.

Configuration

Configure portable capabilities through the normalized FabricConfig fields:

  • models selects the Claude model. The adapter accepts the native anthropic provider and NVIDIA-hosted Anthropic Messages-compatible models through the nvidia provider.
  • environment.workspace sets the Claude working directory.
  • tools.blocked maps to Claude disallowed_tools using Claude-native tool names.
  • mcp configures stdio, HTTP, streamable HTTP, or SSE servers. For stdio, Fabric parses url as a command plus arguments.
  • skills.paths names skill directories that contain SKILL.md. The adapter stages these directories as a local Claude plugin for the runtime.

Only Claude-specific controls belong in harness.settings:

  • system_prompt, allowed_tools, and permission_mode
  • max_turns, max_budget_usd, and timeout_seconds
  • setting_sources (defaults to [] for deterministic isolation)
  • cli_path for testing or an explicitly installed Claude Code executable
  • nemo_relay_command for an explicitly installed NeMo Relay CLI executable
  • env for variables explicitly forwarded to Claude Code

Putting model_name, cwd, tools, disallowed_tools, mcp_servers, or skills in harness.settings is an error. Use the corresponding normalized field so the same consumer configuration can compose with other adapters.

The adapter filters the inherited environment before launching Claude Code. It retains portable OS/config variables, the selected model's api_key_env, and explicitly configured settings.env values. Raw Claude stderr is consumed by the SDK and is not persisted as a Fabric artifact.

Relay Observability

Enable Relay through the normalized Fabric configuration:

config.enable_relay(
    project="fabric-review",
    output_dir="./artifacts/relay",
)

For each Relay-enabled Claude runtime, Fabric starts one nemo-relay gateway, waits for its health endpoint, and stops it with the runtime. Fabric passes the gateway URL to the connected Claude Code process through ANTHROPIC_BASE_URL and NEMO_RELAY_GATEWAY_URL. It also stages a runtime-scoped Claude plugin that forwards lifecycle hooks with nemo-relay hook-forward claude. Fabric.run(...) starts the same runtime, invokes it once, and stops it, so the gateway has the same lifecycle as that single invocation.

The Fabric result includes relay_runtime.gateway_config_path, relay_runtime.gateway_log_path, and the collected relay_artifacts. Relay startup failures return a stable adapter error and retain the gateway log for diagnosis. The default Claude Agent SDK dependency bundles a compatible Claude Code executable. An executable supplied with cli_path must support the Relay plugin's complete hook set, including UserPromptExpansion.

Typed Configuration

Build the agent configuration with the typed SDK models before invoking Fabric:

from pathlib import Path

from nemo_fabric import (
    EnvironmentConfig,
    Fabric,
    FabricConfig,
    HarnessConfig,
    McpConfig,
    McpServerConfig,
    MetadataConfig,
    ModelConfig,
    RuntimeConfig,
    SkillConfig,
    ToolsConfig,
)

base_dir = Path("/workspace/review-agent")
config = FabricConfig(
    metadata=MetadataConfig(name="claude-review-agent"),
    harness=HarnessConfig(
        adapter_id="nvidia.fabric.claude",
        resolution="preinstalled",
        settings={
            "system_prompt": "Review changes for correctness and regressions.",
            "permission_mode": "dontAsk",
            "max_turns": 8,
        },
    ),
    models={
        "default": ModelConfig(
            provider="anthropic",
            model="your-claude-model",
            api_key_env="ANTHROPIC_API_KEY",
        )
    },
    runtime=RuntimeConfig(artifacts="./artifacts"),
    environment=EnvironmentConfig(provider="local", workspace="."),
    tools=ToolsConfig(blocked=["WebFetch"]),
    mcp=McpConfig(
        servers={
            "repo": McpServerConfig(
                transport="stdio",
                url="repo-mcp --root .",
                exposure="harness_native",
            )
        }
    ),
    skills=SkillConfig(paths=["./skills/code-review"]),
)

fabric = Fabric()

Single Invocation

result = await fabric.run(
    config,
    base_dir=base_dir,
    input="Inspect the repository",
)

print(result.output["response"])
print(result.output["session_id"])

Multi-Turn Runtime

async with await fabric.start_runtime(config, base_dir=base_dir) as runtime:
    first = await runtime.invoke(input="Inspect the repository")
    second = await runtime.invoke(input="Now review the latest patch")

assert first.runtime_id == second.runtime_id
assert first.output["session_id"] == second.output["session_id"]

The runtime must remain on the same local host for its lifetime. A persisted Fabric-to-Claude correlation record is not an attach token and cannot recover a stopped or crashed local host.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nemo_fabric_adapters_claude-0.1.0a20260722.tar.gz (8.2 kB view details)

Uploaded Source

File details

Details for the file nemo_fabric_adapters_claude-0.1.0a20260722.tar.gz.

File metadata

File hashes

Hashes for nemo_fabric_adapters_claude-0.1.0a20260722.tar.gz
Algorithm Hash digest
SHA256 42f2c78974789fc4806d02a690e010cb0ac6bdb0b7664cf761ed106a9f574010
MD5 9cc59746131251bbe45d1ec910c32d9b
BLAKE2b-256 510bd1522676cab4636944ed082f941958f470276a409b622218ce7ac4d0fce6

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.0

1 file

0.1.1

1 file

0.1.0

1 file

This release

0.1.0a20260722 This release

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page