惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
博客园 - 聂微东
S
SegmentFault 最新的问题
量子位
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(plugins): add embedding provider contract (#84947) ·...
dutifulbob · 2026-05-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ Docs: https://docs.openclaw.ai

99

- Discord: allow configuring a bounded `agentComponents.ttlMs` callback registry lifetime for long-running component workflows, with per-account overrides and a 24-hour cap. (#84189) Thanks @100menotu001.

1010

- Plugin SDK: add row-level session workflow helpers and deprecate `loadSessionStore` so plugins can read and patch sessions without depending on the legacy whole-store shape. (#84693) Thanks @efpiva.

1111

- Gateway/plugins: reuse a compatible Gateway startup plugin registry during dispatch so safe plugin dispatches avoid redundant registry loading. (#84324) Thanks @ai-hpc.

12+

- Plugins/SDK: add a general `embeddingProviders` capability contract and registration API so embeddings can become a reusable provider surface outside memory-specific adapters.

1213

- Dependencies: refresh provider, plugin, UI, and tooling packages, update `protobufjs` to 8.4.0 to clear the current npm advisory, and carry the Claude ACP completion patch forward to `@agentclientprotocol/claude-agent-acp` 0.36.1.

1314

- Agents/tools: remove the old sender-owner tool gating path so configured tools stay visible for trusted sessions while command and channel-action auth still carry real sender identity.

1415

- QA-Lab: add curated mock JSONL replay fixtures and first-drift reporting for runtime-parity audits. (#80323, refs #80176) Thanks @100yenadmin.

Original file line numberDiff line numberDiff line change

@@ -15,7 +15,8 @@ sidebarTitle: "Adding capabilities"

1515

load pipeline, runtime helpers), see [Plugin internals](/plugins/architecture).

1616

</Info>

1717
18-

Use this when OpenClaw needs a new shared domain such as image generation, video generation, or some future vendor-backed feature area.

18+

Use this when OpenClaw needs a new shared domain such as embeddings, image

19+

generation, video generation, or some future vendor-backed feature area.

1920
2021

The rule:

2122

@@ -113,6 +114,19 @@ The config key is intentionally separate from vision-analysis routing:

113114
114115

Keep those separate so fallback and policy remain explicit.

115116
117+

## Embedding providers

118+
119+

Use `embeddingProviders` for reusable vector embedding providers. This contract

120+

is intentionally broader than memory: tools, search, retrieval, importers, or

121+

future feature plugins can consume embeddings without depending on the memory

122+

engine.

123+
124+

For memory-engine-specific adapters, keep using `memoryEmbeddingProviders`.

125+

Those adapters own memory indexing details such as query/document split,

126+

runtime metadata, and local memory engine setup. Do not make a generic

127+

embedding provider depend on memory-owned modules unless the provider is only

128+

usable by memory.

129+
116130

## Review checklist

117131
118132

Before shipping a new capability, verify:

Original file line numberDiff line numberDiff line change

@@ -37,6 +37,7 @@ Capabilities are the public **native plugin** model inside OpenClaw. Every nativ

3737

| ---------------------- | ------------------------------------------------ | ------------------------------------ |

3838

| Text inference | `api.registerProvider(...)` | `openai`, `anthropic` |

3939

| CLI inference backend | `api.registerCliBackend(...)` | `openai`, `anthropic` |

40+

| Embeddings | `api.registerEmbeddingProvider(...)` | Provider-owned vector plugins |

4041

| Speech | `api.registerSpeechProvider(...)` | `elevenlabs`, `microsoft` |

4142

| Realtime transcription | `api.registerRealtimeTranscriptionProvider(...)` | `openai` |

4243

| Realtime voice | `api.registerRealtimeVoiceProvider(...)` | `openai` |

Original file line numberDiff line numberDiff line change

@@ -95,6 +95,7 @@ methods:

9595

| `api.registerAgentHarness(...)` | Experimental low-level agent executor |

9696

| `api.registerCliBackend(...)` | Local CLI inference backend |

9797

| `api.registerChannel(...)` | Messaging channel |

98+

| `api.registerEmbeddingProvider(...)` | Reusable vector embedding provider |

9899

| `api.registerSpeechProvider(...)` | Text-to-speech / STT synthesis |

99100

| `api.registerRealtimeTranscriptionProvider(...)` | Streaming realtime transcription |

100101

| `api.registerRealtimeVoiceProvider(...)` | Duplex realtime voice sessions |

@@ -105,6 +106,12 @@ methods:

105106

| `api.registerWebFetchProvider(...)` | Web fetch / scrape provider |

106107

| `api.registerWebSearchProvider(...)` | Web search |

107108
109+

Embedding providers registered with `api.registerEmbeddingProvider(...)` must

110+

also be listed in `contracts.embeddingProviders` in the plugin manifest. This

111+

is the generic embedding surface for reusable vector generation. Memory-only

112+

adapters still use `api.registerMemoryEmbeddingProvider(...)` and

113+

`contracts.memoryEmbeddingProviders`.

114+
108115

### Tools and commands

109116
110117

Use [`defineToolPlugin`](/plugins/tool-plugins) for simple tool-only plugins

Original file line numberDiff line numberDiff line change

@@ -511,9 +511,9 @@ API key auth, and dynamic model resolution.

511511

<Step title="Add extra capabilities (optional)">

512512

### Step 5: Add extra capabilities

513513
514-

A provider plugin can register speech, realtime transcription, realtime

515-

voice, media understanding, image generation, video generation, web fetch,

516-

and web search alongside text inference. OpenClaw classifies this as a

514+

A provider plugin can register embeddings, speech, realtime transcription,

515+

realtime voice, media understanding, image generation, video generation,

516+

web fetch, and web search alongside text inference. OpenClaw classifies this as a

517517

**hybrid-capability** plugin - the recommended pattern for company plugins

518518

(one plugin per vendor). See

519519

[Internals: Capability Ownership](/plugins/architecture#capability-ownership-model).

@@ -655,6 +655,38 @@ API key auth, and dynamic model resolution.

655655

});

656656

```

657657

</Tab>

658+

<Tab title="Embeddings">

659+

```typescript

660+

api.registerEmbeddingProvider({

661+

id: "acme-ai",

662+

defaultModel: "acme-embed",

663+

transport: "remote",

664+

authProviderId: "acme-ai",

665+

create: async ({ model }) => ({

666+

provider: {

667+

id: "acme-ai",

668+

model,

669+

dimensions: 1536,

670+

embed: async (input) => {

671+

const text = typeof input === "string" ? input : input.text;

672+

return fetchAcmeEmbedding(text);

673+

},

674+

embedBatch: async (inputs) =>

675+

Promise.all(

676+

inputs.map((input) =>

677+

fetchAcmeEmbedding(typeof input === "string" ? input : input.text),

678+

),

679+

),

680+

},

681+

}),

682+

});

683+

```

684+
685+

Declare the same id in `contracts.embeddingProviders`. This is the

686+

general embedding contract for reusable vector generation. Use

687+

`registerMemoryEmbeddingProvider(...)` only for memory-engine-specific

688+

adapters.

689+

</Tab>

658690

<Tab title="Image and video generation">

659691

Video capabilities use a **mode-aware** shape: `generate`,

660692

`imageToVideo`, and `videoToVideo`. Flat aggregate fields like

Original file line numberDiff line numberDiff line change

@@ -176,6 +176,7 @@ focused channel/runtime subpaths, `config-contracts`, `string-coerce-runtime`,

176176

| `plugin-sdk/provider-web-search-config-contract` | Narrow web-search config/credential helpers for providers that do not need plugin-enable wiring |

177177

| `plugin-sdk/provider-web-search-contract` | Narrow web-search config/credential contract helpers such as `createWebSearchProviderContractFields`, `enablePluginInConfig`, `resolveProviderWebSearchPluginConfig`, and scoped credential setters/getters |

178178

| `plugin-sdk/provider-web-search` | Web-search provider registration/cache/runtime helpers |

179+

| `plugin-sdk/embedding-providers` | General embedding provider types and read helpers, including `EmbeddingProviderAdapter`, `getEmbeddingProvider(...)`, and `listEmbeddingProviders(...)`; plugins register providers through `api.registerEmbeddingProvider(...)` so manifest ownership is enforced |

179180

| `plugin-sdk/provider-tools` | `ProviderToolCompatFamily`, `buildProviderToolCompatFamilyHooks`, and DeepSeek/Gemini/OpenAI schema cleanup + diagnostics |

180181

| `plugin-sdk/provider-usage` | `fetchClaudeUsage` and similar |

181182

| `plugin-sdk/provider-stream` | `ProviderStreamFamily`, `buildProviderStreamFamilyHooks`, `composeProviderStreamWrappers`, stream wrapper types, and shared Anthropic/Bedrock/DeepSeek V4/Google/Kilocode/Moonshot/OpenAI/OpenRouter/Z.A.I/MiniMax/Copilot wrapper helpers |

Original file line numberDiff line numberDiff line change

@@ -408,6 +408,10 @@

408408

"types": "./dist/plugin-sdk/media-mime.d.ts",

409409

"default": "./dist/plugin-sdk/media-mime.js"

410410

},

411+

"./plugin-sdk/embedding-providers": {

412+

"types": "./dist/plugin-sdk/embedding-providers.d.ts",

413+

"default": "./dist/plugin-sdk/embedding-providers.js"

414+

},

411415

"./plugin-sdk/media-generation-runtime": {

412416

"types": "./dist/plugin-sdk/media-generation-runtime.d.ts",

413417

"default": "./dist/plugin-sdk/media-generation-runtime.js"

Original file line numberDiff line numberDiff line change

@@ -77,6 +77,7 @@

7777

"media-runtime",

7878

"media-store",

7979

"media-mime",

80+

"embedding-providers",

8081

"media-generation-runtime",

8182

"conversation-binding-runtime",

8283

"conversation-runtime",

Original file line numberDiff line numberDiff line change

@@ -117,6 +117,7 @@ function createBundledPluginRecord(id: string): PluginRecord {

117117

channelIds: [],

118118

cliBackendIds: [],

119119

providerIds: [],

120+

embeddingProviderIds: [],

120121

speechProviderIds: [],

121122

realtimeTranscriptionProviderIds: [],

122123

realtimeVoiceProviderIds: [],