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

推荐订阅源

罗磊的独立博客
U
Unit 42
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
小众软件
小众软件
V
Visual Studio Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 叶小钗
GbyAI
GbyAI
爱范儿
爱范儿
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
博客园_首页
D
Docker
A
About on SuperTechFans
G
Google Developers Blog
I
InfoQ
T
The Blog of Author Tim Ferriss
V
V2EX
博客园 - Franky

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(anthropic): quarantine invalid direct tool schemas (#...
steipete · 2026-06-14 · via Recent Commits to openclaw:main
1+

import { projectRuntimeToolInputSchema } from "./tool-schema-json-projection.js";

2+3+

type AnthropicToolDescriptor = {

4+

readonly name: string;

5+

readonly description: string;

6+

readonly parameters: unknown;

7+

};

8+9+

export type AnthropicProjectedTool = {

10+

readonly originalName: string;

11+

readonly wireName: string;

12+

readonly description?: string;

13+

readonly inputSchema: {

14+

readonly type: "object";

15+

readonly properties: Record<string, unknown>;

16+

readonly required: string[];

17+

};

18+

};

19+20+

export type AnthropicToolProjection = {

21+

readonly inputToolCount: number;

22+

readonly unavailableOriginalNames: ReadonlySet<string>;

23+

readonly tools: readonly AnthropicProjectedTool[];

24+

};

25+26+

type AnthropicParallelToolChoice = {

27+

readonly disable_parallel_tool_use?: boolean;

28+

};

29+30+

export type AnthropicProjectedToolChoice =

31+

| ({ readonly type: "auto" } & AnthropicParallelToolChoice)

32+

| ({ readonly type: "any" } & AnthropicParallelToolChoice)

33+

| { readonly type: "none" }

34+

| ({ readonly type: "tool"; readonly name: string } & AnthropicParallelToolChoice);

35+36+

function isRecord(value: unknown): value is Record<string, unknown> {

37+

return Boolean(value) && typeof value === "object" && !Array.isArray(value);

38+

}

39+40+

function isProviderSupportedViolation(violation: string): boolean {

41+

return violation.endsWith(".$dynamicRef") || violation.endsWith(".$dynamicAnchor");

42+

}

43+44+

/** Snapshots direct/custom tool descriptors before Anthropic payload construction. */

45+

export function projectAnthropicTools(

46+

tools: readonly AnthropicToolDescriptor[],

47+

toWireName: (name: string) => string,

48+

): AnthropicToolProjection {

49+

const projectedTools: AnthropicProjectedTool[] = [];

50+

const unavailableOriginalNames = new Set<string>();

51+

for (const tool of tools) {

52+

let projectedTool: AnthropicProjectedTool;

53+

let originalName: string | undefined;

54+

try {

55+

const name = tool.name;

56+

originalName = name;

57+

if (!name) {

58+

continue;

59+

}

60+

const schemaProjection = projectRuntimeToolInputSchema(tool.parameters, `${name}.parameters`);

61+

if (

62+

!isRecord(schemaProjection.schema) ||

63+

schemaProjection.violations.some((violation) => !isProviderSupportedViolation(violation))

64+

) {

65+

unavailableOriginalNames.add(name);

66+

continue;

67+

}

68+

const properties = schemaProjection.schema.properties;

69+

const required = schemaProjection.schema.required;

70+

if (

71+

(properties !== undefined && properties !== null && !isRecord(properties)) ||

72+

(required !== undefined &&

73+

required !== null &&

74+

(!Array.isArray(required) || required.some((entry) => typeof entry !== "string")))

75+

) {

76+

unavailableOriginalNames.add(name);

77+

continue;

78+

}

79+

let description: string | undefined;

80+

try {

81+

description = typeof tool.description === "string" ? tool.description : undefined;

82+

} catch {

83+

// Description is optional; keep the usable tool schema.

84+

}

85+

const wireName = toWireName(name);

86+

projectedTool = {

87+

originalName: name,

88+

wireName,

89+

...(description ? { description } : {}),

90+

inputSchema: {

91+

type: "object",

92+

properties: (properties ?? {}) as Record<string, unknown>,

93+

required: (required ?? []) as string[],

94+

},

95+

};

96+

} catch {

97+

// Direct/custom tool arrays can bypass the runtime quarantine.

98+

if (originalName) {

99+

unavailableOriginalNames.add(originalName);

100+

}

101+

continue;

102+

}

103+

const conflictingTool = projectedTools.find(

104+

(entry) => entry.wireName === projectedTool.wireName,

105+

);

106+

if (conflictingTool && conflictingTool.originalName !== projectedTool.originalName) {

107+

throw new Error(

108+

`Anthropic tool names "${conflictingTool.originalName}" and "${projectedTool.originalName}" both map to "${projectedTool.wireName}"`,

109+

);

110+

}

111+

projectedTools.push(projectedTool);

112+

}

113+

return {

114+

inputToolCount: tools.length,

115+

unavailableOriginalNames,

116+

tools: projectedTools,

117+

};

118+

}

119+120+

/** Keeps forced Anthropic tool choices aligned with the projected wire names. */

121+

export function reconcileAnthropicToolChoice(

122+

choice: AnthropicProjectedToolChoice,

123+

projection: AnthropicToolProjection,

124+

): AnthropicProjectedToolChoice | undefined {

125+

if (projection.inputToolCount === 0) {

126+

return choice;

127+

}

128+

if (choice.type === "tool") {

129+

const requestedName = choice.name;

130+

const originalMatch = projection.tools.find((tool) => tool.originalName === requestedName);

131+

if (originalMatch) {

132+

return { ...choice, name: originalMatch.wireName };

133+

}

134+

if (projection.unavailableOriginalNames.has(requestedName)) {

135+

throw new Error(

136+

`Anthropic tool_choice requested unavailable tool "${requestedName}" after schema conversion`,

137+

);

138+

}

139+

const matchedTool = projection.tools.find((tool) => tool.wireName === requestedName);

140+

if (!matchedTool) {

141+

throw new Error(

142+

`Anthropic tool_choice requested unavailable tool "${requestedName}" after schema conversion`,

143+

);

144+

}

145+

return { ...choice, name: matchedTool.wireName };

146+

}

147+

if (projection.tools.length === 0) {

148+

if (choice.type === "auto") {

149+

return undefined;

150+

}

151+

if (choice.type === "any") {

152+

throw new Error(

153+

"Anthropic tool_choice requires a tool, but no tools survived schema conversion",

154+

);

155+

}

156+

}

157+

return choice;

158+

}

159+160+

/** Maps Claude Code wire names without trusting every direct/custom descriptor. */

161+

export function resolveOriginalAnthropicToolName(

162+

name: string,

163+

projection: AnthropicToolProjection | undefined,

164+

): string {

165+

return projection?.tools.find((tool) => tool.wireName === name)?.originalName ?? name;

166+

}