Openclaw Provider Plugin

OpenClaw provider plugin for Dymo AI Gateway (OpenAI-compatible).

Install

openclaw plugins install clawhub:@dymo/openclaw-dymo

@dymo/openclaw-dymo

OpenClaw provider plugin for the Dymo AI Gateway — an OpenAI-compatible router that fans requests across BYOK keys (OpenAI, Anthropic, Google, Groq, Mistral, xAI, OpenRouter, Cerebras, …) with intent-based orchestration.

Install

clawhub package install @dymo/openclaw-dymo

Configure

export DYMO_API_KEY=dymo_pk_...
# optional — defaults to https://api.dymo.ai/v1/ai
export DYMO_BASE_URL=http://localhost:3050/v1/ai

Or via flag:

openclaw run --dymo-api-key dymo_pk_...

Default model

dymo/auto — gateway classifies the request and picks the cheapest model that matches the intent (chat / code / reasoning / vision) from the user's active BYOK keys.

Available orchestrator IDs

IDUse
dymo/autoAuto-classify and route
dymo/chatGeneral chat
dymo/codeCode generation / completion
dymo/reasoningLong-form reasoning, math, planning
dymo/visionMultimodal (text + image) inputs

Arbitrary <provider>/<model> refs (e.g. openai/gpt-4o-mini, anthropic/claude-sonnet-4-6) and custom/<alias> are passed through to the gateway unchanged via resolveDynamicModel.

API surface

The gateway speaks the OpenAI Chat Completions wire format:

  • POST {baseUrl}/chat/completions — streaming and non-streaming
  • GET {baseUrl}/models — user-scoped catalog

Test

npm test

Publish

clawhub package publish dymo/openclaw-dymo