Building provider plugins
This guide walks through building a provider plugin that adds a model provider (LLM) to OpenClaw. By the end you will have a provider with a model catalog, API key auth, and dynamic model resolution.
Walkthrough
Section titled “Walkthrough”Package and manifest
Step 1: Package and manifest
Section titled “Step 1: Package and manifest”{"name": "@myorg/openclaw-acme-ai","version": "1.0.0","type": "module","openclaw": {"extensions": ["./index.ts"],"providers": ["acme-ai"],"compat": {"pluginApi": ">=2026.3.24-beta.2","minGatewayVersion": "2026.3.24-beta.2"},"build": {"openclawVersion": "2026.3.24-beta.2","pluginSdkVersion": "2026.3.24-beta.2"}}}{"id": "acme-ai","name": "Acme AI","description": "Acme AI model provider","providers": ["acme-ai"],"modelSupport": {"modelPrefixes": ["acme-"]},"providerAuthEnvVars": {"acme-ai": ["ACME_AI_API_KEY"]},"providerAuthAliases": {"acme-ai-coding": "acme-ai"},"providerAuthChoices": [{"provider": "acme-ai","method": "api-key","choiceId": "acme-ai-api-key","choiceLabel": "Acme AI API key","groupId": "acme-ai","groupLabel": "Acme AI","cliFlag": "--acme-ai-api-key","cliOption": "--acme-ai-api-key”, “cliDescription”: “Acme AI API key” } ], “configSchema”: { “type”: “object”, “additionalProperties”: false } } ```
The manifest declares
providerAuthEnvVarsso OpenClaw can detect credentials without loading your plugin runtime. AddproviderAuthAliaseswhen a provider variant should reuse another provider id’s auth.modelSupportis optional and lets OpenClaw auto-load your provider plugin from shorthand model ids likeacme-largebefore runtime hooks exist. If you publish the provider on ClawHub, thoseopenclaw.compatandopenclaw.buildfields are required inpackage.json.Register the provider
A minimal text provider needs an
id,label,auth, andcatalog.catalogis the provider-owned runtime/config hook; it can call live vendor APIs and returnsmodels.providersentries.import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";import { createProviderApiKeyAuthMethod } from "openclaw/plugin-sdk/provider-auth";export default definePluginEntry({id: "acme-ai",name: "Acme AI",description: "Acme AI model provider",register(api) {api.registerProvider({id: "acme-ai",label: "Acme AI",docsPath: "/providers/acme-ai",envVars: ["ACME_AI_API_KEY"],auth: [createProviderApiKeyAuthMethod({providerId: "acme-ai",methodId: "api-key",label: "Acme AI API key",hint: "API key from your Acme AI dashboard",optionKey: "acmeAiApiKey",flagName: "--acme-ai-api-key",envVar: "ACME_AI_API_KEY",promptMessage: "Enter your Acme AI API key",defaultModel: "acme-ai/acme-large",}),],catalog: {order: "simple",run: async (ctx) => {const apiKey =ctx.resolveProviderApiKey("acme-ai").apiKey;if (!apiKey) return null;return {provider: {baseUrl: "https://api.acme-ai.com/v1",apiKey,api: "openai-completions",models: [{id: "acme-large",name: "Acme Large",reasoning: true,input: ["text", "image"],cost: { input: 3, output: 15, cacheRead: 0.3, cacheWrite: 3.75 },contextWindow: 200000,maxTokens: 32768,},{id: "acme-small",name: "Acme Small",reasoning: false,input: ["text"],cost: { input: 1, output: 5, cacheRead: 0.1, cacheWrite: 1.25 },contextWindow: 128000,maxTokens: 8192,},],},};},},});api.registerModelCatalogProvider({provider: "acme-ai",kinds: ["text"],liveCatalog: async (ctx) => {const apiKey = ctx.resolveProviderApiKey("acme-ai").apiKey;if (!apiKey) return null;return [{kind: "text",provider: "acme-ai",model: "acme-large",label: "Acme Large",source: "live",},];},});},});registerModelCatalogProvideris the newer control-plane catalog surface for list/help/picker UI. Use it for text, image-generation, video-generation, and music-generation rows. Keep vendor endpoint calls and response mapping in the plugin; OpenClaw owns the shared row shape, source labels, and help rendering.That is a working provider. Users can now `openclaw onboard —acme-ai-api-key
and selectacme-ai/acme-large` as their model.If the upstream provider uses different control tokens than OpenClaw, add asmall bidirectional text transform instead of replacing the stream path:```typescriptapi.registerTextTransforms({input: [{ from: /red basket/g, to: "blue basket" },{ from: /paper ticket/g, to: "digital ticket" },{ from: /left shelf/g, to: "right shelf" },],output: [{ from: /blue basket/g, to: "red basket" },{ from: /digital ticket/g, to: "paper ticket" },{ from: /right shelf/g, to: "left shelf" },],});````input` rewrites the final system prompt and text message content beforetransport. `output` rewrites assistant text deltas and final text beforeOpenClaw parses its own control markers or channel delivery.For bundled providers that only register one text provider with API-keyauth plus a single catalog-backed runtime, prefer the narrower`defineSingleProviderPluginEntry(...)` helper:```typescriptimport { defineSingleProviderPluginEntry } from "openclaw/plugin-sdk/provider-entry";export default defineSingleProviderPluginEntry({id: "acme-ai",name: "Acme AI",description: "Acme AI model provider",provider: {label: "Acme AI",docsPath: "/providers/acme-ai",auth: [{methodId: "api-key",label: "Acme AI API key",hint: "API key from your Acme AI dashboard",optionKey: "acmeAiApiKey",flagName: "--acme-ai-api-key",envVar: "ACME_AI_API_KEY",promptMessage: "Enter your Acme AI API key",defaultModel: "acme-ai/acme-large",},],catalog: {buildProvider: () => ({api: "openai-completions",baseUrl: "https://api.acme-ai.com/v1",models: [{ id: "acme-large", name: "Acme Large" }],}),buildStaticProvider: () => ({api: "openai-completions",baseUrl: "https://api.acme-ai.com/v1",models: [{ id: "acme-large", name: "Acme Large" }],}),},},});````buildProvider` is the live catalog path used when OpenClaw can resolve realprovider auth. It may perform provider-specific discovery. Use`buildStaticProvider` only for offline rows that are safe to show before authis configured; it must not require credentials or make network requests.OpenClaw's `models list --all` display currently executes static catalogsonly for bundled provider plugins, with an empty config, empty env, and noagent/workspace paths.If your auth flow also needs to patch `models.providers.*`, aliases, andthe agent default model during onboarding, use the preset helpers from`openclaw/plugin-sdk/provider-onboard`. The narrowest helpers are`createDefaultModelPresetAppliers(...)`,`createDefaultModelsPresetAppliers(...)`, and`createModelCatalogPresetAppliers(...)`.When a provider's native endpoint supports streamed usage blocks on thenormal `openai-completions` transport, prefer the shared catalog helpers in`openclaw/plugin-sdk/provider-catalog-shared` instead of hardcodingprovider-id checks. `supportsNativeStreamingUsageCompat(...)` and`applyProviderNativeStreamingUsageCompat(...)` detect support from theendpoint capability map, so native Moonshot/DashScope-style endpoints stillopt in even when a plugin is using a custom provider id.Add dynamic model resolution
If your provider accepts arbitrary model IDs (like a proxy or router), add
resolveDynamicModel:api.registerProvider({// ... id, label, auth, catalog from aboveresolveDynamicModel: (ctx) => ({id: ctx.modelId,name: ctx.modelId,provider: "acme-ai",api: "openai-completions",baseUrl: "https://api.acme-ai.com/v1",reasoning: false,input: ["text"],cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },contextWindow: 128000,maxTokens: 8192,}),});If resolving requires a network call, use
prepareDynamicModelfor async warm-up -resolveDynamicModelruns again after it completes.Add runtime hooks (as needed)
Most providers only need
catalog+resolveDynamicModel. Add hooks incrementally as your provider requires them.Shared helper builders now cover the most common replay/tool-compat families, so plugins usually do not need to hand-wire each hook one by one:
import { buildProviderReplayFamilyHooks } from "openclaw/plugin-sdk/provider-model-shared";import { buildProviderStreamFamilyHooks } from "openclaw/plugin-sdk/provider-stream";import { buildProviderToolCompatFamilyHooks } from "openclaw/plugin-sdk/provider-tools";const GOOGLE_FAMILY_HOOKS = {...buildProviderReplayFamilyHooks({ family: "google-gemini" }),...buildProviderStreamFamilyHooks("google-thinking"),...buildProviderToolCompatFamilyHooks("gemini"),};api.registerProvider({id: "acme-gemini-compatible",// ......GOOGLE_FAMILY_HOOKS,});Available replay families today:
Family What it wires in Bundled examples openai-compatibleShared OpenAI-style replay policy for OpenAI-compatible transports, including tool-call-id sanitation, assistant-first ordering fixes, and generic Gemini-turn validation where the transport needs it moonshot,ollama,xai,zaianthropic-by-modelClaude-aware replay policy chosen by modelId, so Anthropic-message transports only get Claude-specific thinking-block cleanup when the resolved model is actually a Claude idamazon-bedrock,anthropic-vertexgoogle-geminiNative Gemini replay policy plus bootstrap replay sanitation and tagged reasoning-output mode google,google-gemini-clipassthrough-geminiGemini thought-signature sanitation for Gemini models running through OpenAI-compatible proxy transports; does not enable native Gemini replay validation or bootstrap rewrites openrouter,kilocode,opencode,opencode-gohybrid-anthropic-openaiHybrid policy for providers that mix Anthropic-message and OpenAI-compatible model surfaces in one plugin; optional Claude-only thinking-block dropping stays scoped to the Anthropic side minimaxAvailable stream families today:
Family What it wires in Bundled examples google-thinkingGemini thinking payload normalization on the shared stream path google,google-gemini-clikilocode-thinkingKilo reasoning wrapper on the shared proxy stream path, with kilo/autoand unsupported proxy reasoning ids skipping injected thinkingkilocodemoonshot-thinkingMoonshot binary native-thinking payload mapping from config + /thinklevelmoonshotminimax-fast-modeMiniMax fast-mode model rewrite on the shared stream path minimax,minimax-portalopenai-responses-defaultsShared native OpenAI/Codex Responses wrappers: attribution headers, /fast/serviceTier, text verbosity, native Codex web search, reasoning-compat payload shaping, and Responses context managementopenai,openai-codexopenrouter-thinkingOpenRouter reasoning wrapper for proxy routes, with unsupported-model/ autoskips handled centrallyopenroutertool-stream-default-onDefault-on tool_streamwrapper for providers like Z.AI that want tool streaming unless explicitly disabledzaiSDK seams powering the family builders
Each family builder is composed from lower-level public helpers exported from the same package, which you can reach for when a provider needs to go off the common pattern:
openclaw/plugin-sdk/provider-model-shared-ProviderReplayFamily,buildProviderReplayFamilyHooks(...), and the raw replay builders (buildOpenAICompatibleReplayPolicy,buildAnthropicReplayPolicyForModel,buildGoogleGeminiReplayPolicy,buildHybridAnthropicOrOpenAIReplayPolicy). Also exports Gemini replay helpers (sanitizeGoogleGeminiReplayHistory,resolveTaggedReasoningOutputMode) and endpoint/model helpers (resolveProviderEndpoint,normalizeProviderId,normalizeGooglePreviewModelId).openclaw/plugin-sdk/provider-stream-ProviderStreamFamily,buildProviderStreamFamilyHooks(...),composeProviderStreamWrappers(...), plus the shared OpenAI/Codex wrappers (createOpenAIAttributionHeadersWrapper,createOpenAIFastModeWrapper,createOpenAIServiceTierWrapper,createOpenAIResponsesContextManagementWrapper,createCodexNativeWebSearchWrapper), DeepSeek V4 OpenAI-compatible wrapper (createDeepSeekV4OpenAICompatibleThinkingWrapper), Anthropic Messages thinking prefill cleanup (createAnthropicThinkingPrefillPayloadWrapper), and shared proxy/provider wrappers (createOpenRouterWrapper,createToolStreamWrapper,createMinimaxFastModeWrapper).openclaw/plugin-sdk/provider-tools-ProviderToolCompatFamily,buildProviderToolCompatFamilyHooks("deepseek" | "gemini" | "openai"), and underlying provider schema helpers.
Some stream helpers stay provider-local on purpose.
@openclaw/anthropic-providerkeepswrapAnthropicProviderStream,resolveAnthropicBetas,resolveAnthropicFastMode,resolveAnthropicServiceTier, and the lower-level Anthropic wrapper builders in its own publicapi.ts/contract-api.tsseam because they encode Claude OAuth beta handling andcontext1mgating. The xAI plugin similarly keeps native xAI Responses shaping in its ownwrapStreamFn(/fastaliases, defaulttool_stream, unsupported strict-tool cleanup, xAI-specific reasoning-payload removal).The same package-root pattern also backs
@openclaw/openai-provider(provider builders, default-model helpers, realtime provider builders) and@openclaw/openrouter-provider(provider builder plus onboarding/config helpers).For providers that need a token exchange before each inference call:
prepareRuntimeAuth: async (ctx) => {const exchanged = await exchangeToken(ctx.apiKey);return {apiKey: exchanged.token,baseUrl: exchanged.baseUrl,expiresAt: exchanged.expiresAt,};},For providers that need custom request headers or body modifications:
// wrapStreamFn returns a StreamFn derived from ctx.streamFnwrapStreamFn: (ctx) => {if (!ctx.streamFn) return undefined;const inner = ctx.streamFn;return async (params) => {params.headers = {...params.headers,"X-Acme-Version": "2",};return inner(params);};},For providers that need native request/session headers or metadata on generic HTTP or WebSocket transports:
resolveTransportTurnState: (ctx) => ({headers: {"x-request-id": ctx.turnId,},metadata: {session_id: ctx.sessionId ?? "",turn_id: ctx.turnId,},}),resolveWebSocketSessionPolicy: (ctx) => ({headers: {"x-session-id": ctx.sessionId ?? "",},degradeCooldownMs: 60_000,}),For providers that expose usage/billing data:
resolveUsageAuth: async (ctx) => {const auth = await ctx.resolveOAuthToken();return auth ? { token: auth.token } : null;},fetchUsageSnapshot: async (ctx) => {return await fetchAcmeUsage(ctx.token, ctx.timeoutMs);},All available provider hooks
OpenClaw calls hooks in this order. Most providers only use 2-3: Compatibility-only provider fields that OpenClaw no longer calls, such as
ProviderPlugin.capabilitiesandsuppressBuiltInModel, are not listed here.# Hook When to use 1 catalogModel catalog or base URL defaults 2 applyConfigDefaultsProvider-owned global defaults during config materialization 3 normalizeModelIdLegacy/preview model-id alias cleanup before lookup 4 normalizeTransportProvider-family api/baseUrlcleanup before generic model assembly5 normalizeConfigNormalize `models.providers. config | | 6 |applyNativeStreamingUsageCompat| Native streaming-usage compat rewrites for config providers | | 7 |resolveConfigApiKey| Provider-owned env-marker auth resolution | | 8 |resolveSyntheticAuth| Local/self-hosted or config-backed synthetic auth | | 9 |shouldDeferSyntheticProfileAuth| Lower synthetic stored-profile placeholders behind env/config auth | | 10 |resolveDynamicModel| Accept arbitrary upstream model IDs | | 11 |prepareDynamicModel| Async metadata fetch before resolving | | 12 |normalizeResolvedModel| Transport rewrites before the runner | | 13 |contributeResolvedModelCompat| Compat flags for vendor models behind another compatible transport | | 14 |normalizeToolSchemas| Provider-owned tool-schema cleanup before registration | | 15 |inspectToolSchemas| Provider-owned tool-schema diagnostics | | 16 |resolveReasoningOutputMode| Tagged vs native reasoning-output contract | | 17 |prepareExtraParams| Default request params | | 18 |createStreamFn| Fully custom StreamFn transport | | 19 |wrapStreamFn| Custom headers/body wrappers on the normal stream path | | 20 |resolveTransportTurnState| Native per-turn headers/metadata | | 21 |resolveWebSocketSessionPolicy| Native WS session headers/cool-down | | 22 |formatApiKey| Custom runtime token shape | | 23 |refreshOAuth| Custom OAuth refresh | | 24 |buildAuthDoctorHint| Auth repair guidance | | 25 |matchesContextOverflowError| Provider-owned overflow detection | | 26 |classifyFailoverReason| Provider-owned rate-limit/overload classification | | 27 |isCacheTtlEligible| Prompt cache TTL gating | | 28 |buildMissingAuthMessage| Custom missing-auth hint | | 29 |augmentModelCatalog| Synthetic forward-compat rows | | 30 |resolveThinkingProfile| Model-specific/thinkoption set | | 31 |isBinaryThinking| Binary thinking on/off compatibility | | 32 |supportsXHighThinking|xhighreasoning support compatibility | | 33 |resolveDefaultThinkingLevel| Default/thinkpolicy compatibility | | 34 |isModernModelRef| Live/smoke model matching | | 35 |prepareRuntimeAuth| Token exchange before inference | | 36 |resolveUsageAuth| Custom usage credential parsing | | 37 |fetchUsageSnapshot| Custom usage endpoint | | 38 |createEmbeddingProvider| Provider-owned embedding adapter for memory/search | | 39 |buildReplayPolicy| Custom transcript replay/compaction policy | | 40 |sanitizeReplayHistory| Provider-specific replay rewrites after generic cleanup | | 41 |validateReplayTurns| Strict replay-turn validation before the embedded runner | | 42 |onModelSelected` | Post-selection callback (e.g. telemetry) |Runtime fallback notes:- `normalizeConfig` checks the matched provider first, then other hook-capable provider plugins until one actually changes the config. If no provider hook rewrites a supported Google-family config entry, the bundled Google config normalizer still applies.- `resolveConfigApiKey` uses the provider hook when exposed. The bundled `amazon-bedrock` path also has a built-in AWS env-marker resolver here, even though Bedrock runtime auth itself still uses the AWS SDK default chain.- `resolveSystemPromptContribution` lets a provider inject cache-aware system-prompt guidance for a model family. Prefer it over `before_prompt_build` when the behavior belongs to one provider/model family and should preserve the stable/dynamic cache split.For detailed descriptions and real-world examples, see [Internals: Provider Runtime Hooks](/en/plugins/architecture-internals#provider-runtime-hooks).Add extra capabilities (optional)
Step 5: Add extra capabilities
Section titled “Step 5: Add extra capabilities”A provider plugin can register embeddings, speech, realtime transcription, realtime voice, media understanding, image generation, video generation, web fetch, and web search alongside text inference. OpenClaw classifies this as a hybrid-capability plugin - the recommended pattern for company plugins (one plugin per vendor). See Internals: Capability Ownership.
Register each capability inside
register(api)alongside your existingapi.registerProvider(...)call. Pick only the tabs you need:import {assertOkOrThrowProviderError,postJsonRequest,} from "openclaw/plugin-sdk/provider-http";api.registerSpeechProvider({id: "acme-ai",label: "Acme Speech",defaultTimeoutMs: 120_000,isConfigured: ({ config }) => Boolean(config.messages?.tts),synthesize: async (req) => {const { response, release } = await postJsonRequest({url: "https://api.example.com/v1/speech",headers: new Headers({ "Content-Type": "application/json" }),body: { text: req.text },timeoutMs: req.timeoutMs,fetchFn: fetch,auditContext: "acme speech",});try {await assertOkOrThrowProviderError(response, "Acme Speech API error");return {audioBuffer: Buffer.from(await response.arrayBuffer()),outputFormat: "mp3",fileExtension: ".mp3",voiceCompatible: false,};} finally {await release();}},});Use
assertOkOrThrowProviderError(...)for provider HTTP failures so plugins share capped error-body reads, JSON error parsing, and request-id suffixes.Prefer
createRealtimeTranscriptionWebSocketSession(...)- the shared helper handles proxy capture, reconnect backoff, close flushing, ready handshakes, audio queueing, and close-event diagnostics. Your plugin only maps upstream events.api.registerRealtimeTranscriptionProvider({id: "acme-ai",label: "Acme Realtime Transcription",isConfigured: () => true,createSession: (req) => {const apiKey = String(req.providerConfig.apiKey ?? "");return createRealtimeTranscriptionWebSocketSession({providerId: "acme-ai",callbacks: req,url: "wss://api.example.com/v1/realtime-transcription",headers: { Authorization: `Bearer ${apiKey}` },onMessage: (event, transport) => {if (event.type === "session.created") {transport.sendJson({ type: "session.update" });transport.markReady();return;}if (event.type === "transcript.final") {req.onTranscript?.(event.text);}},sendAudio: (audio, transport) => {transport.sendJson({type: "audio.append",audio: audio.toString("base64"),});},onClose: (transport) => {transport.sendJson({ type: "audio.end" });},});},});Batch STT providers that POST multipart audio should use
buildAudioTranscriptionFormData(...)fromopenclaw/plugin-sdk/provider-http. The helper normalizes upload filenames, including AAC uploads that need an M4A-style filename for compatible transcription APIs.api.registerRealtimeVoiceProvider({id: "acme-ai",label: "Acme Realtime Voice",capabilities: {transports: ["gateway-relay"],inputAudioFormats: [{ encoding: "pcm16", sampleRateHz: 24000, channels: 1 }],outputAudioFormats: [{ encoding: "pcm16", sampleRateHz: 24000, channels: 1 }],supportsBargeIn: true,supportsToolCalls: true,},isConfigured: ({ providerConfig }) => Boolean(providerConfig.apiKey),createBridge: (req) => ({// Set this only if the provider accepts multiple tool responses for// one call, for example an immediate "working" response followed by// the final result.supportsToolResultContinuation: false,connect: async () => {},sendAudio: () => {},setMediaTimestamp: () => {},handleBargeIn: () => {},submitToolResult: () => {},acknowledgeMark: () => {},close: () => {},isConnected: () => true,}),});Declare
capabilitiessotalk.catalogcan expose valid modes, transports, audio formats, and feature flags to browser and native Talk clients. ImplementhandleBargeInwhen a transport can detect that a human is interrupting assistant playback and the provider supports truncating or clearing the active audio response.api.registerMediaUnderstandingProvider({id: "acme-ai",capabilities: ["image", "audio"],describeImage: async (req) => ({ text: "A photo of..." }),transcribeAudio: async (req) => ({ text: "Transcript..." }),});api.registerEmbeddingProvider({id: "acme-ai",defaultModel: "acme-embed",transport: "remote",authProviderId: "acme-ai",create: async ({ model }) => ({provider: {id: "acme-ai",model,dimensions: 1536,embed: async (input) => {const text = typeof input === "string" ? input : input.text;return fetchAcmeEmbedding(text);},embedBatch: async (inputs) =>Promise.all(inputs.map((input) =>fetchAcmeEmbedding(typeof input === "string" ? input : input.text),),),},}),});Declare the same id in
contracts.embeddingProviders. This is the general embedding contract for reusable vector generation. UseregisterMemoryEmbeddingProvider(...)only for memory-engine-specific adapters.Video capabilities use a mode-aware shape:
generate,imageToVideo, andvideoToVideo. Flat aggregate fields likemaxInputImages/maxInputVideos/maxDurationSecondsare not enough to advertise transform-mode support or disabled modes cleanly. Music generation follows the same pattern with explicitgenerate/editblocks.api.registerImageGenerationProvider({id: "acme-ai",label: "Acme Images",generate: async (req) => ({ /* image result */ }),});api.registerVideoGenerationProvider({id: "acme-ai",label: "Acme Video",defaultTimeoutMs: 600_000,capabilities: {generate: { maxVideos: 1, maxDurationSeconds: 10, supportsResolution: true },imageToVideo: {enabled: true,maxVideos: 1,maxInputImages: 1,maxInputImagesByModel: { "acme/reference-to-video": 9 },maxDurationSeconds: 5,},videoToVideo: { enabled: false },},generateVideo: async (req) => ({ videos: [] }),});api.registerWebFetchProvider({id: "acme-ai-fetch",label: "Acme Fetch",hint: "Fetch pages through Acme's rendering backend.",envVars: ["ACME_FETCH_API_KEY"],placeholder: "acme-...",signupUrl: "https://acme.example.com/fetch",credentialPath: "plugins.entries.acme.config.webFetch.apiKey",getCredentialValue: (fetchConfig) => fetchConfig?.acme?.apiKey,setCredentialValue: (fetchConfigTarget, value) => {const acme = (fetchConfigTarget.acme ??= {});acme.apiKey = value;},createTool: () => ({description: "Fetch a page through Acme Fetch.",parameters: {},execute: async (args) => ({ content: [] }),}),});api.registerWebSearchProvider({id: "acme-ai-search",label: "Acme Search",search: async (req) => ({ content: [] }),});Test
Step 6: Test
Section titled “Step 6: Test”import { describe, it, expect } from "vitest";// Export your provider config object from index.ts or a dedicated fileimport { acmeProvider } from "./provider.js";describe("acme-ai provider", () => {it("resolves dynamic models", () => {const model = acmeProvider.resolveDynamicModel!({modelId: "acme-beta-v3",} as any);expect(model.id).toBe("acme-beta-v3");expect(model.provider).toBe("acme-ai");});it("returns catalog when key is available", async () => {const result = await acmeProvider.catalog!.run({resolveProviderApiKey: () => ({ apiKey: "test-key" }),} as any);expect(result?.provider?.models).toHaveLength(2);});it("returns null catalog when no key", async () => {const result = await acmeProvider.catalog!.run({resolveProviderApiKey: () => ({ apiKey: undefined }),} as any);expect(result).toBeNull();});});
Publish to ClawHub
Section titled “Publish to ClawHub”Provider plugins publish the same way as any other external code plugin:
clawhub package publish your-org/your-plugin --dry-runclawhub package publish your-org/your-pluginDo not use the legacy skill-only publish alias here; plugin packages should use
clawhub package publish.
File structure
Section titled “File structure”<bundled-plugin-root>/acme-ai/├── package.json # openclaw.providers metadata├── openclaw.plugin.json # Manifest with provider auth metadata├── index.ts # definePluginEntry + registerProvider└── src/ ├── provider.test.ts # Tests └── usage.ts # Usage endpoint (optional)Catalog order reference
Section titled “Catalog order reference”catalog.order controls when your catalog merges relative to built-in
providers:
| Order | When | Use case |
|---|---|---|
simple | First pass | Plain API-key providers |
profile | After simple | Providers gated on auth profiles |
paired | After profile | Synthesize multiple related entries |
late | Last pass | Override existing providers (wins on collision) |
Next steps
Section titled “Next steps”- Channel Plugins - if your plugin also provides a channel
- SDK Runtime -
api.runtimehelpers (TTS, search, subagent) - SDK Overview - full subpath import reference
- Plugin Internals - hook details and bundled examples