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

推荐订阅源

D
DataBreaches.Net
B
Blog
博客园_首页
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
量子位
V
V2EX
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
I
InfoQ
博客园 - 【当耐特】

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
fix: gate Bedrock Mantle discovery · openclaw/openclaw@15...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

File tree

  • docs/providers

  • extensions/amazon-bedrock-mantle

  • src/plugins/contracts

Original file line numberDiff line numberDiff line change

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

2525

- OpenAI-compatible models: strip prior assistant reasoning fields from replayed Chat Completions history by default, preventing oMLX/vLLM Qwen follow-up turns from rejecting or stalling on stale `reasoning` payloads. Fixes #46637. Thanks @zipzagster and @lexhoefsloot.

2626

- CLI/onboarding: give non-Azure custom providers a safe generated context window and heal legacy 4k wizard entries without overwriting explicit valid small model limits, preventing first-turn compaction loops. Fixes #79428. (#79911) Thanks @Jefsky.

2727

- OpenAI-compatible models: add `compat.strictMessageKeys` to strip Chat Completions replay messages to `role` and `content` for strict providers that reject OpenAI-style tool and metadata keys. Fixes #50374. Thanks @choutos.

28+

- Bedrock Mantle: add `plugins.entries.amazon-bedrock-mantle.config.discovery.enabled=false` to suppress automatic Mantle discovery and IAM bearer-token generation while keeping the plugin enabled. Fixes #67288. Thanks @kanekoh.

2829

- Ollama: stop native `/api/chat` requests from copying catalog `contextWindow` or `maxTokens` into `options.num_ctx` unless `params.num_ctx` is explicitly configured, avoiding pathological prompt-ingestion latency on local large-context models. Fixes #62267. Thanks @BenSHPD.

2930

- Ollama: keep the model idle watchdog enabled for `*:cloud` models routed through a local Ollama host, so cloud-backed tool-loop stalls fail over visibly instead of inheriting local-model no-idle behavior. Fixes #79350. Thanks @geek111.

3031

- Voice/Ollama: honor routed voice agent `tools.allow` for classic embedded voice responses, including empty allowlists, so no-tool Ollama agents do not receive tool schemas. Fixes #79506. Thanks @donkeykong91.

Original file line numberDiff line numberDiff line change

@@ -90,6 +90,13 @@ region's `/v1/models` endpoint.

9090

| Discovery cache | Results cached for 1 hour |

9191

| IAM token refresh | Hourly |

9292
93+

To keep the Mantle plugin enabled but suppress automatic discovery and IAM

94+

bearer-token generation, disable the plugin-owned discovery toggle:

95+
96+

```bash

97+

openclaw config set plugins.entries.amazon-bedrock-mantle.config.discovery.enabled false

98+

```

99+
93100

<Note>

94101

The bearer token is the same `AWS_BEARER_TOKEN_BEDROCK` used by the standard [Amazon Bedrock](/providers/bedrock) provider.

95102

</Note>

Original file line numberDiff line numberDiff line change

@@ -141,6 +141,22 @@ describe("bedrock mantle discovery", () => {

141141

).resolves.toBeUndefined();

142142

});

143143
144+

it("skips IAM token generation when plugin discovery is disabled", async () => {

145+

const tokenProviderFactory = vi.fn(() => {

146+

throw new Error("disabled discovery should not generate a token");

147+

});

148+
149+

await expect(

150+

resolveImplicitMantleProvider({

151+

env: { AWS_REGION: "us-east-1" } as NodeJS.ProcessEnv,

152+

pluginConfig: { discovery: { enabled: false } },

153+

tokenProviderFactory,

154+

}),

155+

).resolves.toBeNull();

156+
157+

expect(tokenProviderFactory).not.toHaveBeenCalled();

158+

});

159+
144160

