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

推荐订阅源

小众软件
小众软件
WordPress大学
WordPress大学
IT之家
IT之家
G
Google Developers Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
V
V2EX
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
V
Visual Studio Blog
有赞技术团队
有赞技术团队
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网

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(outbound): ignore schema-padded poll metadata on send...
openclaw-clo · 2026-06-16 · via Recent Commits to openclaw:main
11

// Parses poll command parameters into validated polling options.

2-

import { parseStrictFiniteNumber } from "@openclaw/normalization-core/number-coercion";

3-

import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";

42

import { readSnakeCaseParamRaw } from "./param-key.js";

5364

type PollCreationParamKind = "string" | "stringArray" | "positiveInteger" | "boolean";

@@ -24,65 +22,17 @@ type SharedPollCreationParamName = keyof typeof SHARED_POLL_CREATION_PARAM_DEFS;

2422

export const SHARED_POLL_CREATION_PARAM_NAMES = Object.keys(

2523

SHARED_POLL_CREATION_PARAM_DEFS,

2624

) as SharedPollCreationParamName[];

27-

const SHARED_POLL_CREATION_PARAM_KEY_SET = new Set(

28-

SHARED_POLL_CREATION_PARAM_NAMES.map(normalizePollParamKey),

29-

);

30-

const POLL_VOTE_PARAM_KEY_SET = new Set(

31-

["pollId", "pollOptionId", "pollOptionIds", "pollOptionIndex", "pollOptionIndexes"].map(

32-

normalizePollParamKey,

33-

),

34-

);

35253626

function readPollParamRaw(params: Record<string, unknown>, key: string): unknown {

3727

return readSnakeCaseParamRaw(params, key);

3828

}

392940-

function normalizePollParamKey(key: string): string {

41-

return normalizeLowercaseStringOrEmpty(key.replaceAll("_", ""));

42-

}

43-44-

function isChannelPollCreationParamName(key: string): boolean {

45-

const normalized = normalizePollParamKey(key);

46-

return (

47-

normalized.startsWith("poll") &&

48-

!SHARED_POLL_CREATION_PARAM_KEY_SET.has(normalized) &&

49-

!POLL_VOTE_PARAM_KEY_SET.has(normalized)

50-

);

51-

}

52-53-

function hasExplicitUnknownPollValue(key: string, value: unknown): boolean {

54-

if (value === true) {

55-

return true;

56-

}

57-

if (typeof value === "number") {

58-

return Number.isFinite(value) && value !== 0;

59-

}

60-

if (typeof value === "string") {

61-

const trimmed = value.trim();

62-

if (trimmed.length === 0) {

63-

return false;

64-

}

65-

if (normalizePollParamKey(key).includes("duration")) {

66-

const parsed = parseStrictFiniteNumber(trimmed);

67-

return Number.isFinite(parsed) && parsed !== 0;

68-

}

69-

const normalized = normalizeLowercaseStringOrEmpty(trimmed);

70-

return normalized !== "false" && normalized !== "0";

71-

}

72-

if (Array.isArray(value)) {

73-

return value.some((entry) => hasExplicitUnknownPollValue(key, entry));

74-

}

75-

return false;

76-

}

77-7830

// Among the shared poll params, only the content-bearing fields (pollQuestion,

7931

// pollOption) signal poll intent on their own. The modifier fields

80-

// (pollDurationHours, pollMulti) are exposed by the shared `message` tool

81-

// schema for both `send` and `poll` actions, so LLMs routinely echo their

82-

// schema-implied defaults (`1`, `false`) on plain `send` calls — see issue

83-

// for context. Treating those modifier defaults as "the agent meant to create

84-

// a poll" produces false positives and blocks routine sends. The modifiers

85-

// only count when accompanied by a content-bearing field.

32+

// (pollDurationHours, pollMulti) and channel-specific metadata

33+

// (pollDurationSeconds, pollPublic, pollAnonymous) are also exposed on the

34+

// shared `message` tool schema, so schema-padded plain sends may echo them.

35+

// Only content fields count here; action="poll" validates modifiers later.

8636

const CONTENT_BEARING_SHARED_POLL_PARAM_NAMES = ["pollQuestion", "pollOption"] as const;

87378838

function hasContentBearingPollCreationParam(params: Record<string, unknown>): boolean {

@@ -108,17 +58,5 @@ function hasContentBearingPollCreationParam(params: Record<string, unknown>): bo

10858

}

1095911060

export function hasPollCreationParams(params: Record<string, unknown>): boolean {

111-

if (hasContentBearingPollCreationParam(params)) {

112-

return true;

113-

}

114-

// Channel-specific poll-prefixed params (e.g. pollDurationSeconds,

115-

// pollPublic) are not part of the shared schema, so an explicit value still

116-

// indicates deliberate poll intent and continues to trigger the validator

117-

// even without a pollQuestion/pollOption.

118-

for (const [key, value] of Object.entries(params)) {

119-

if (isChannelPollCreationParamName(key) && hasExplicitUnknownPollValue(key, value)) {

120-

return true;

121-

}

122-

}

123-

return false;

61+

return hasContentBearingPollCreationParam(params);

12462

}