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

推荐订阅源

雷峰网
雷峰网
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
美团技术团队
小众软件
小众软件
Jina AI
Jina AI
S
SegmentFault 最新的问题
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(media): remove stale completion wake wrappers · ...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -19,8 +19,8 @@ vi.mock("../subagent-announce-delivery.js", () => announceDeliveryMocks);

1919
2020

const {

2121

createImageGenerationTaskRun,

22+

imageGenerationTaskLifecycle,

2223

recordImageGenerationTaskProgress,

23-

wakeImageGenerationTaskCompletion,

2424

} = await import("./image-generate-background.js");

2525
2626

describe("image generate background helpers", () => {

@@ -87,7 +87,7 @@ describe("image generate background helpers", () => {

8787

path: "direct",

8888

});

8989
90-

await wakeImageGenerationTaskCompletion({

90+

await imageGenerationTaskLifecycle.wakeTaskCompletion({

9191

...createMediaCompletionFixture({

9292

runId: "tool:image_generate:abc",

9393

taskLabel: "small watercolor robot",

@@ -122,7 +122,7 @@ describe("image generate background helpers", () => {

122122

result: "provider failed",

123123

});

124124
125-

await wakeImageGenerationTaskCompletion({

125+

await imageGenerationTaskLifecycle.wakeTaskCompletion({

126126

...completion,

127127

status: "error",

128128

statusLabel: "failed",

Original file line numberDiff line numberDiff line change

@@ -3,8 +3,6 @@

33

*

44

* Binds shared detached media-task lifecycle behavior to image_generate labels and completion messages.

55

*/

6-

import type { OpenClawConfig } from "../../config/types.openclaw.js";

7-

import type { AgentGeneratedAttachment } from "../generated-attachments.js";

86

import { IMAGE_GENERATION_TASK_KIND } from "../image-generation-task-status.js";

97

import {

108

createMediaGenerationTaskLifecycle,

@@ -46,17 +44,3 @@ export const completeImageGenerationTaskRun = (

4644

export const failImageGenerationTaskRun = (

4745

...params: Parameters<typeof imageGenerationTaskLifecycle.failTaskRun>

4846

) => imageGenerationTaskLifecycle.failTaskRun(...params);

49-
50-

/** Wakes the requester session with image generation completion or failure. */

51-

export async function wakeImageGenerationTaskCompletion(params: {

52-

config?: OpenClawConfig;

53-

handle: ImageGenerationTaskHandle | null;

54-

status: "ok" | "error";

55-

statusLabel: string;

56-

result: string;

57-

attachments?: AgentGeneratedAttachment[];

58-

mediaUrls?: string[];

59-

statsLine?: string;

60-

}) {

61-

return await imageGenerationTaskLifecycle.wakeTaskCompletion(params);

62-

}

Original file line numberDiff line numberDiff line change

@@ -19,8 +19,8 @@ vi.mock("../subagent-announce-delivery.js", () => announceDeliveryMocks);

1919
2020

const {

2121

createMusicGenerationTaskRun,

22+

musicGenerationTaskLifecycle,

2223

recordMusicGenerationTaskProgress,

23-

wakeMusicGenerationTaskCompletion,

2424

} = await import("./music-generate-background.js");

2525
2626

function getDeliveredInternalEvents(): Array<Record<string, unknown>> {

@@ -106,7 +106,7 @@ describe("music generate background helpers", () => {

106106

path: "direct",

107107

});

108108
109-

await wakeMusicGenerationTaskCompletion({

109+

await musicGenerationTaskLifecycle.wakeTaskCompletion({

110110

...createMediaCompletionFixture({

111111

runId: "tool:music_generate:abc",

112112

taskLabel: "night-drive synthwave",

@@ -131,7 +131,7 @@ describe("music generate background helpers", () => {

131131

mediaUrls: ["/tmp/generated-night-drive.mp3"],

132132

});

133133
134-

await wakeMusicGenerationTaskCompletion({

134+

await musicGenerationTaskLifecycle.wakeTaskCompletion({

135135

...completion,

136136

handle: {

137137

...completion.handle,

@@ -156,7 +156,7 @@ describe("music generate background helpers", () => {

156156

result: "provider failed",

157157

});

158158
159-

await wakeMusicGenerationTaskCompletion({

159+

await musicGenerationTaskLifecycle.wakeTaskCompletion({

160160

...completion,

161161

status: "error",

162162

statusLabel: "failed",

@@ -185,7 +185,7 @@ describe("music generate background helpers", () => {

185185

mediaUrls: ["/tmp/generated-night-drive.mp3"],

186186

});

187187
188-

await wakeMusicGenerationTaskCompletion({

188+

await musicGenerationTaskLifecycle.wakeTaskCompletion({

189189

...completion,

190190

handle: {

191191

...completion.handle,

@@ -208,7 +208,7 @@ describe("music generate background helpers", () => {

208208

path: "direct",

209209

});

210210
211-

await wakeMusicGenerationTaskCompletion({

211+

await musicGenerationTaskLifecycle.wakeTaskCompletion({

212212

...createMediaCompletionFixture({

213213

directSend: true,

214214

runId: "tool:music_generate:abc",

Original file line numberDiff line numberDiff line change

@@ -3,8 +3,6 @@

33

*

44

* Binds shared detached media-task lifecycle behavior to music_generate labels and completion messages.

55

*/

6-

import type { OpenClawConfig } from "../../config/types.openclaw.js";

7-

import type { AgentGeneratedAttachment } from "../generated-attachments.js";

86

import { MUSIC_GENERATION_TASK_KIND } from "../music-generation-task-status.js";

97

import {

108

createMediaGenerationTaskLifecycle,

@@ -45,17 +43,3 @@ export const completeMusicGenerationTaskRun = (

4543

export const failMusicGenerationTaskRun = (

4644

...params: Parameters<typeof musicGenerationTaskLifecycle.failTaskRun>

4745

) => musicGenerationTaskLifecycle.failTaskRun(...params);

48-
49-

/** Wakes the waiting session turn with final music-generation output. */

50-

export async function wakeMusicGenerationTaskCompletion(params: {

51-

config?: OpenClawConfig;

52-

handle: MusicGenerationTaskHandle | null;

53-

status: "ok" | "error";

54-

statusLabel: string;

55-

result: string;

56-

attachments?: AgentGeneratedAttachment[];

57-

mediaUrls?: string[];

58-

statsLine?: string;

59-

}) {

60-

return await musicGenerationTaskLifecycle.wakeTaskCompletion(params);

61-

}

Original file line numberDiff line numberDiff line change

@@ -58,9 +58,7 @@ const musicGenerateBackgroundMocks = vi.hoisted(() => ({

5858

failTaskRun: (

5959

params: Parameters<typeof musicGenerateBackground.failMusicGenerationTaskRun>[0],

6060

) => musicGenerateBackgroundMocks.failMusicGenerationTaskRun(params),

61-

wakeTaskCompletion: (

62-

params: Parameters<typeof musicGenerateBackground.wakeMusicGenerationTaskCompletion>[0],

63-

) => musicGenerateBackgroundMocks.wakeMusicGenerationTaskCompletion(params),

61+

wakeTaskCompletion: vi.fn(),

6462

},

6563

completeMusicGenerationTaskRun: vi.fn((params) => {

6664

if (!params.handle) {

@@ -119,7 +117,6 @@ const musicGenerateBackgroundMocks = vi.hoisted(() => ({

119117

eventSummary: params.eventSummary,

120118

});

121119

}),

122-

wakeMusicGenerationTaskCompletion: vi.fn(),

123120

}));

124121
125122

vi.mock("../../config/config.js", () => configMocks);

@@ -179,8 +176,10 @@ function resetMusicGenerateMocks() {

179176

taskExecutorMocks.completeTaskRunByRunId.mockReset();

180177

taskExecutorMocks.failTaskRunByRunId.mockReset();

181178

taskExecutorMocks.recordTaskRunProgressByRunId.mockReset();

182-

musicGenerateBackgroundMocks.wakeMusicGenerationTaskCompletion.mockReset();

183-

musicGenerateBackgroundMocks.wakeMusicGenerationTaskCompletion.mockResolvedValue(true);

179+

musicGenerateBackgroundMocks.musicGenerationTaskLifecycle.wakeTaskCompletion.mockReset();

180+

musicGenerateBackgroundMocks.musicGenerationTaskLifecycle.wakeTaskCompletion.mockResolvedValue(

181+

true,

182+

);

184183

}

185184
186185

function detailsOf(result: { details?: unknown }): Record<string, unknown> {

@@ -218,7 +217,9 @@ function taskCompleteCall(callIndex = 0): Record<string, unknown> {

218217
219218

function wakeCompletionCall(callIndex = 0): Record<string, unknown> {

220219

const call =

221-

musicGenerateBackgroundMocks.wakeMusicGenerationTaskCompletion.mock.calls[callIndex]?.[0];

220+

musicGenerateBackgroundMocks.musicGenerationTaskLifecycle.wakeTaskCompletion.mock.calls[

221+

callIndex

222+

]?.[0];

222223

if (!call || typeof call !== "object") {

223224

throw new Error(`expected wake completion call ${callIndex}`);

224225

}

@@ -558,7 +559,7 @@ describe("createMusicGenerateTool", () => {

558559

createdAt: Date.now(),

559560

});

560561

const wakeSpy = vi

561-

.spyOn(musicGenerateBackground, "wakeMusicGenerationTaskCompletion")

562+

.spyOn(musicGenerateBackground.musicGenerationTaskLifecycle, "wakeTaskCompletion")

562563

.mockResolvedValue(true);

563564

vi.spyOn(musicGenerationRuntime, "generateMusic").mockResolvedValue({

564565

provider: "google",

Original file line numberDiff line numberDiff line change

@@ -22,7 +22,7 @@ const {

2222

createVideoGenerationTaskRun,

2323

failVideoGenerationTaskRun,

2424

recordVideoGenerationTaskProgress,

25-

wakeVideoGenerationTaskCompletion,

25+

videoGenerationTaskLifecycle,

2626

} = await import("./video-generate-background.js");

2727

const { withMediaGenerationTaskKeepalive } = await import("./media-generate-background-shared.js");

2828

@@ -165,7 +165,7 @@ describe("video generate background helpers", () => {

165165

path: "direct",

166166

});

167167
168-

await wakeVideoGenerationTaskCompletion({

168+

await videoGenerationTaskLifecycle.wakeTaskCompletion({

169169

...createMediaCompletionFixture({

170170

runId: "tool:video_generate:abc",

171171

taskLabel: "friendly lobster surfing",

@@ -184,7 +184,7 @@ describe("video generate background helpers", () => {

184184

path: "direct",

185185

});

186186
187-

await wakeVideoGenerationTaskCompletion({

187+

await videoGenerationTaskLifecycle.wakeTaskCompletion({

188188

...createMediaCompletionFixture({

189189

directSend: true,

190190

runId: "tool:video_generate:abc",

@@ -215,7 +215,7 @@ describe("video generate background helpers", () => {

215215

error: "completion agent did not deliver generated media",

216216

});

217217
218-

await wakeVideoGenerationTaskCompletion({

218+

await videoGenerationTaskLifecycle.wakeTaskCompletion({

219219

...createMediaCompletionFixture({

220220

runId: "tool:video_generate:abc",

221221

taskLabel: "friendly lobster surfing",

@@ -249,7 +249,7 @@ describe("video generate background helpers", () => {

249249

path: "steered",

250250

});

251251
252-

await wakeVideoGenerationTaskCompletion({

252+

await videoGenerationTaskLifecycle.wakeTaskCompletion({

253253

...createMediaCompletionFixture({

254254

runId: "tool:video_generate:abc",

255255

taskLabel: "friendly lobster surfing",

Original file line numberDiff line numberDiff line change

@@ -3,8 +3,6 @@

33

*

44

* Specializes the shared media background runner with video status text and completion metadata.

55

*/

6-

import type { OpenClawConfig } from "../../config/types.openclaw.js";

7-

import type { AgentGeneratedAttachment } from "../generated-attachments.js";

86

import { VIDEO_GENERATION_TASK_KIND } from "../video-generation-task-status.js";

97

import {

108

createMediaGenerationTaskLifecycle,

@@ -45,17 +43,3 @@ export const completeVideoGenerationTaskRun = (

4543

export const failVideoGenerationTaskRun = (

4644

...params: Parameters<typeof videoGenerationTaskLifecycle.failTaskRun>

4745

) => videoGenerationTaskLifecycle.failTaskRun(...params);

48-
49-

/** Wakes the waiting session turn with final video-generation output. */

50-

export async function wakeVideoGenerationTaskCompletion(params: {

51-

config?: OpenClawConfig;

52-

handle: VideoGenerationTaskHandle | null;

53-

status: "ok" | "error";

54-

statusLabel: string;

55-

result: string;

56-

attachments?: AgentGeneratedAttachment[];

57-

mediaUrls?: string[];

58-

statsLine?: string;

59-

}) {

60-

return await videoGenerationTaskLifecycle.wakeTaskCompletion(params);

61-

}