it("getCachedIamToken returns cached token when valid", async () => {

145161

const tokenProvider = vi.fn(async () => "bedrock-cached-token"); // pragma: allowlist secret

146162

const tokenProviderFactory = createTokenProviderFactory(tokenProvider);

Original file line numberDiff line numberDiff line change

@@ -225,6 +225,10 @@ interface MantleCacheEntry {

225225

fetchedAt: number;

226226

}

227227
228+

type MantleDiscoveryConfig = {

229+

enabled?: boolean;

230+

};

231+
228232

const discoveryCache = new Map<string, MantleCacheEntry>();

229233
230234

/** Clear the discovery cache (for testing). */

@@ -322,10 +326,14 @@ export async function discoverMantleModels(params: {

322326

*/

323327

export async function resolveImplicitMantleProvider(params: {

324328

env?: NodeJS.ProcessEnv;

329+

pluginConfig?: { discovery?: MantleDiscoveryConfig };

325330

fetchFn?: typeof fetch;

326331

tokenProviderFactory?: MantleBearerTokenProviderFactory;

327332

}): Promise<ModelProviderConfig | null> {

328333

const env = params.env ?? process.env;

334+

if (params.pluginConfig?.discovery?.enabled === false) {

335+

return null;

336+

}

329337

const region = resolveMantleRegion(env);

330338

const explicitBearerToken = resolveMantleBearerToken(env);

331339
Original file line numberDiff line numberDiff line change

@@ -7,6 +7,38 @@ describe("amazon-bedrock-mantle provider plugin", () => {

77

vi.restoreAllMocks();

88

});

99
10+

it("uses live plugin config to disable catalog discovery", async () => {

11+

const fetchMock = vi

12+

.spyOn(globalThis, "fetch")

13+

.mockRejectedValue(new Error("unexpected fetch"));

14+

const provider = await registerSingleProviderPlugin(bedrockMantlePlugin);

15+

const catalog = provider.catalog;

16+

if (!catalog) {

17+

throw new Error("catalog registration missing");

18+

}

19+
20+

const result = await catalog.run({

21+

config: {

22+

plugins: {

23+

entries: {

24+

"amazon-bedrock-mantle": {

25+

config: {

26+

discovery: { enabled: false },

27+

},

28+

},

29+

},

30+

},

31+

},

32+

env: {

33+

AWS_BEARER_TOKEN_BEDROCK: "test-token",

34+

AWS_REGION: "us-east-1",

35+

},

36+

} as never);

37+
38+

expect(result).toBeNull();

39+

expect(fetchMock).not.toHaveBeenCalled();

40+

});

41+
1042

it("registers with correct provider ID and label", async () => {

1143

const provider = await registerSingleProviderPlugin(bedrockMantlePlugin);

1244

expect(provider.id).toBe("amazon-bedrock-mantle");

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,28 @@

77

"configSchema": {

88

"type": "object",

99

"additionalProperties": false,

10-

"properties": {}

10+

"properties": {

11+

"discovery": {

12+

"type": "object",

13+

"additionalProperties": false,

14+

"properties": {

15+

"enabled": {

16+

"type": "boolean",

17+

"description": "When false, skip implicit Mantle model discovery."

18+

}

19+

}

20+

}

21+

}

22+

},

23+

"uiHints": {

24+

"discovery": {

25+

"label": "Model Discovery",

26+

"help": "Plugin-owned controls for Amazon Bedrock Mantle model auto-discovery."

27+

},

28+

"discovery.enabled": {

29+

"label": "Enable Discovery",

30+

"help": "When false, OpenClaw keeps the Amazon Bedrock Mantle plugin available but skips implicit startup discovery. Leave unset for default auto-detect behavior."

31+

}

1132

},

1233

"providers": ["amazon-bedrock-mantle"]

1334

}

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";

2+

import { resolvePluginConfigObject } from "openclaw/plugin-sdk/plugin-config-runtime";

13

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-entry";

24

import {

35

mergeImplicitMantleProvider,

@@ -7,8 +9,25 @@ import {

79

} from "./discovery.js";

810

import { createMantleAnthropicStreamFn } from "./mantle-anthropic.runtime.js";

911
12+

type BedrockMantlePluginConfig = {

13+

discovery?: {

14+

enabled?: boolean;

15+

};

16+

};

17+
1018

export function registerBedrockMantlePlugin(api: OpenClawPluginApi): void {

1119

const providerId = "amazon-bedrock-mantle";

20+

const startupPluginConfig = (api.pluginConfig ?? {}) as BedrockMantlePluginConfig;

21+
22+

function resolveCurrentPluginConfig(

23+

config: OpenClawConfig | undefined,

24+

): BedrockMantlePluginConfig | undefined {

25+

const runtimePluginConfig = resolvePluginConfigObject(config, providerId);

26+

return (

27+

(runtimePluginConfig as BedrockMantlePluginConfig | undefined) ??

28+

(config ? undefined : startupPluginConfig)

29+

);

30+

}

1231
1332

api.registerProvider({

1433

id: providerId,

@@ -18,8 +37,10 @@ export function registerBedrockMantlePlugin(api: OpenClawPluginApi): void {

1837

catalog: {

1938

order: "simple",

2039

run: async (ctx) => {

40+

const currentPluginConfig = resolveCurrentPluginConfig(ctx.config);

2141

const implicit = await resolveImplicitMantleProvider({

2242

env: ctx.env,

43+

pluginConfig: currentPluginConfig,

2344

});

2445

if (!implicit) {

2546

return null;

Original file line numberDiff line numberDiff line change

@@ -77,6 +77,11 @@ const BUNDLED_LIVE_CONFIG_PROVIDER_GUARDS = {

7777

"const currentPluginConfig = resolveCurrentPluginConfig(ctx.config);",

7878

"const currentGuardrail = resolveCurrentPluginConfig(config)?.guardrail;",

7979

],

80+

"extensions/amazon-bedrock-mantle/register.sync.runtime.ts": [

81+

"resolvePluginConfigObject(",

82+

"const startupPluginConfig = (api.pluginConfig ?? {})",

83+

"const currentPluginConfig = resolveCurrentPluginConfig(ctx.config);",

84+

],

8085

"extensions/codex/provider.ts": [

8186

"resolvePluginConfigObject(",

8287

"const runtimePluginConfig = resolvePluginConfigObject(ctx.config, CODEX_PROVIDER_ID);",