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

推荐订阅源

Vercel News
Vercel News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
有赞技术团队
有赞技术团队
罗磊的独立博客
博客园 - 叶小钗
Jina AI
Jina AI
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
量子位
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 聂微东
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
小众软件
小众软件
宝玉的分享
宝玉的分享

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
tasks: add detached runtime plugin registration contract ...
mbelinky · 2026-04-19 · via Recent Commits to openclaw:main

@@ -11,6 +11,12 @@ import {

1111

triggerInternalHook,

1212

} from "../hooks/internal-hooks.js";

1313

import { emitDiagnosticEvent } from "../infra/diagnostic-events.js";

14+

import {

15+

clearDetachedTaskLifecycleRuntimeRegistration,

16+

getDetachedTaskLifecycleRuntimeRegistration,

17+

registerDetachedTaskLifecycleRuntime,

18+

type DetachedTaskLifecycleRuntime,

19+

} from "../tasks/detached-task-runtime-state.js";

1420

import { withEnv } from "../test-utils/env.js";

1521

import { clearPluginCommands, getPluginCommandSpecs } from "./command-registry-state.js";

1622

import { getGlobalHookRunner, resetGlobalHookRunner } from "./hook-runner-global.js";

@@ -65,6 +71,26 @@ import {

6571

import type { PluginSdkResolutionPreference } from "./sdk-alias.js";

6672

let cachedBundledTelegramDir = "";

6773

let cachedBundledMemoryDir = "";

74+75+

function createDetachedTaskRuntimeStub(id: string): DetachedTaskLifecycleRuntime {

76+

const fail = (name: string): never => {

77+

throw new Error(`detached runtime ${id} should not execute ${name} in this test`);

78+

};

79+

return {

80+

createQueuedTaskRun: () => fail("createQueuedTaskRun"),

81+

createRunningTaskRun: () => fail("createRunningTaskRun"),

82+

startTaskRunByRunId: () => fail("startTaskRunByRunId"),

83+

recordTaskRunProgressByRunId: () => fail("recordTaskRunProgressByRunId"),

84+

completeTaskRunByRunId: () => fail("completeTaskRunByRunId"),

85+

failTaskRunByRunId: () => fail("failTaskRunByRunId"),

86+

setDetachedTaskDeliveryStatusByRunId: () => fail("setDetachedTaskDeliveryStatusByRunId"),

87+

cancelDetachedTaskRunById: async () => ({

88+

found: true,

89+

cancelled: true,

90+

}),

91+

};

92+

}

93+6894

const BUNDLED_TELEGRAM_PLUGIN_BODY = `module.exports = {

6995

id: "telegram",

7096

register(api) {

@@ -2025,6 +2051,155 @@ module.exports = { id: "throws-after-import", register() {} };`,

20252051

expect(listMemoryEmbeddingProviders()).toEqual([]);

20262052

});

202720532054+

it("does not replace the active detached task runtime during non-activating loads", () => {

2055+

useNoBundledPlugins();

2056+

const activeRuntime = createDetachedTaskRuntimeStub("active");

2057+

registerDetachedTaskLifecycleRuntime("active-runtime", activeRuntime);

2058+2059+

const plugin = writePlugin({

2060+

id: "snapshot-detached-runtime",

2061+

filename: "snapshot-detached-runtime.cjs",

2062+

body: `module.exports = {

2063+

id: "snapshot-detached-runtime",

2064+

register(api) {

2065+

api.registerDetachedTaskRuntime({

2066+

createQueuedTaskRun() { throw new Error("snapshot createQueuedTaskRun should not run"); },

2067+

createRunningTaskRun() { throw new Error("snapshot createRunningTaskRun should not run"); },

2068+

startTaskRunByRunId() { throw new Error("snapshot startTaskRunByRunId should not run"); },

2069+

recordTaskRunProgressByRunId() { throw new Error("snapshot recordTaskRunProgressByRunId should not run"); },

2070+

completeTaskRunByRunId() { throw new Error("snapshot completeTaskRunByRunId should not run"); },

2071+

failTaskRunByRunId() { throw new Error("snapshot failTaskRunByRunId should not run"); },

2072+

setDetachedTaskDeliveryStatusByRunId() { throw new Error("snapshot setDetachedTaskDeliveryStatusByRunId should not run"); },

2073+

async cancelDetachedTaskRunById() { return { found: true, cancelled: true }; },

2074+

});

2075+

},

2076+

};`,

2077+

});

2078+2079+

const scoped = loadOpenClawPlugins({

2080+

cache: false,

2081+

activate: false,

2082+

workspaceDir: plugin.dir,

2083+

config: {

2084+

plugins: {

2085+

load: { paths: [plugin.file] },

2086+

allow: ["snapshot-detached-runtime"],

2087+

},

2088+

},

2089+

onlyPluginIds: ["snapshot-detached-runtime"],

2090+

});

2091+2092+

expect(scoped.plugins.find((entry) => entry.id === "snapshot-detached-runtime")?.status).toBe(

2093+

"loaded",

2094+

);

2095+

expect(getDetachedTaskLifecycleRuntimeRegistration()).toMatchObject({

2096+

pluginId: "active-runtime",

2097+

runtime: activeRuntime,

2098+

});

2099+

});

