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

推荐订阅源

A
About on SuperTechFans
G
Google Developers Blog
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
P
Proofpoint News Feed
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
The Cloudflare Blog
博客园_首页
美团技术团队
大猫的无限游戏
大猫的无限游戏
B
Blog
IT之家
IT之家
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Check Point 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(slack): route plugin modal submissions · openclaw/ope...
steipete · 2026-05-15 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ Docs: https://docs.openclaw.ai

1414

- Control UI/WebChat: focus the composer when users click the visible input chrome and restore larger, labeled desktop composer controls while preserving compact mobile taps. Fixes #45656. Thanks @BunsDev.

1515

- System events: keep owner downgrades in structured metadata while rendering queued prompt text as plain `System:` lines, preserving least-privilege wakeups without prompt-visible trust labels. (#82067)

1616

- Providers/Xiaomi: preserve MiMo `reasoning_content` on multi-turn tool-call replay, including custom Xiaomi-compatible proxy routes, so follow-up turns no longer fail with `400 Param Incorrect`. Fixes #81419. (#81589) Thanks @lovelefeng-glitch and @jimdawdy-hub.

17+

- Slack/plugins: route plugin-owned modal `view_submission` and `view_closed` events through Slack interactive handlers before compacting the agent-visible system event, so plugins can persist full submitted form state while the transcript stays compact. Fixes #82102. Thanks @shannon0430.

1718

- Memory search: stop using chokidar write-stability polling for memory and QMD watchers so large Markdown extraPath trees no longer build up regular file descriptors; changed files now settle through the existing debounced sync queue. Fixes #77327 and #78224. (#81802) Thanks @frankekn, @loyur, and @JanPlessow.

1819
1920

## 2026.5.14

Original file line numberDiff line numberDiff line change

@@ -1178,6 +1178,27 @@ Notes:

11781178

- The interactive callback values are OpenClaw-generated opaque tokens, not raw agent-authored values.

11791179

- If generated interactive blocks would exceed Slack Block Kit limits, OpenClaw falls back to the original text reply instead of sending an invalid blocks payload.

11801180
1181+

### Plugin-owned modal submissions

1182+
1183+

Slack plugins that register an interactive handler can also receive modal

1184+

`view_submission` and `view_closed` lifecycle events before OpenClaw compacts

1185+

the payload for the agent-visible system event. Use one of these routing

1186+

patterns when opening a Slack modal:

1187+
1188+

- Set `callback_id` to `openclaw:<namespace>:<payload>`.

1189+

- Or keep an existing `callback_id` and put `pluginInteractiveData:

1190+

"<namespace>:<payload>"` in the modal `private_metadata`.

1191+
1192+

The handler receives `ctx.interaction.kind` as `view_submission` or

1193+

`view_closed`, normalized `inputs`, and the full raw `stateValues` object from

1194+

Slack. Callback-id-only routing is enough to invoke the plugin handler; include

1195+

the existing modal `private_metadata` user/session routing fields when the

1196+

modal should also produce an agent-visible system event. The agent receives a

1197+

compact, redacted `Slack interaction: ...` system event. If the handler returns

1198+

`systemEvent.summary`, `systemEvent.reference`, or `systemEvent.data`, those

1199+

fields are included in that compact event so the agent can reference

1200+

plugin-owned storage without seeing the complete form payload.

1201+
11811202

## Exec approvals in Slack

11821203
11831204

Slack can act as a native approval client with interactive buttons and interactions, instead of falling back to the Web UI or terminal.

Original file line numberDiff line numberDiff line change

@@ -105,6 +105,7 @@ describe("parseSlackModalPrivateMetadata", () => {

105105

channelId: "D123",

106106

channelType: "im",

107107

userId: "U123",

108+

pluginInteractiveData: "dean.contract:confirm",

108109

ignored: "x",

109110

}),

110111

),

@@ -113,6 +114,7 @@ describe("parseSlackModalPrivateMetadata", () => {

113114

channelId: "D123",

114115

channelType: "im",

115116

userId: "U123",

117+

pluginInteractiveData: "dean.contract:confirm",

116118

});

117119

});

118120

});

@@ -126,12 +128,14 @@ describe("encodeSlackModalPrivateMetadata", () => {

126128

channelId: "",

127129

channelType: "im",

128130

userId: "U123",

131+

pluginInteractiveData: "dean.contract:confirm",

129132

}),

130133

),

131134

).toEqual({

132135

sessionKey: "agent:main:slack:channel:C1",

133136

channelType: "im",

134137

userId: "U123",

138+

pluginInteractiveData: "dean.contract:confirm",

135139

});

136140

});

137141
Original file line numberDiff line numberDiff line change

