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

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
博客园 - Franky
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
雷峰网
雷峰网
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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(active-memory): skip sub-agent gracefully when no mem...
hclsys · 2026-05-05 · via Recent Commits to openclaw:main

@@ -125,6 +125,23 @@ describe("active-memory plugin", () => {

125125

"utf8",

126126

);

127127

};

128+

const makeMemoryToolAllowlistError = (

129+

reason: string,

130+

sources = "runtime toolsAllow: memory_recall, memory_search, memory_get",

131+

) =>

132+

new Error(

133+

`No callable tools remain after resolving explicit tool allowlist ` +

134+

`(${sources}); ${reason}. ` +

135+

`Fix the allowlist or enable the plugin that registers the requested tool.`,

136+

);

137+

const hasDebugLine = (needle: string) =>

138+

vi

139+

.mocked(api.logger.debug)

140+

.mock.calls.some((call: unknown[]) => String(call[0]).includes(needle));

141+

const hasWarnLine = (needle: string) =>

142+

vi

143+

.mocked(api.logger.warn)

144+

.mock.calls.some((call: unknown[]) => String(call[0]).includes(needle));

128145129146

beforeEach(async () => {

130147

vi.clearAllMocks();

@@ -1646,6 +1663,133 @@ describe("active-memory plugin", () => {

16461663

expect(result).toBeUndefined();

16471664

});

164816651666+

it("skips the recall subagent when no registered memory tools match", async () => {

1667+

const sessionKey = "agent:main:missing-memory-tools";

1668+

hoisted.sessionStore[sessionKey] = {

1669+

sessionId: "s-missing-memory-tools",

1670+

updatedAt: 0,

1671+

};

1672+

const error = makeMemoryToolAllowlistError("no registered tools matched");

1673+

expect(__testing.isMissingRegisteredMemoryToolsError(error)).toBe(true);

1674+

runEmbeddedPiAgent.mockRejectedValueOnce(error);

1675+1676+

const result = await hooks.before_prompt_build(

1677+

{ prompt: "what wings should i order? missing memory tools", messages: [] },

1678+

{ agentId: "main", trigger: "user", sessionKey, messageProvider: "webchat" },

1679+

);

1680+1681+

expect(result).toBeUndefined();

1682+

expect(hasDebugLine("no memory tools registered")).toBe(true);

1683+

expect(hasWarnLine("No callable tools remain")).toBe(false);

1684+

const lines = getActiveMemoryLines(sessionKey);

1685+

expect(lines).toEqual([expect.stringContaining("🧩 Active Memory: status=empty")]);

1686+

expect(lines.join("\n")).not.toContain("status=unavailable");

1687+

});

1688+1689+

it("skips missing memory tools when the allowlist error includes inherited sources", async () => {

1690+

const sessionKey = "agent:main:missing-memory-tools-with-policy-source";

1691+

hoisted.sessionStore[sessionKey] = {

1692+

sessionId: "s-missing-memory-tools-with-policy-source",

1693+

updatedAt: 0,

1694+

};

1695+

const error = makeMemoryToolAllowlistError(

1696+

"no registered tools matched",

1697+

"tools.allow: *, lobster; runtime toolsAllow: memory_recall, memory_search, memory_get",

1698+

);

1699+

expect(__testing.isMissingRegisteredMemoryToolsError(error)).toBe(true);

1700+

runEmbeddedPiAgent.mockRejectedValueOnce(error);

1701+1702+

const result = await hooks.before_prompt_build(

1703+

{ prompt: "what wings should i order? missing memory tools with policy", messages: [] },

1704+

{ agentId: "main", trigger: "user", sessionKey, messageProvider: "webchat" },

1705+

);

1706+1707+

expect(result).toBeUndefined();

1708+

expect(hasDebugLine("no memory tools registered")).toBe(true);

1709+

expect(hasWarnLine("No callable tools remain")).toBe(false);

1710+

expect(getActiveMemoryLines(sessionKey)).toEqual([

1711+

expect.stringContaining("🧩 Active Memory: status=empty"),

1712+

]);

1713+

});

1714+1715+

it("keeps memory-tool allowlist errors visible when upstream policy can filter memory tools", async () => {

1716+

const sessionKey = "agent:main:memory-tools-filtered-by-policy";

1717+

hoisted.sessionStore[sessionKey] = {

1718+

sessionId: "s-memory-tools-filtered-by-policy",

1719+

updatedAt: 0,

1720+

};

1721+

const error = makeMemoryToolAllowlistError(

1722+

"no registered tools matched",

1723+

"tools.allow: read, exec; runtime toolsAllow: memory_recall, memory_search, memory_get",

1724+

);

1725+

expect(__testing.isMissingRegisteredMemoryToolsError(error)).toBe(false);

1726+

runEmbeddedPiAgent.mockRejectedValueOnce(error);

1727+1728+

const result = await hooks.before_prompt_build(

1729+

{ prompt: "what wings should i order? memory tools filtered by policy", messages: [] },

1730+

{ agentId: "main", trigger: "user", sessionKey, messageProvider: "webchat" },

1731+

);

1732+1733+

expect(result).toBeUndefined();

1734+

expect(hasDebugLine("no memory tools registered")).toBe(false);

1735+

expect(hasWarnLine("No callable tools remain")).toBe(true);

1736+

expect(getActiveMemoryLines(sessionKey)).toEqual([

1737+

expect.stringContaining("🧩 Active Memory: status=unavailable"),

1738+

]);

1739+

});

1740+1741+

it.each([

1742+

["disabled tools", "tools are disabled for this run"],

1743+

["models without tool support", "the selected model does not support tools"],

1744+

])("keeps allowlist errors for %s visible", async (_label, reason) => {

1745+

const sessionKey = `agent:main:${reason.replace(/\W+/g, "-")}`;

1746+

hoisted.sessionStore[sessionKey] = {

1747+

sessionId: `s-${reason.replace(/\W+/g, "-")}`,

1748+

updatedAt: 0,

1749+

};

1750+

const error = makeMemoryToolAllowlistError(reason);

1751+

expect(__testing.isMissingRegisteredMemoryToolsError(error)).toBe(false);

1752+

runEmbeddedPiAgent.mockRejectedValueOnce(error);

1753+1754+

const result = await hooks.before_prompt_build(

1755+

{ prompt: `what wings should i order? ${reason}`, messages: [] },

1756+

{ agentId: "main", trigger: "user", sessionKey, messageProvider: "webchat" },

1757+

);

1758+1759+

expect(result).toBeUndefined();

1760+

expect(hasDebugLine("no memory tools registered")).toBe(false);

1761+

expect(hasWarnLine(reason)).toBe(true);

1762+

expect(getActiveMemoryLines(sessionKey)).toEqual([

1763+

expect.stringContaining("🧩 Active Memory: status=unavailable"),

1764+

]);

1765+

});

1766+1767+

it("does not skip missing memory-tool allowlist errors after abort", async () => {

1768+

const sessionKey = "agent:main:missing-memory-tools-after-abort";

1769+

hoisted.sessionStore[sessionKey] = {

1770+

sessionId: "s-missing-memory-tools-after-abort",

1771+

updatedAt: 0,

1772+

};

1773+

runEmbeddedPiAgent.mockImplementationOnce(async (params: { abortSignal?: AbortSignal }) => {

1774+

Object.defineProperty(params.abortSignal as AbortSignal, "aborted", {

1775+

configurable: true,

1776+

value: true,

1777+

});

1778+

throw makeMemoryToolAllowlistError("no registered tools matched");

1779+

});

1780+1781+

const result = await hooks.before_prompt_build(

1782+

{ prompt: "what wings should i order? missing memory tools after abort", messages: [] },

1783+

{ agentId: "main", trigger: "user", sessionKey, messageProvider: "webchat" },

1784+

);

1785+1786+

expect(result).toBeUndefined();

1787+

expect(hasDebugLine("no memory tools registered")).toBe(false);

1788+

expect(getActiveMemoryLines(sessionKey)).toEqual([

1789+

expect.stringContaining("🧩 Active Memory: status=timeout"),

1790+

]);

1791+

});

1792+16491793

it("returns partial transcript text on timeout when the subagent has already written assistant output", async () => {

16501794

__testing.setMinimumTimeoutMsForTests(1);

16511795

__testing.setSetupGraceTimeoutMsForTests(0);