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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

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(cli): include loopback tools in cli prompts (#83828) ...
clawsweeper · 2026-05-19 · via Recent Commits to openclaw:main

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

1111

} from "../../context-engine/registry.js";

1212

import type { ContextEngine } from "../../context-engine/types.js";

1313

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

14+

import { clearMemoryPluginState, registerMemoryPromptSection } from "../../plugins/memory-state.js";

1415

import { testing as cliBackendsTesting } from "../cli-backends.js";

1516

import { hashCliSessionText } from "../cli-session.js";

1617

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

@@ -197,6 +198,7 @@ describe("shouldSkipLocalCliCredentialEpoch", () => {

197198

getActiveMcpLoopbackRuntime: vi.fn(() => undefined),

198199

ensureMcpLoopbackServer: vi.fn(createTestMcpLoopbackServer),

199200

createMcpLoopbackServerConfig: vi.fn(createTestMcpLoopbackServerConfig),

201+

resolveMcpLoopbackScopedTools: vi.fn(() => ({ agentId: "main", tools: [] })),

200202

resolveOpenClawReferencePaths: vi.fn(async () => ({ docsPath: null, sourcePath: null })),

201203

});

202204

mockGetGlobalHookRunner.mockReturnValue(null);

@@ -213,6 +215,7 @@ describe("shouldSkipLocalCliCredentialEpoch", () => {

213215

mockBuildActiveImageGenerationTaskPromptContextForSession.mockReset();

214216

mockBuildActiveVideoGenerationTaskPromptContextForSession.mockReset();

215217

mockBuildActiveMusicGenerationTaskPromptContextForSession.mockReset();

218+

clearMemoryPluginState();

216219

vi.unstubAllEnvs();

217220

});

218221

@@ -987,6 +990,178 @@ describe("shouldSkipLocalCliCredentialEpoch", () => {

987990

}

988991

});

989992993+

it("uses loopback-scoped tools when building bundled MCP CLI prompts", async () => {

994+

const { dir, sessionFile } = createSessionFile();

995+

try {

996+

registerMemoryPromptSection(({ availableTools }) =>

997+

availableTools.has("memory_search")

998+

? ["## Memory Recall", `tools=${[...availableTools].toSorted().join(",")}`, ""]

999+

: [],

1000+

);

1001+

const getActiveMcpLoopbackRuntime = vi.fn(() => ({

1002+

port: 31783,

1003+

ownerToken: "owner-token",

1004+

nonOwnerToken: "non-owner-token",

1005+

}));

1006+

const ensureMcpLoopbackServer = vi.fn(createTestMcpLoopbackServer);

1007+

const createMcpLoopbackServerConfig = vi.fn(createTestMcpLoopbackServerConfig);

1008+

const resolveMcpLoopbackScopedTools = vi.fn(() => ({

1009+

agentId: "main",

1010+

tools: [

1011+

{

1012+

name: "memory_search",

1013+

label: "Memory Search",

1014+

description: "Search memory",

1015+

parameters: { type: "object", properties: {} },

1016+

execute: vi.fn(),

1017+

},

1018+

],

1019+

}));

1020+

setCliRunnerPrepareTestDeps({

1021+

getActiveMcpLoopbackRuntime,

1022+

ensureMcpLoopbackServer,

1023+

createMcpLoopbackServerConfig,

1024+

resolveMcpLoopbackScopedTools,

1025+

});

1026+

cliBackendsTesting.setDepsForTest({

1027+

resolvePluginSetupCliBackend: () => undefined,

1028+

resolveRuntimeCliBackends: () => [

1029+

{

1030+

id: "native-cli",

1031+

pluginId: "native-plugin",

1032+

bundleMcp: true,

1033+

bundleMcpMode: "claude-config-file",

1034+

config: {

1035+

command: "native-cli",

1036+

args: ["--print"],

1037+

systemPromptArg: "--system-prompt",

1038+

systemPromptWhen: "first",

1039+

output: "text",

1040+

input: "arg",

1041+

sessionMode: "existing",

1042+

},

1043+

},

1044+

],

1045+

});

1046+1047+

const context = await prepareCliRunContext({

1048+

sessionId: "session-test",

1049+

sessionKey: "agent:main:test",

1050+

sessionFile,

1051+

workspaceDir: dir,

1052+

prompt: "latest ask",

1053+

provider: "native-cli",

1054+

model: "test-model",

1055+

timeoutMs: 1_000,

1056+

runId: "run-test-loopback-prompt-tools",

1057+

config: createCliBackendConfig({ bundleMcp: true, systemPromptOverride: null }),

1058+

cliSessionBinding: {

1059+

sessionId: "cli-session",

1060+

promptToolNamesHash: "old-tool-surface",

1061+

},

1062+

});

1063+1064+

expect(resolveMcpLoopbackScopedTools).toHaveBeenCalledWith({

1065+

cfg: expect.any(Object),

1066+

sessionKey: "agent:main:test",

1067+

messageProvider: undefined,

1068+

accountId: undefined,

1069+

inboundEventKind: undefined,

1070+

senderIsOwner: undefined,

1071+

});

1072+

expect(context.systemPrompt).toContain("## Memory Recall");

1073+

expect(context.systemPrompt).toContain("tools=memory_search");

1074+

expect(context.systemPromptReport.tools.entries.map((entry) => entry.name)).toEqual([

1075+

"memory_search",

1076+

]);

1077+

expect(context.promptToolNamesHash).toBe(

1078+

hashCliSessionText(JSON.stringify(["memory_search"])),

1079+

);

1080+

expect(context.reusableCliSession).toEqual({ invalidatedReason: "system-prompt" });

1081+

} finally {

1082+

fs.rmSync(dir, { recursive: true, force: true });

1083+

}

1084+

});

