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

推荐订阅源

IT之家
IT之家
H
Help Net Security
GbyAI
GbyAI
博客园_首页
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
月光博客
月光博客
美团技术团队
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园 - 叶小钗
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed

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
refactor(agents): hide execution contract resolver · open...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
11

// Covers provider/model gates for strict agentic execution-contract activation.

22

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

33

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

4-

import {

5-

isStrictAgenticExecutionContractActive,

6-

resolveEffectiveExecutionContract,

7-

} from "./execution-contract.js";

4+

import { isStrictAgenticExecutionContractActive } from "./execution-contract.js";

859-

describe("resolveEffectiveExecutionContract", () => {

6+

describe("isStrictAgenticExecutionContractActive", () => {

107

const supportedProvider = "openai";

118

const unsupportedProvider = "anthropic";

129

const emptyConfig: OpenClawConfig = {};

13101411

describe("supported provider + model detection", () => {

1512

it("auto-activates on bare gpt-5 model ids", () => {

1613

expect(

17-

resolveEffectiveExecutionContract({

14+

isStrictAgenticExecutionContractActive({

1815

config: emptyConfig,

1916

provider: supportedProvider,

2017

modelId: "gpt-5.4",

2118

}),

22-

).toBe("strict-agentic");

19+

).toBe(true);

2320

});

24212522

it("auto-activates on the mock-openai qa lane", () => {

2623

expect(

27-

resolveEffectiveExecutionContract({

24+

isStrictAgenticExecutionContractActive({

2825

config: emptyConfig,

2926

provider: "mock-openai",

3027

modelId: "mock-openai/gpt-5.4",

3128

}),

32-

).toBe("strict-agentic");

29+

).toBe(true);

3330

});

34313532

it("auto-activates on gpt-5o and variants without a separator", () => {

3633

for (const modelId of ["gpt-5", "gpt-5o", "gpt-5o-mini"]) {

3734

expect(

38-

resolveEffectiveExecutionContract({

35+

isStrictAgenticExecutionContractActive({

3936

config: emptyConfig,

4037

provider: supportedProvider,

4138

modelId,

4239

}),

43-

).toBe("strict-agentic");

40+

).toBe(true);

4441

}

4542

});

46434744

it("auto-activates on dot-separated variants", () => {

4845

for (const modelId of ["gpt-5.0", "gpt-5.4", "gpt-5.4-alt", "gpt-5.99"]) {

4946

expect(

50-

resolveEffectiveExecutionContract({

47+

isStrictAgenticExecutionContractActive({

5148

config: emptyConfig,

5249

provider: supportedProvider,

5350

modelId,

5451

}),

55-

).toBe("strict-agentic");

52+

).toBe(true);

5653

}

5754

});

58555956

it("auto-activates on dash-separated variants", () => {

6057

for (const modelId of ["gpt-5-preview", "gpt-5-turbo", "gpt-5-2025-03"]) {

6158

expect(

62-

resolveEffectiveExecutionContract({

59+

isStrictAgenticExecutionContractActive({

6360

config: emptyConfig,

6461

provider: supportedProvider,

6562

modelId,

6663

}),

67-

).toBe("strict-agentic");

64+

).toBe(true);

6865

}

6966

});

7067

@@ -81,24 +78,24 @@ describe("resolveEffectiveExecutionContract", () => {

8178

" OPENAI:GPT-5.4 ",

8279

]) {

8380

expect(

84-

resolveEffectiveExecutionContract({

81+

isStrictAgenticExecutionContractActive({

8582

config: emptyConfig,

8683

provider: supportedProvider,

8784

modelId,

8885

}),

89-

).toBe("strict-agentic");

86+

).toBe(true);

9087

}

9188

});

92899390

it("is case-insensitive", () => {

9491

for (const modelId of ["GPT-5.4", "Gpt-5O", "OPENAI/GPT-5.4"]) {

9592

expect(

96-

resolveEffectiveExecutionContract({

93+

isStrictAgenticExecutionContractActive({

9794

config: emptyConfig,

9895

provider: supportedProvider,

9996

modelId,

10097

}),

101-

).toBe("strict-agentic");

98+

).toBe(true);

10299

}

103100

});

104101

@@ -113,25 +110,25 @@ describe("resolveEffectiveExecutionContract", () => {

113110

"mistral-large",

114111

]) {

115112

expect(

116-

resolveEffectiveExecutionContract({

113+

isStrictAgenticExecutionContractActive({

117114

config: emptyConfig,

118115

provider: supportedProvider,

119116

modelId,

120117

}),

121-

).toBe("default");

118+

).toBe(false);

122119

}

123120

});

124121125122

it("collapses to default on unsupported providers even with gpt-5 model ids", () => {

126123

// Model naming alone is insufficient; unsupported providers must not

127124

// inherit OpenAI-specific strict-agentic handling by accident.

128125

expect(

129-

resolveEffectiveExecutionContract({

126+

isStrictAgenticExecutionContractActive({

130127

config: emptyConfig,

131128

provider: unsupportedProvider,

132129

modelId: "gpt-5.4",

133130

}),

134-

).toBe("default");

131+

).toBe(false);

135132

});

136133

});

137134

@@ -147,12 +144,12 @@ describe("resolveEffectiveExecutionContract", () => {

147144

},

148145

};

149146

expect(

150-

resolveEffectiveExecutionContract({

147+

isStrictAgenticExecutionContractActive({

151148

config,

152149

provider: supportedProvider,

153150

modelId: "gpt-5.4",

154151

}),

155-

).toBe("strict-agentic");

152+

).toBe(true);

156153

});

157154158155

it("honors explicit default opt-out even on the supported lane", () => {

@@ -166,12 +163,12 @@ describe("resolveEffectiveExecutionContract", () => {

166163

},

167164

};

168165

expect(

169-

resolveEffectiveExecutionContract({

166+

isStrictAgenticExecutionContractActive({

170167

config,

171168

provider: supportedProvider,

172169

modelId: "gpt-5.4",

173170

}),

174-

).toBe("default");

171+

).toBe(false);

175172

});

176173177174

it("collapses explicit strict-agentic to default on an unsupported lane", () => {

@@ -185,12 +182,12 @@ describe("resolveEffectiveExecutionContract", () => {

185182

},

186183

};

187184

expect(

188-

resolveEffectiveExecutionContract({

185+

isStrictAgenticExecutionContractActive({

189186

config,

190187

provider: unsupportedProvider,

191188

modelId: "claude-opus-4-6",

192189

}),

193-

).toBe("default");

190+

).toBe(false);

194191

});

195192

});

196193