@@ -6,6 +6,49 @@ import {

66

type PluginConversationBindingRequestResult,

77

type PluginInteractiveRegistration,

88

} from "openclaw/plugin-sdk/plugin-runtime";

9+

import type { ModalInputSummary } from "./monitor/events/interactions.modal.js";

10+
11+

export type SlackInteractiveHandlerResult = {

12+

handled?: boolean;

13+

systemEvent?: {

14+

summary?: string;

15+

reference?: string;

16+

data?: Record<string, unknown>;

17+

};

18+

} | void;

19+
20+

type SlackBlockInteractivePayload = {

21+

kind: "button" | "select";

22+

data: string;

23+

namespace: string;

24+

payload: string;

25+

actionId: string;

26+

blockId?: string;

27+

messageTs?: string;

28+

threadTs?: string;

29+

value?: string;

30+

selectedValues?: string[];

31+

selectedLabels?: string[];

32+

triggerId?: string;

33+

responseUrl?: string;

34+

};

35+
36+

type SlackModalInteractivePayload = {

37+

kind: "view_submission" | "view_closed";

38+

data: string;

39+

namespace: string;

40+

payload: string;

41+

callbackId: string;

42+

viewId?: string;

43+

rootViewId?: string;

44+

previousViewId?: string;

45+

externalId?: string;

46+

isStackedView?: boolean;

47+

isCleared?: boolean;

48+

inputs: ModalInputSummary[];

49+

stateValues?: unknown;

50+

triggerId?: string;

51+

};

952
1053

export type SlackInteractiveHandlerContext = {

1154

channel: "slack";

@@ -19,21 +62,7 @@ export type SlackInteractiveHandlerContext = {

1962

auth: {

2063

isAuthorizedSender: boolean;

2164

};

22-

interaction: {

23-

kind: "button" | "select";

24-

data: string;

25-

namespace: string;

26-

payload: string;

27-

actionId: string;

28-

blockId?: string;

29-

messageTs?: string;

30-

threadTs?: string;

31-

value?: string;

32-

selectedValues?: string[];

33-

selectedLabels?: string[];

34-

triggerId?: string;

35-

responseUrl?: string;

36-

};

65+

interaction: SlackBlockInteractivePayload | SlackModalInteractivePayload;

3766

respond: {

3867

acknowledge: () => Promise<void>;

3968

reply: (params: { text: string; responseType?: "ephemeral" | "in_channel" }) => Promise<void>;

@@ -52,7 +81,8 @@ export type SlackInteractiveHandlerContext = {

5281
5382

export type SlackInteractiveHandlerRegistration = PluginInteractiveRegistration<

5483

SlackInteractiveHandlerContext,

55-

"slack"

84+

"slack",

85+

SlackInteractiveHandlerResult

5686

>;

5787
5888

type SlackInteractiveDispatchContext = Omit<

@@ -64,10 +94,9 @@ type SlackInteractiveDispatchContext = Omit<

6494

| "detachConversationBinding"

6595

| "getCurrentConversationBinding"

6696

> & {

67-

interaction: Omit<

68-

SlackInteractiveHandlerContext["interaction"],

69-

"data" | "namespace" | "payload"

70-

>;

97+

interaction:

98+

| Omit<SlackBlockInteractivePayload, "data" | "namespace" | "payload">

99+

| Omit<SlackModalInteractivePayload, "data" | "namespace" | "payload">;

71100

};

72101
73102

export async function dispatchSlackPluginInteractiveHandler(params: {

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ type SlackModalPrivateMetadata = {

55

channelId?: string;

66

channelType?: string;

77

userId?: string;

8+

pluginInteractiveData?: string;

89

};

910
1011

const SLACK_PRIVATE_METADATA_MAX = 3000;

@@ -20,6 +21,7 @@ export function parseSlackModalPrivateMetadata(raw: unknown): SlackModalPrivateM

2021

channelId: normalizeOptionalString(parsed.channelId),

2122

channelType: normalizeOptionalString(parsed.channelType),

2223

userId: normalizeOptionalString(parsed.userId),

24+

pluginInteractiveData: normalizeOptionalString(parsed.pluginInteractiveData),

2325

};

2426

} catch {

2527

return {};

@@ -32,6 +34,7 @@ export function encodeSlackModalPrivateMetadata(input: SlackModalPrivateMetadata

3234

...(input.channelId ? { channelId: input.channelId } : {}),

3335

...(input.channelType ? { channelType: input.channelType } : {}),

3436

...(input.userId ? { userId: input.userId } : {}),

37+

...(input.pluginInteractiveData ? { pluginInteractiveData: input.pluginInteractiveData } : {}),

3538

};

3639

const encoded = JSON.stringify(payload);

3740

if (encoded.length > SLACK_PRIVATE_METADATA_MAX) {