Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
dynamo logo

dynamo

davilu-nvidia/openclaw-dynamo-provider

Otheropenclawby davilu-nvidia

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add davilu-nvidia/openclaw-dynamo-provider

Run in Claude Code. Add the marketplace first with /plugin marketplace add davilu-nvidia/openclaw-dynamo-provider if you haven't already.

README.md

openclaw-dynamo-provider

An OpenClaw plugin that registers a dynamo provider backed by Dynamo's OpenAI-compatible endpoint, so OpenClaw can use Dynamo as a normal model:

openclaw --model dynamo/<model-id>

With one switch (DYN_AGENT_TRACE=1) it also tags every request for Dynamo's agent trace, gives each subagent its own isolated KV session, and relays tool events into the trace — all without patching OpenClaw core.

What it does

  • Model provider — registers dynamo, discovers models from /v1/models, and streams via OpenClaw's OpenAI-compatible path.
  • Agent context — injects nvext.agent_context (session/trajectory identity) so Dynamo can attribute each LLM request in its trace.
  • Subagent KV isolation — gives each OpenClaw subagent child its own Dynamo streaming session: opened on its first turn, pinned across turns, and freed deterministically when the agent ends.
  • Tool-event relay — pushes tool start/end events to Dynamo over ZMQ so one trace shows LLM spans and tool spans together.

Everything but the bare model provider is gated by the DYN_AGENT_TRACE master switch and is off by default.

Install

# From npm (when published)
# Add to openclaw config: "plugin": ["@nvidia/openclaw-dynamo-provider"]

# From a local checkout
cd openclaw-dynamo-provider && npm install && npm run build
# Then add to your openclaw.json:
# "plugin": ["./path/to/openclaw-dynamo-provider"]

Quick start

export DYNAMO_BASE_URL=http://127.0.0.1:8000/v1
export DYNAMO_API_KEY=dummy
export DYN_AGENT_TRACE=1

openclaw --model dynamo/<model-id> -p "Reply exactly ok."

Configuration

| Variable | Default | Purpose | | --- | --- | --- | | DYNAMO_BASE_URL | http://127.0.0.1:8000/v1 | Dynamo endpoint root (falls back to OPENAI_BASE_URL). | | DYNAMO_API_KEY | dynamo-local | Bearer token. | | DYN_AGENT_TRACE | off | Master switch for agent_context, session_control, and tool relay. | | DYN_AGENT_SESSION_TYPE_ID | openclaw_coding_agent | Session class in the trace. | | DYN_AGENT_SESSION_ID | OpenClaw session id | Top-level run id. | | DYN_AGENT_TRAJECTORY_ID | OpenClaw session id | Trajectory id. | | DYN_AGENT_PARENT_TRAJECTORY_ID | unset | Parent trajectory for linking. | | DYN_AGENT_SESSION_TIMEOUT | Dynamo default (300s) | Idle timeout for subagent sessions. | | DYN_AGENT_TOOL_EVENTS_ZMQ_ENDPOINT | unset | ZMQ PULL endpoint for tool relay. |

Subagent KV isolation

When DYN_AGENT_TRACE=1 and this process is a subagent child (detected via OPENCLAW_AGENT_ or PI_SUBAGENT_ env vars), the provider drives session lifecycle:

1. First turnsession_control: {action: "open"} — worker holds KV in a dedicated slot 2. Later turns — bare session_id — sticky routing, O(1) KV restore 3. agent_end — close request frees the KV deterministically

The lead agent is never pinned — only subagents get a session.

Requires Dynamo frontend in --router-mode kv and an SGLang worker with --enable-streaming-session.

Architecture: zero code invasiveness

This plugin uses OpenClaw's standard plugin SDK:

| Feature | OpenClaw API used | | --- | --- | | Model provider | api.registerProvider() | | Request body injection | wrapStreamFn hook | | Request headers | resolveTransportTurnState hook | | Session close on agent end | api.on("agent_end") | | Session close on shutdown | api.on("session_end") | | Tool event relay | api.on("tool_execution_start/end") |

No OpenClaw core changes required.

Development

npm install
npm run check   # tsc --noEmit
npm run test    # vitest
npm run build   # -> dist/

Scope

No OpenClaw core changes, no native Rust ABI. The nvext and agent_trace.v1 schemas are owned upstream by Dynamo.

Related plugins

Browse all →