1085+1086+

it("does not advertise loopback prompt tools when the runtime is unavailable", async () => {

1087+

const { dir, sessionFile } = createSessionFile();

1088+

try {

1089+

registerMemoryPromptSection(({ availableTools }) =>

1090+

availableTools.has("memory_search")

1091+

? ["## Memory Recall", `tools=${[...availableTools].toSorted().join(",")}`, ""]

1092+

: [],

1093+

);

1094+

const getActiveMcpLoopbackRuntime = vi.fn(() => undefined);

1095+

const ensureMcpLoopbackServer = vi.fn(async () => {

1096+

throw new Error("loopback unavailable");

1097+

});

1098+

const createMcpLoopbackServerConfig = vi.fn(createTestMcpLoopbackServerConfig);

1099+

const resolveMcpLoopbackScopedTools = vi.fn(() => ({

1100+

agentId: "main",

1101+

tools: [

1102+

{

1103+

name: "memory_search",

1104+

label: "Memory Search",

1105+

description: "Search memory",

1106+

parameters: { type: "object", properties: {} },

1107+

execute: vi.fn(),

1108+

},

1109+

],

1110+

}));

1111+

setCliRunnerPrepareTestDeps({

1112+

getActiveMcpLoopbackRuntime,

1113+

ensureMcpLoopbackServer,

1114+

createMcpLoopbackServerConfig,

1115+

resolveMcpLoopbackScopedTools,

1116+

});

1117+

cliBackendsTesting.setDepsForTest({

1118+

resolvePluginSetupCliBackend: () => undefined,

1119+

resolveRuntimeCliBackends: () => [

1120+

{

1121+

id: "native-cli",

1122+

pluginId: "native-plugin",

1123+

bundleMcp: true,

1124+

bundleMcpMode: "claude-config-file",

1125+

config: {

1126+

command: "native-cli",

1127+

args: ["--print"],

1128+

systemPromptArg: "--system-prompt",

1129+

systemPromptWhen: "first",

1130+

output: "text",

1131+

input: "arg",

1132+

sessionMode: "existing",

1133+

},

1134+

},

1135+

],

1136+

});

1137+1138+

const context = await prepareCliRunContext({

1139+

sessionId: "session-test",

1140+

sessionKey: "agent:main:test",

1141+

sessionFile,

1142+

workspaceDir: dir,

1143+

prompt: "latest ask",

1144+

provider: "native-cli",

1145+

model: "test-model",

1146+

timeoutMs: 1_000,

1147+

runId: "run-test-loopback-prompt-tools-fallback",

1148+

config: createCliBackendConfig({ bundleMcp: true, systemPromptOverride: null }),

1149+

});

1150+1151+

expect(ensureMcpLoopbackServer).toHaveBeenCalledTimes(1);

1152+

expect(getActiveMcpLoopbackRuntime).toHaveBeenCalledTimes(2);

1153+

expect(createMcpLoopbackServerConfig).not.toHaveBeenCalled();

1154+

expect(resolveMcpLoopbackScopedTools).not.toHaveBeenCalled();

1155+

expect(context.systemPrompt).not.toContain("## Memory Recall");

1156+

expect(context.systemPrompt).not.toContain("memory_search");

1157+

expect(context.systemPromptReport.tools.entries).toEqual([]);

1158+

expect(context.promptToolNamesHash).toBeUndefined();

1159+

expect(context.preparedBackend.env).toBeUndefined();

1160+

} finally {

1161+

fs.rmSync(dir, { recursive: true, force: true });

1162+

}

1163+

});

1164+9901165

it("passes current turn kind into bundle MCP loopback env", async () => {

9911166

const { dir, sessionFile } = createSessionFile();

9921167

try {