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

推荐订阅源

F
Fortinet All Blogs
有赞技术团队
有赞技术团队
量子位
N
Netflix TechBlog - Medium
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
V2EX
IT之家
IT之家
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & 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(feishu): re-resolve route when dynamic agent binding ...
liuhao1024 · 2026-06-14 · via Recent Commits to openclaw:main

@@ -163,8 +163,13 @@ function buildDefaultResolveRoute(): ResolvedAgentRoute {

163163

matchedBy: "default",

164164

};

165165

}

166+

let currentRuntimeConfig = {} as ClawdbotConfig;

167+166168

function createFeishuBotRuntime(overrides: DeepPartial<PluginRuntime> = {}): PluginRuntime {

167169

return {

170+

config: {

171+

current: vi.fn(() => currentRuntimeConfig),

172+

},

168173

channel: {

169174

routing: {

170175

resolveAgentRoute: resolveAgentRouteMock,

@@ -413,7 +418,11 @@ afterAll(() => {

413418

vi.resetModules();

414419

});

415420416-

async function dispatchMessage(params: { cfg: ClawdbotConfig; event: FeishuMessageEvent }) {

421+

async function dispatchMessage(params: {

422+

cfg: ClawdbotConfig;

423+

currentCfg?: ClawdbotConfig;

424+

event: FeishuMessageEvent;

425+

}) {

417426

const runtime = createRuntimeEnv();

418427

const feishuConfig = params.cfg.channels?.feishu;

419428

const cfg =

@@ -429,6 +438,7 @@ async function dispatchMessage(params: { cfg: ClawdbotConfig; event: FeishuMessa

429438

},

430439

} as ClawdbotConfig)

431440

: params.cfg;

441+

currentRuntimeConfig = params.currentCfg ?? cfg;

432442

await handleFeishuMessage({

433443

cfg,

434444

event: params.event,

@@ -455,7 +465,10 @@ describe("handleFeishuMessage ACP routing", () => {

455465

mockTouchBinding.mockReset();

456466

mockResolveFeishuReasoningPreviewEnabled.mockReset().mockReturnValue(false);

457467

mockTranscribeFirstAudio.mockReset().mockResolvedValue(undefined);

458-

mockMaybeCreateDynamicAgent.mockReset().mockResolvedValue({ created: false });

468+

mockMaybeCreateDynamicAgent.mockReset().mockImplementation(async ({ cfg }) => ({

469+

created: false,

470+

updatedCfg: cfg,

471+

}));

459472

mockResolveAgentRoute.mockReset().mockReturnValue({

460473

...buildDefaultResolveRoute(),

461474

sessionKey: "agent:main:feishu:direct:ou_sender_1",

@@ -976,7 +989,9 @@ describe("handleFeishuMessage command authorization", () => {

976989

},

977990

);

978991

const mockResolveCommandAuthorizedFromAuthorizers = vi.fn(() => false);

979-

const mockShouldComputeCommandAuthorized = vi.fn(() => true);

992+

const mockShouldComputeCommandAuthorized = vi.fn<

993+

PluginRuntime["channel"]["commands"]["shouldComputeCommandAuthorized"]

994+

>(() => true);

980995

const mockReadAllowFromStore = vi.fn().mockResolvedValue([]);

981996

const mockUpsertPairingRequest = vi.fn().mockResolvedValue({ code: "ABCDEFGH", created: false });

982997

const mockBuildPairingReply = vi.fn(() => "Pairing response");

@@ -1009,7 +1024,10 @@ describe("handleFeishuMessage command authorization", () => {

10091024

mockResolveBoundConversation.mockReset().mockReturnValue(null);

10101025

mockTouchBinding.mockReset();

10111026

mockTranscribeFirstAudio.mockReset().mockResolvedValue(undefined);

1012-

mockMaybeCreateDynamicAgent.mockReset().mockResolvedValue({ created: false });

1027+

mockMaybeCreateDynamicAgent.mockReset().mockImplementation(async ({ cfg }) => ({

1028+

created: false,

1029+

updatedCfg: cfg,

1030+

}));

10131031

mockResolveAgentRoute.mockReturnValue(buildDefaultResolveRoute());

10141032

mockCreateFeishuClient.mockReturnValue({

10151033

contact: {

@@ -1216,7 +1234,7 @@ describe("handleFeishuMessage command authorization", () => {

12161234

expect(ensureNoVisibleReplyFallback).toHaveBeenCalledWith("dispatch-complete-no-visible-reply");

12171235

});

121812361219-

it("passes disabled config-write policy to dynamic agent creation", async () => {

1237+

it("uses refreshed config for dynamic agent dispatch", async () => {

12201238

mockShouldComputeCommandAuthorized.mockReturnValue(false);

1221123912221240

const cfg: ClawdbotConfig = {

@@ -1231,6 +1249,22 @@ describe("handleFeishuMessage command authorization", () => {

12311249

},

12321250

},

12331251

} as ClawdbotConfig;

1252+

const refreshedCfg = {

1253+

...cfg,

1254+

agents: {

1255+

list: [

1256+

{

1257+

id: "feishu-ou-attacker",

1258+

workspace: "/tmp/feishu-ou-attacker",

1259+

agentDir: "/tmp/feishu-ou-attacker/agent",

1260+

},

1261+

],

1262+

},

1263+

} as ClawdbotConfig;

1264+

mockMaybeCreateDynamicAgent.mockResolvedValueOnce({

1265+

created: false,

1266+

updatedCfg: refreshedCfg,

1267+

});

1234126812351269

const event: FeishuMessageEvent = {

12361270

sender: {

@@ -1250,12 +1284,177 @@ describe("handleFeishuMessage command authorization", () => {

12501284

await dispatchMessage({ cfg, event });

1251128512521286

const dynamicAgentRequest = mockCallArg<{

1253-

configWritesAllowed?: boolean;

1287+

accountId?: string;

12541288

senderOpenId?: string;

12551289

}>(mockMaybeCreateDynamicAgent, 0, 0);

12561290

expect(dynamicAgentRequest.senderOpenId).toBe("ou-attacker");

1257-

expect(dynamicAgentRequest.configWritesAllowed).toBe(false);

1258-

expect(mockDispatchReplyFromConfig).toHaveBeenCalledTimes(1);

1291+

expect(dynamicAgentRequest.accountId).toBe("default");

1292+

expect(mockCreateFeishuReplyDispatcher).toHaveBeenCalledWith(

1293+

expect.objectContaining({ cfg: refreshedCfg }),

1294+

);

1295+

expect(mockDispatchReplyFromConfig).toHaveBeenCalledWith(

1296+

expect.objectContaining({ cfg: refreshedCfg }),

1297+

);

1298+

});

1299+1300+

it("drops a DM denied by refreshed dynamic-agent policy", async () => {

1301+

mockShouldComputeCommandAuthorized.mockReturnValue(false);

1302+1303+

const cfg = {

1304+

channels: {

1305+

feishu: {

1306+

dmPolicy: "open",

1307+

allowFrom: ["*"],

1308+

dynamicAgentCreation: { enabled: true },

1309+

},

1310+

},

1311+

} as ClawdbotConfig;

1312+

const refreshedCfg = {

1313+

channels: {

1314+

feishu: {

1315+

dmPolicy: "allowlist",

1316+

allowFrom: ["ou-admin"],

1317+

dynamicAgentCreation: { enabled: true },

1318+

},

1319+

},

1320+

} as ClawdbotConfig;

1321+

await dispatchMessage({

1322+

cfg,

1323+

currentCfg: refreshedCfg,

1324+

event: {

1325+

sender: { sender_id: { open_id: "ou-attacker" } },

1326+

message: {

1327+

message_id: "msg-refreshed-policy-deny",

1328+

chat_id: "oc-dm",

1329+

chat_type: "p2p",

1330+

message_type: "text",

1331+

content: JSON.stringify({ text: "hello" }),

1332+

},

1333+

},

1334+

});

1335+1336+

expect(mockMaybeCreateDynamicAgent).not.toHaveBeenCalled();

1337+

expect(mockFinalizeInboundContext).not.toHaveBeenCalled();

1338+

expect(mockCreateFeishuReplyDispatcher).not.toHaveBeenCalled();

1339+

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

1340+

});

1341+1342+

it("reauthorizes current policy before dispatching an existing bound route", async () => {

1343+

mockShouldComputeCommandAuthorized.mockReturnValue(false);

1344+

mockResolveAgentRoute.mockReturnValue({

1345+

...buildDefaultResolveRoute(),

1346+

matchedBy: "binding.peer",

1347+

});

1348+

const cfg = {

1349+

channels: { feishu: { dmPolicy: "open", allowFrom: ["*"] } },

1350+

} as ClawdbotConfig;

1351+

const currentCfg = {

1352+

channels: { feishu: { dmPolicy: "allowlist", allowFrom: ["ou-admin"] } },

1353+

} as ClawdbotConfig;

1354+1355+

await dispatchMessage({

1356+

cfg,

1357+

currentCfg,

1358+

event: {

1359+

sender: { sender_id: { open_id: "ou-attacker" } },

1360+

message: {

1361+

message_id: "msg-bound-refreshed-policy-deny",

1362+

chat_id: "oc-dm",

1363+

chat_type: "p2p",

1364+

message_type: "text",

1365+

content: JSON.stringify({ text: "hello" }),

1366+

},

1367+

},

1368+

});

1369+1370+

expect(mockFinalizeInboundContext).not.toHaveBeenCalled();

1371+

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

1372+

});

1373+1374+

it("issues a pairing challenge before dynamic creation when current policy requires it", async () => {

1375+

mockShouldComputeCommandAuthorized.mockReturnValue(false);

1376+

mockReadAllowFromStore.mockResolvedValue([]);

1377+

mockUpsertPairingRequest.mockResolvedValue({ code: "ABCDEFGH", created: true });

1378+1379+

const cfg = {

1380+

channels: {

1381+

feishu: {

1382+

dmPolicy: "open",

1383+

allowFrom: ["*"],

1384+

dynamicAgentCreation: { enabled: true },

1385+

},

1386+

},

1387+

} as ClawdbotConfig;

1388+

const currentCfg = {

1389+

channels: {

1390+

feishu: {

1391+

dmPolicy: "pairing",

1392+

allowFrom: [],

1393+

dynamicAgentCreation: { enabled: true },

1394+

},

1395+

},

1396+

} as ClawdbotConfig;

1397+1398+

await dispatchMessage({

1399+

cfg,

1400+

currentCfg,

1401+

event: {

1402+

sender: { sender_id: { open_id: "ou-attacker" } },

1403+

message: {

1404+

message_id: "msg-refreshed-policy-pairing",

1405+

chat_id: "oc-dm",

1406+

chat_type: "p2p",

1407+

message_type: "text",

1408+

content: JSON.stringify({ text: "hello" }),

1409+

},

1410+

},

1411+

});

1412+1413+

expect(mockMaybeCreateDynamicAgent).not.toHaveBeenCalled();

1414+

expect(mockUpsertPairingRequest).toHaveBeenCalledTimes(1);

1415+

expect(mockSendMessageFeishu).toHaveBeenCalledTimes(1);

1416+

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

1417+

});

1418+1419+

it("recomputes command authorization against refreshed dynamic-agent config", async () => {

1420+

const cfg = {

1421+

channels: {

1422+

feishu: {

1423+

dmPolicy: "open",

1424+

allowFrom: ["*"],

1425+

dynamicAgentCreation: { enabled: true },

1426+

},

1427+

},

1428+

} as ClawdbotConfig;

1429+

const refreshedCfg = {

1430+

...cfg,

1431+

commands: { useAccessGroups: true },

1432+

} as ClawdbotConfig;

1433+

mockShouldComputeCommandAuthorized.mockImplementation((_body, candidateCfg) => {

1434+

return candidateCfg === refreshedCfg;

1435+

});

1436+

mockMaybeCreateDynamicAgent.mockResolvedValueOnce({

1437+

created: false,

1438+

updatedCfg: refreshedCfg,

1439+

});

1440+1441+

await dispatchMessage({

1442+

cfg,

1443+

event: {

1444+

sender: { sender_id: { open_id: "ou-attacker" } },

1445+

message: {

1446+

message_id: "msg-refreshed-command-auth",

1447+

chat_id: "oc-dm",

1448+

chat_type: "p2p",

1449+

message_type: "text",

1450+

content: JSON.stringify({ text: "/status" }),

1451+

},

1452+

},

1453+

});

1454+1455+

expect(mockShouldComputeCommandAuthorized).toHaveBeenCalledWith("/status", refreshedCfg);

1456+

const context = mockCallArg<{ CommandAuthorized?: boolean }>(mockFinalizeInboundContext, 0, 0);

1457+

expect(context.CommandAuthorized).toBe(true);

12591458

});

1260145912611460

it("blocks open DMs when a restrictive allowlist does not match", async () => {