2100+2101+

it("clears newly-registered detached task runtimes when plugin register fails", () => {

2102+

useNoBundledPlugins();

2103+

const plugin = writePlugin({

2104+

id: "failing-detached-runtime",

2105+

filename: "failing-detached-runtime.cjs",

2106+

body: `module.exports = {

2107+

id: "failing-detached-runtime",

2108+

register(api) {

2109+

api.registerDetachedTaskRuntime({

2110+

createQueuedTaskRun() { throw new Error("failing createQueuedTaskRun should not run"); },

2111+

createRunningTaskRun() { throw new Error("failing createRunningTaskRun should not run"); },

2112+

startTaskRunByRunId() { throw new Error("failing startTaskRunByRunId should not run"); },

2113+

recordTaskRunProgressByRunId() { throw new Error("failing recordTaskRunProgressByRunId should not run"); },

2114+

completeTaskRunByRunId() { throw new Error("failing completeTaskRunByRunId should not run"); },

2115+

failTaskRunByRunId() { throw new Error("failing failTaskRunByRunId should not run"); },

2116+

setDetachedTaskDeliveryStatusByRunId() { throw new Error("failing setDetachedTaskDeliveryStatusByRunId should not run"); },

2117+

async cancelDetachedTaskRunById() { return { found: true, cancelled: true }; },

2118+

});

2119+

throw new Error("detached runtime register failed");

2120+

},

2121+

};`,

2122+

});

2123+2124+

const registry = loadOpenClawPlugins({

2125+

cache: false,

2126+

workspaceDir: plugin.dir,

2127+

config: {

2128+

plugins: {

2129+

load: { paths: [plugin.file] },

2130+

allow: ["failing-detached-runtime"],

2131+

},

2132+

},

2133+

onlyPluginIds: ["failing-detached-runtime"],

2134+

});

2135+2136+

expect(registry.plugins.find((entry) => entry.id === "failing-detached-runtime")?.status).toBe(

2137+

"error",

2138+

);

2139+

expect(getDetachedTaskLifecycleRuntimeRegistration()).toBeUndefined();

2140+

});

2141+2142+

it("restores cached detached task runtime registrations on cache hits", () => {

2143+

useNoBundledPlugins();

2144+

const plugin = writePlugin({

2145+

id: "cached-detached-runtime",

2146+

filename: "cached-detached-runtime.cjs",

2147+

body: `module.exports = {

2148+

id: "cached-detached-runtime",

2149+

register(api) {

2150+

api.registerDetachedTaskRuntime({

2151+

createQueuedTaskRun() { throw new Error("cached createQueuedTaskRun should not run"); },

2152+

createRunningTaskRun() { throw new Error("cached createRunningTaskRun should not run"); },

2153+

startTaskRunByRunId() { throw new Error("cached startTaskRunByRunId should not run"); },

2154+

recordTaskRunProgressByRunId() { throw new Error("cached recordTaskRunProgressByRunId should not run"); },

2155+

completeTaskRunByRunId() { throw new Error("cached completeTaskRunByRunId should not run"); },

2156+

failTaskRunByRunId() { throw new Error("cached failTaskRunByRunId should not run"); },

2157+

setDetachedTaskDeliveryStatusByRunId() { throw new Error("cached setDetachedTaskDeliveryStatusByRunId should not run"); },

2158+

async cancelDetachedTaskRunById() { return { found: true, cancelled: true }; },

2159+

});

2160+

},

2161+

};`,

2162+

});

2163+2164+

const loadOptions = {

2165+

workspaceDir: plugin.dir,

2166+

config: {

2167+

plugins: {

2168+

load: { paths: [plugin.file] },

2169+

allow: ["cached-detached-runtime"],

2170+

},

2171+

},

2172+

onlyPluginIds: ["cached-detached-runtime"],

2173+

} satisfies Parameters<typeof loadOpenClawPlugins>[0];

2174+2175+

loadOpenClawPlugins(loadOptions);

2176+

expect(getDetachedTaskLifecycleRuntimeRegistration()?.pluginId).toBe("cached-detached-runtime");

2177+2178+

clearDetachedTaskLifecycleRuntimeRegistration();

2179+

expect(getDetachedTaskLifecycleRuntimeRegistration()).toBeUndefined();

2180+2181+

loadOpenClawPlugins(loadOptions);

2182+2183+

expect(getDetachedTaskLifecycleRuntimeRegistration()?.pluginId).toBe("cached-detached-runtime");

2184+

});

2185+2186+

it("clears stale detached task runtime registrations on active reloads when no plugin re-registers one", () => {

2187+

useNoBundledPlugins();

2188+

registerDetachedTaskLifecycleRuntime("stale-runtime", createDetachedTaskRuntimeStub("stale"));

2189+2190+

loadOpenClawPlugins({

2191+

cache: false,

2192+

config: {

2193+

plugins: {

2194+

load: { paths: [] },

2195+

allow: [],

2196+

},

2197+

},

2198+

});

2199+2200+

expect(getDetachedTaskLifecycleRuntimeRegistration()).toBeUndefined();

2201+

});

2202+20282203

it("restores cached memory capability public artifacts on cache hits", async () => {

20292204

useNoBundledPlugins();

20302205

const workspaceDir = makeTempDir();