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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
罗磊的独立博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园 - 司徒正美
博客园 - 叶小钗
T
Tailwind CSS Blog
博客园 - Franky
V
V2EX
有赞技术团队
有赞技术团队
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
Jina AI
Jina AI
D
DataBreaches.Net
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell

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: parse diffs numeric options · openclaw/openclaw@fd83530
steipete · 2026-05-29 · via Recent Commits to openclaw:main
11

import fs from "node:fs/promises";

2-

import { stringEnum } from "openclaw/plugin-sdk/channel-actions";

2+

import { optionalFiniteNumberSchema, stringEnum } from "openclaw/plugin-sdk/channel-actions";

33

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

4+

import { readFiniteNumberParam } from "openclaw/plugin-sdk/param-readers";

45

import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";

56

import { Type } from "typebox";

67

import type { Static } from "typebox";

@@ -82,20 +83,16 @@ const DiffsToolSchema = Type.Object(

8283

fileFormat: Type.Optional(

8384

stringEnum(DIFF_OUTPUT_FORMATS, { description: "Rendered file format: png or pdf." }),

8485

),

85-

fileScale: Type.Optional(

86-

Type.Number({

87-

description: "Optional rendered-file device scale factor override (1-4).",

88-

minimum: 1,

89-

maximum: 4,

90-

}),

91-

),

92-

fileMaxWidth: Type.Optional(

93-

Type.Number({

94-

description: "Optional rendered-file max width in CSS pixels (640-2400).",

95-

minimum: 640,

96-

maximum: 2400,

97-

}),

98-

),

86+

fileScale: optionalFiniteNumberSchema({

87+

description: "Optional rendered-file device scale factor override (1-4).",

88+

minimum: 1,

89+

maximum: 4,

90+

}),

91+

fileMaxWidth: optionalFiniteNumberSchema({

92+

description: "Optional rendered-file max width in CSS pixels (640-2400).",

93+

minimum: 640,

94+

maximum: 2400,

95+

}),

9996

/** @deprecated Use fileQuality. */

10097

imageQuality: Type.Optional(

10198

stringEnum(DIFF_IMAGE_QUALITY_PRESETS, {

@@ -111,33 +108,27 @@ const DiffsToolSchema = Type.Object(

111108

}),

112109

),

113110

/** @deprecated Use fileScale. */

114-

imageScale: Type.Optional(

115-

Type.Number({

116-

description: "Deprecated alias for fileScale.",

117-

deprecated: true,

118-

minimum: 1,

119-

maximum: 4,

120-

}),

121-

),

111+

imageScale: optionalFiniteNumberSchema({

112+

description: "Deprecated alias for fileScale.",

113+

deprecated: true,

114+

minimum: 1,

115+

maximum: 4,

116+

}),

122117

/** @deprecated Use fileMaxWidth. */

123-

imageMaxWidth: Type.Optional(

124-

Type.Number({

125-

description: "Deprecated alias for fileMaxWidth.",

126-

deprecated: true,

127-

minimum: 640,

128-

maximum: 2400,

129-

}),

130-

),

118+

imageMaxWidth: optionalFiniteNumberSchema({

119+

description: "Deprecated alias for fileMaxWidth.",

120+

deprecated: true,

121+

minimum: 640,

122+

maximum: 2400,

123+

}),

131124

expandUnchanged: Type.Optional(

132125

Type.Boolean({ description: "Expand unchanged sections instead of collapsing them." }),

133126

),

134-

ttlSeconds: Type.Optional(

135-

Type.Number({

136-

description: "Artifact lifetime in seconds. Default: 1800. Maximum: 21600.",

137-

minimum: 1,

138-

maximum: 21_600,

139-

}),

140-

),

127+

ttlSeconds: optionalFiniteNumberSchema({

128+

description: "Artifact lifetime in seconds. Default: 1800. Maximum: 21600.",

129+

minimum: 1,

130+

maximum: 21_600,

131+

}),

141132

baseUrl: Type.Optional(

142133

Type.String({

143134

description:

@@ -171,21 +162,30 @@ export function createDiffsTool(params: {

171162

parameters: DiffsToolSchema,

172163

execute: async (_toolCallId, rawParams) => {

173164

const toolParams = rawParams as DiffsToolRawParams;

165+

const rawRecord = rawParams as Record<string, unknown>;

174166

const artifactContext = buildArtifactContext(params.context);

175167

const input = normalizeDiffInput(toolParams);

176168

const mode = normalizeMode(toolParams.mode, params.defaults.mode);

177169

const theme = normalizeTheme(toolParams.theme, params.defaults.theme);

178170

const layout = normalizeLayout(toolParams.layout, params.defaults.layout);

179171

const expandUnchanged = toolParams.expandUnchanged === true;

180-

const ttlMs = normalizeTtlMs(toolParams.ttlSeconds ?? params.defaults.ttlSeconds);

172+

const ttlSeconds =

173+

readFiniteNumberParam(rawRecord, "ttlSeconds") ?? params.defaults.ttlSeconds;

174+

const fileScale =

175+

readFiniteNumberParam(rawRecord, "fileScale") ??

176+

readFiniteNumberParam(rawRecord, "imageScale");

177+

const fileMaxWidth =

178+

readFiniteNumberParam(rawRecord, "fileMaxWidth") ??

179+

readFiniteNumberParam(rawRecord, "imageMaxWidth");

180+

const ttlMs = normalizeTtlMs(ttlSeconds);

181181

const image = resolveDiffImageRenderOptions({

182182

defaults: params.defaults,

183183

fileFormat: normalizeOutputFormat(

184184

toolParams.fileFormat ?? toolParams.imageFormat ?? toolParams.format,

185185

),

186186

fileQuality: normalizeFileQuality(toolParams.fileQuality ?? toolParams.imageQuality),

187-

fileScale: toolParams.fileScale ?? toolParams.imageScale,

188-

fileMaxWidth: toolParams.fileMaxWidth ?? toolParams.imageMaxWidth,

187+

fileScale,

188+

fileMaxWidth,

189189

});

190190

const renderTarget = resolveRenderTarget(mode);

191191