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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

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
test: speed up import-heavy suites · openclaw/openclaw@34...
steipete · 2026-05-04 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -44,6 +44,18 @@ async function expectVertexAdcEnvApiKey(params: {

4444

}

4545

}

4646
47+

function testModelDefinition(id: string): Model<Api> {

48+

return {

49+

id,

50+

name: id,

51+

reasoning: false,

52+

input: ["text"],

53+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

54+

contextWindow: 128_000,

55+

maxTokens: 8192,

56+

};

57+

}

58+
4759

vi.mock("../plugins/setup-registry.js", async () => {

4860

const { readFileSync } = await import("node:fs");

4961

return {

@@ -627,6 +639,51 @@ describe("getApiKeyForModel", () => {

627639

}

628640

});

629641
642+

it("reuses runtime auth availability for provider auth checks", () => {

643+

const store = { version: 1 as const, profiles: {} };

644+

const localNoKeyConfig = {

645+

models: {

646+

providers: {

647+

vllm: {

648+

api: "openai-completions",

649+

baseUrl: "http://127.0.0.1:8000/v1",

650+

models: [testModelDefinition("meta-llama/Meta-Llama-3-8B-Instruct")],

651+

},

652+

remote: {

653+

api: "openai-completions",

654+

baseUrl: "https://remote.example.com/v1",

655+

models: [testModelDefinition("remote-model")],

656+

},

657+

},

658+

},

659+

} as OpenClawConfig;

660+
661+

expect(

662+

hasAuthForModelProvider({

663+

provider: "amazon-bedrock",

664+

cfg: {} as OpenClawConfig,

665+

env: {},

666+

store,

667+

}),

668+

).toBe(true);

669+

expect(

670+

hasAuthForModelProvider({

671+

provider: "vllm",

672+

cfg: localNoKeyConfig,

673+

env: {},

674+

store,

675+

}),

676+

).toBe(true);

677+

expect(

678+

hasAuthForModelProvider({

679+

provider: "remote",

680+

cfg: localNoKeyConfig,

681+

env: {},

682+

store,

683+

}),

684+

).toBe(false);

685+

});

686+
630687

it("hasAvailableAuthForProvider('google') accepts GOOGLE_API_KEY fallback", async () => {

631688

await withEnvAsync(

632689

{

Original file line numberDiff line numberDiff line change

@@ -11,11 +11,16 @@ const baseProviderTransform = {

1111

},

1212

};

1313
14+

const transformProviderSystemPrompt: Parameters<

15+

typeof buildAttemptSystemPrompt

16+

>[0]["transformProviderSystemPrompt"] = ({ context }) => context.systemPrompt;

17+
1418

describe("buildAttemptSystemPrompt", () => {

1519

it("preserves bootstrap Project Context when a system prompt override is configured", () => {

1620

const result = buildAttemptSystemPrompt({

1721

isRawModelRun: false,

1822

systemPromptOverrideText: "Custom override prompt.",

23+

transformProviderSystemPrompt,

1924

embeddedSystemPrompt: {

2025

workspaceDir: "/tmp/openclaw",

2126

reasoningTagHint: false,

@@ -59,6 +64,7 @@ describe("buildAttemptSystemPrompt", () => {

5964

it("omits system prompts for raw model probes", () => {

6065

const result = buildAttemptSystemPrompt({

6166

isRawModelRun: true,

67+

transformProviderSystemPrompt,

6268

embeddedSystemPrompt: {

6369

workspaceDir: "/tmp/openclaw",

6470

reasoningTagHint: false,

Original file line numberDiff line numberDiff line change

@@ -1,15 +1,21 @@

11

import type { OpenClawConfig } from "../../../config/types.openclaw.js";

2-

import { transformProviderSystemPrompt } from "../../../plugins/provider-runtime.js";

32

import type { ProviderTransformSystemPromptContext } from "../../../plugins/types.js";

43

import { appendAgentBootstrapSystemPromptSupplement } from "../../system-prompt.js";

54

import { buildEmbeddedSystemPrompt, createSystemPromptOverride } from "../system-prompt.js";

65
76

type EmbeddedSystemPromptParams = Parameters<typeof buildEmbeddedSystemPrompt>[0];

7+

type ProviderSystemPromptTransform = (params: {

8+

provider: string;

9+

config?: OpenClawConfig;

10+

workspaceDir: string;

11+

context: ProviderTransformSystemPromptContext;

12+

}) => string;

813
914

export type BuildAttemptSystemPromptParams = {

1015

isRawModelRun: boolean;

1116

systemPromptOverrideText?: string;

1217

embeddedSystemPrompt: EmbeddedSystemPromptParams;

18+

transformProviderSystemPrompt: ProviderSystemPromptTransform;

1319

providerTransform: {

1420

provider: string;

1521

config?: OpenClawConfig;

@@ -38,7 +44,7 @@ export function buildAttemptSystemPrompt(

3844
3945

const systemPrompt = params.isRawModelRun

4046

? ""

41-

: transformProviderSystemPrompt({

47+

: params.transformProviderSystemPrompt({

4248

provider: params.providerTransform.provider,

4349

config: params.providerTransform.config,

4450

workspaceDir: params.providerTransform.workspaceDir,

Original file line numberDiff line numberDiff line change

@@ -22,6 +22,7 @@ import {

2222

resolveEmbeddedAgentStreamFn,

2323

resolveUnknownToolGuardThreshold,

2424

shouldCreateBundleMcpRuntimeForAttempt,

25+

shouldBuildCoreCodingToolsForAllowlist,

2526

resolveAttemptToolPolicyMessageProvider,

2627

resolvePromptBuildHookResult,

2728

resolvePromptModeForSession,

@@ -81,6 +82,15 @@ describe("applyEmbeddedAttemptToolsAllow", () => {

8182

applyEmbeddedAttemptToolsAllow(tools, [" cron ", "READ"]).map((tool) => tool.name),

8283

).toEqual(["cron", "read"]);

8384

});

85+
86+

it("keeps plugin-only allowlists on the shared tool policy path", () => {

87+

const tools = [{ name: "memory_search" }, { name: "plugin_extra" }];

88+
89+

expect(shouldBuildCoreCodingToolsForAllowlist(["memory_search"])).toBe(false);

90+

expect(

91+

applyEmbeddedAttemptToolsAllow(tools, ["memory_search"]).map((tool) => tool.name),

92+

).toEqual(["memory_search"]);

93+

});

8494

});

8595
8696

describe("buildEmbeddedAttemptToolRunContext", () => {

Original file line numberDiff line numberDiff line change

@@ -32,6 +32,7 @@ import {

3232

import {

3333

resolveProviderSystemPromptContribution,

3434

resolveProviderTextTransforms,

35+

transformProviderSystemPrompt,

3536

} from "../../../plugins/provider-runtime.js";

3637

import { getPluginToolMeta } from "../../../plugins/tools.js";

3738

import { isAcpSessionKey, isSubagentSessionKey } from "../../../routing/session-key.js";

@@ -525,7 +526,7 @@ const CORE_CODING_TOOL_ALLOWLIST_NAMES = new Set([

525526

"write",

526527

]);

527528
528-

function shouldBuildCoreCodingToolsForAllowlist(toolsAllow?: string[]): boolean {

529+

export function shouldBuildCoreCodingToolsForAllowlist(toolsAllow?: string[]): boolean {

529530

if (!toolsAllow || toolsAllow.length === 0) {

530531

return true;

531532

}

@@ -1291,6 +1292,7 @@ export async function runEmbeddedAttempt(

12911292

const attemptSystemPrompt = buildAttemptSystemPrompt({

12921293

isRawModelRun,

12931294

systemPromptOverrideText,

1295+

transformProviderSystemPrompt,

12941296

embeddedSystemPrompt: {

12951297

workspaceDir: effectiveWorkspace,

12961298

defaultThinkLevel: params.thinkLevel,

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,5 @@

11

import { describe, expect, it } from "vitest";

22

import type { OpenClawConfig } from "../../../config/types.js";

3-

import { migrateLegacyConfig } from "./legacy-config-migrate.js";

43

import { LEGACY_CONFIG_MIGRATIONS } from "./legacy-config-migrations.js";

54
65

function migrateLegacyConfigForTest(raw: unknown): {

@@ -211,38 +210,6 @@ describe("legacy migrate mention routing", () => {

211210

});

212211
213212

describe("legacy migrate sandbox scope aliases", () => {

214-

it("returns migrated config when unrelated plugin validation issues remain (#76798)", () => {

215-

const res = migrateLegacyConfig({

216-

agents: {

217-

defaults: {

218-

model: { primary: "openai/gpt-5.5" },

219-

llm: { idleTimeoutSeconds: 120 },

220-

},

221-

},

222-

plugins: {

223-

entries: {

224-

brave: {

225-

enabled: true,

226-

config: { webSearch: { mode: "definitely-invalid" } },

227-

},

228-

},

229-

},

230-

tools: { web: { search: { provider: "brave" } } },

231-

});

232-
233-

expect(res.partiallyValid).toBe(true);

234-

expect(res.changes).toContain(

235-

"Removed agents.defaults.llm; model idle timeout now follows models.providers.<id>.timeoutSeconds.",

236-

);

237-

expect(res.changes).toContain(

238-

"Migration applied; other validation issues remain — run doctor to review.",

239-

);

240-

expect(res.config?.agents?.defaults).toEqual({

241-

model: { primary: "openai/gpt-5.5" },

242-

});

243-

expect(res.config?.tools?.web?.search?.provider).toBe("brave");

244-

});

245-
246213

it("removes legacy agents.defaults.llm timeout config", () => {

247214

const res = migrateLegacyConfigForTest({

248215

agents: {