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

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers 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
refactor: share Slack approval block helpers · openclaw/o...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main

@@ -37,6 +37,14 @@ type SlackPendingDelivery = {

3737

text: string;

3838

blocks: SlackBlock[];

3939

};

40+

type SlackMetadataItem = {

41+

label: string;

42+

value: string;

43+

};

44+

type SlackPluginApprovalView =

45+

| PluginApprovalPendingView

46+

| PluginApprovalResolvedView

47+

| PluginApprovalExpiredView;

40484149

const SLACK_CONTEXT_ELEMENTS_MAX = 10;

4250

const SLACK_CHAT_UPDATE_TEXT_LIMIT = 4000;

@@ -88,15 +96,15 @@ function formatSlackMetadataLine(label: string, value: string): string {

8896

return `*${label}:* ${value}`;

8997

}

909891-

function buildSlackMetadataLines(metadata: readonly { label: string; value: string }[]): string[] {

99+

function buildSlackMetadataLines(metadata: readonly SlackMetadataItem[]): string[] {

92100

const lines: string[] = [];

93101

for (const item of metadata) {

94102

lines.push(formatSlackMetadataLine(item.label, item.value));

95103

}

96104

return lines;

97105

}

9810699-

function buildSlackMetadataContextElements(metadata: readonly { label: string; value: string }[]) {

107+

function buildSlackMetadataContextElements(metadata: readonly SlackMetadataItem[]) {

100108

const lines = buildSlackMetadataLines(metadata);

101109

const visibleLineCount =

102110

lines.length > SLACK_CONTEXT_ELEMENTS_MAX ? SLACK_CONTEXT_ELEMENTS_MAX - 1 : lines.length;

@@ -120,6 +128,18 @@ function buildSlackMetadataContextElements(metadata: readonly { label: string; v

120128

return elements;

121129

}

122130131+

function buildSlackMetadataContextBlocks(metadata: readonly SlackMetadataItem[]): SlackBlock[] {

132+

const metadataElements = buildSlackMetadataContextElements(metadata);

133+

return metadataElements.length > 0

134+

? [

135+

{

136+

type: "context",

137+

elements: metadataElements,

138+

} satisfies SlackBlock,

139+

]

140+

: [];

141+

}

142+123143

function resolveSlackApprovalDecisionLabel(

124144

decision: "allow-once" | "allow-always" | "deny",

125145

): string {

@@ -130,18 +150,27 @@ function resolveSlackApprovalDecisionLabel(

130150

: "Denied";

131151

}

132152133-

function buildSlackPluginMetadata(

134-

view: PluginApprovalPendingView | PluginApprovalResolvedView | PluginApprovalExpiredView,

135-

): { label: string; value: string }[] {

153+

function buildSlackPluginMetadata(view: SlackPluginApprovalView): SlackMetadataItem[] {

136154

return [{ label: "Approval ID", value: view.approvalId }, ...view.metadata];

137155

}

138156139-

function resolveSlackPluginDescription(

140-

view: PluginApprovalPendingView | PluginApprovalResolvedView | PluginApprovalExpiredView,

141-

): string {

157+

function resolveSlackPluginDescription(view: SlackPluginApprovalView): string {

142158

return normalizeOptionalString(view.description) ?? "A plugin action needs your approval.";

143159

}

144160161+

function buildSlackPluginRequestBlocks(view: SlackPluginApprovalView): SlackBlock[] {

162+

return [

163+

{

164+

type: "section",

165+

text: {

166+

type: "mrkdwn",

167+

text: `*Request*\n${truncateSlackMrkdwn(view.title, 2600)}`,

168+

},

169+

},

170+

...buildSlackMetadataContextBlocks(buildSlackPluginMetadata(view)),

171+

];

172+

}

173+145174

function buildSlackExecPendingApprovalText(view: ExecApprovalPendingView): string {

146175

const metadataLines = buildSlackMetadataLines(view.metadata);

147176

const lines = [

@@ -175,7 +204,6 @@ function buildSlackPendingApprovalText(view: PendingApprovalView): string {

175204

}

176205177206

function buildSlackExecPendingApprovalBlocks(view: ExecApprovalPendingView): SlackBlock[] {

178-

const metadataElements = buildSlackMetadataContextElements(view.metadata);

179207

const interactiveBlocks =

180208

resolveSlackReplyBlocks({

181209

text: "",

@@ -196,20 +224,12 @@ function buildSlackExecPendingApprovalBlocks(view: ExecApprovalPendingView): Sla

196224

text: `*Command*\n${buildSlackCodeBlock(truncateSlackMrkdwn(view.commandText, 2600))}`,

197225

},

198226

},

199-

...(metadataElements.length > 0

200-

? [

201-

{

202-

type: "context",

203-

elements: metadataElements,

204-

} satisfies SlackBlock,

205-

]

206-

: []),

227+

...buildSlackMetadataContextBlocks(view.metadata),

207228

...interactiveBlocks,

208229

];

209230

}

210231211232

function buildSlackPluginPendingApprovalBlocks(view: PluginApprovalPendingView): SlackBlock[] {

212-

const metadataElements = buildSlackMetadataContextElements(buildSlackPluginMetadata(view));

213233

const interactiveBlocks =

214234

resolveSlackReplyBlocks({

215235

text: "",

@@ -226,21 +246,7 @@ function buildSlackPluginPendingApprovalBlocks(view: PluginApprovalPendingView):

226246

)}`,

227247

},

228248

},

229-

{

230-

type: "section",

231-

text: {

232-

type: "mrkdwn",

233-

text: `*Request*\n${truncateSlackMrkdwn(view.title, 2600)}`,

234-

},

235-

},

236-

...(metadataElements.length > 0

237-

? [

238-

{

239-

type: "context",

240-

elements: metadataElements,

241-

} satisfies SlackBlock,

242-

]

243-

: []),

249+

...buildSlackPluginRequestBlocks(view),

244250

...interactiveBlocks,

245251

];

246252

}

@@ -307,7 +313,6 @@ function buildSlackExecResolvedBlocks(view: ExecApprovalResolvedView): SlackBloc

307313308314

function buildSlackPluginResolvedBlocks(view: PluginApprovalResolvedView): SlackBlock[] {

309315

const resolvedBy = formatSlackApprover(view.resolvedBy);

310-

const metadataElements = buildSlackMetadataContextElements(buildSlackPluginMetadata(view));

311316

return [

312317

{

313318

type: "section",

@@ -318,21 +323,7 @@ function buildSlackPluginResolvedBlocks(view: PluginApprovalResolvedView): Slack

318323

}`,

319324

},

320325

},

321-

{

322-

type: "section",

323-

text: {

324-

type: "mrkdwn",

325-

text: `*Request*\n${truncateSlackMrkdwn(view.title, 2600)}`,

326-

},

327-

},

328-

...(metadataElements.length > 0

329-

? [

330-

{

331-

type: "context",

332-

elements: metadataElements,

333-

} satisfies SlackBlock,

334-

]

335-

: []),

326+

...buildSlackPluginRequestBlocks(view),

336327

];

337328

}

338329

@@ -390,7 +381,6 @@ function buildSlackExecExpiredBlocks(view: ExecApprovalExpiredView): SlackBlock[

390381

}

391382392383

function buildSlackPluginExpiredBlocks(view: PluginApprovalExpiredView): SlackBlock[] {

393-

const metadataElements = buildSlackMetadataContextElements(buildSlackPluginMetadata(view));

394384

return [

395385

{

396386

type: "section",

@@ -399,21 +389,7 @@ function buildSlackPluginExpiredBlocks(view: PluginApprovalExpiredView): SlackBl

399389

text: "*Plugin approval expired*\nThis approval request expired before it was resolved.",

400390

},

401391

},

402-

{

403-

type: "section",

404-

text: {

405-

type: "mrkdwn",

406-

text: `*Request*\n${truncateSlackMrkdwn(view.title, 2600)}`,

407-

},

408-

},

409-

...(metadataElements.length > 0

410-

? [

411-

{

412-

type: "context",

413-

elements: metadataElements,

414-

} satisfies SlackBlock,

415-

]

416-

: []),

392+

...buildSlackPluginRequestBlocks(view),

417393

];

418394

}

419395