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

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

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
feat: add channel message lifecycle sdk · openclaw/opencl...
steipete · 2026-05-06 · via Recent Commits to openclaw:main

@@ -1,16 +1,25 @@

1-

export type DraftPreviewFinalizerDraft<TId> = {

2-

flush: () => Promise<void>;

3-

id: () => TId | undefined;

4-

seal?: () => Promise<void>;

5-

discardPending?: () => Promise<void>;

6-

clear: () => Promise<void>;

7-

};

1+

import {

2+

deliverFinalizableLivePreview,

3+

type LivePreviewFinalizerDraft,

4+

type LivePreviewFinalizerResultKind,

5+

} from "./message/live.js";

869-

export type DraftPreviewFinalizerResult =

10-

| "normal-delivered"

11-

| "normal-skipped"

12-

| "preview-finalized";

7+

/**

8+

* @deprecated Use `LivePreviewFinalizerDraft` from `openclaw/plugin-sdk/channel-message`.

9+

*/

10+

export type DraftPreviewFinalizerDraft<TId> = LivePreviewFinalizerDraft<TId>;

131112+

/**

13+

* @deprecated Use `LivePreviewFinalizerResult` from `openclaw/plugin-sdk/channel-message`.

14+

*/

15+

export type DraftPreviewFinalizerResult = Exclude<

16+

LivePreviewFinalizerResultKind,

17+

"preview-retained"

18+

>;

19+20+

/**

21+

* @deprecated Use `deliverFinalizableLivePreview` from `openclaw/plugin-sdk/channel-message`.

22+

*/

1423

export async function deliverFinalizableDraftPreview<TPayload, TId, TEdit>(params: {

1524

kind: "tool" | "block" | "final";

1625

payload: TPayload;

@@ -22,49 +31,21 @@ export async function deliverFinalizableDraftPreview<TPayload, TId, TEdit>(param

2231

onNormalDelivered?: () => Promise<void> | void;

2332

logPreviewEditFailure?: (error: unknown) => void;

2433

}): Promise<DraftPreviewFinalizerResult> {

25-

if (params.kind !== "final" || !params.draft) {

26-

const delivered = await params.deliverNormally(params.payload);

27-

if (delivered === false) {

28-

return "normal-skipped";

29-

}

30-

await params.onNormalDelivered?.();

31-

return "normal-delivered";

32-

}

33-34-

const edit = params.buildFinalEdit(params.payload);

35-

if (edit !== undefined) {

36-

await params.draft.flush();

37-

const previewId = params.draft.id();

38-

if (previewId !== undefined) {

39-

await params.draft.seal?.();

40-

try {

41-

await params.editFinal(previewId, edit);

42-

await params.onPreviewFinalized?.(previewId);

43-

return "preview-finalized";

44-

} catch (err) {

45-

params.logPreviewEditFailure?.(err);

46-

}

47-

}

48-

}

49-50-

if (params.draft.discardPending) {

51-

await params.draft.discardPending();

52-

} else {

53-

await params.draft.clear();

54-

}

55-56-

let delivered = false;

57-

try {

58-

const result = await params.deliverNormally(params.payload);

59-

delivered = result !== false;

60-

if (delivered) {

61-

await params.onNormalDelivered?.();

62-

}

63-

} finally {

64-

if (delivered) {

65-

await params.draft.clear();

66-

}

67-

}

34+

const result = await deliverFinalizableLivePreview({

35+

kind: params.kind,

36+

payload: params.payload,

37+

...(params.draft ? { draft: params.draft } : {}),

38+

buildFinalEdit: params.buildFinalEdit,

39+

editFinal: params.editFinal,

40+

deliverNormally: params.deliverNormally,

41+

onPreviewFinalized: async (id) => {

42+

await params.onPreviewFinalized?.(id);

43+

},

44+

...(params.onNormalDelivered ? { onNormalDelivered: params.onNormalDelivered } : {}),

45+

...(params.logPreviewEditFailure

46+

? { logPreviewEditFailure: params.logPreviewEditFailure }

47+

: {}),

48+

});

684969-

return delivered ? "normal-delivered" : "normal-skipped";

50+

return result.kind === "preview-retained" ? "normal-skipped" : result.kind;

7051

}