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

推荐订阅源

博客园 - 叶小钗
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
量子位
N
Netflix TechBlog - Medium
博客园 - 聂微东
博客园 - Franky
aimingoo的专栏
aimingoo的专栏
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯CDC

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(agents): move groupId trust check into resolveGroupTo...
mmaps · 2026-04-30 · via Recent Commits to openclaw:main

@@ -7,8 +7,10 @@ import {

77

filterToolsByPolicy,

88

isToolAllowedByPolicyName,

99

resolveEffectiveToolPolicy,

10+

resolveGroupToolPolicy,

1011

resolveSubagentToolPolicy,

1112

resolveSubagentToolPolicyForSession,

13+

resolveTrustedGroupId,

1214

} from "./pi-tools.policy.js";

1315

import { createStubTool } from "./test-helpers/pi-tool-stubs.js";

1416

import { providerAliasCases } from "./test-helpers/provider-alias-cases.js";

@@ -40,6 +42,137 @@ describe("pi-tools.policy", () => {

4042

});

4143

});

424445+

describe("resolveGroupToolPolicy group context validation", () => {

46+

const cfg: OpenClawConfig = {

47+

channels: {

48+

whatsapp: {

49+

groups: {

50+

"safe-room": {

51+

tools: { allow: ["read"] },

52+

},

53+

"trusted-group": {

54+

tools: { allow: ["exec", "read", "write", "edit"] },

55+

},

56+

},

57+

},

58+

},

59+

tools: { allow: ["read"] },

60+

};

61+62+

it("rejects forged groupId when the session has no group context", () => {

63+

expect(

64+

resolveGroupToolPolicy({

65+

config: cfg,

66+

sessionKey: "agent:main:main",

67+

messageProvider: "whatsapp",

68+

groupId: "trusted-group",

69+

groupChannel: "whatsapp",

70+

}),

71+

).toBeUndefined();

72+

});

73+74+

it("uses session-derived group policy when caller groupId disagrees", () => {

75+

expect(

76+

resolveGroupToolPolicy({

77+

config: cfg,

78+

sessionKey: "agent:main:whatsapp:group:safe-room",

79+

messageProvider: "whatsapp",

80+

groupId: "trusted-group",

81+

groupChannel: "whatsapp",

82+

}),

83+

).toEqual({ allow: ["read"] });

84+

});

85+86+

it("accepts caller groupId when it matches session-derived group context", () => {

87+

expect(

88+

resolveTrustedGroupId({

89+

sessionKey: "agent:main:whatsapp:group:trusted-group",

90+

groupId: "trusted-group",

91+

}),

92+

).toEqual({ groupId: "trusted-group", dropped: false });

93+

expect(

94+

resolveGroupToolPolicy({

95+

config: cfg,

96+

sessionKey: "agent:main:whatsapp:group:trusted-group",

97+

messageProvider: "whatsapp",

98+

groupId: "trusted-group",

99+

groupChannel: "whatsapp",

100+

}),

101+

).toEqual({ allow: ["exec", "read", "write", "edit"] });

102+

});

103+104+

it("accepts caller groupId when spawnedBy provides the trusted group context", () => {

105+

expect(

106+

resolveTrustedGroupId({

107+

sessionKey: "agent:main:main",

108+

spawnedBy: "agent:main:whatsapp:group:trusted-group",

109+

groupId: "trusted-group",

110+

}),

111+

).toEqual({ groupId: "trusted-group", dropped: false });

112+

expect(

113+

resolveGroupToolPolicy({

114+

config: cfg,

115+

sessionKey: "agent:main:main",

116+

spawnedBy: "agent:main:whatsapp:group:trusted-group",

117+

messageProvider: "whatsapp",

118+

groupId: "trusted-group",

119+

}),

120+

).toEqual({ allow: ["exec", "read", "write", "edit"] });

121+

});

122+123+

it("keeps specific session group policy ahead of trusted parent caller groupId", () => {

124+

const scopedCfg: OpenClawConfig = {

125+

channels: {

126+

whatsapp: {

127+

groups: {

128+

room: {

129+

tools: { allow: ["exec", "read"] },

130+

},

131+

"room:sender:alice": {

132+

tools: { allow: ["read"] },

133+

},

134+

},

135+

},

136+

},

137+

};

138+139+

expect(

140+

resolveGroupToolPolicy({

141+

config: scopedCfg,

142+

sessionKey: "agent:main:whatsapp:group:room:sender:alice",

143+

messageProvider: "whatsapp",

144+

groupId: "room",

145+

}),

146+

).toEqual({ allow: ["read"] });

147+

});

148+149+

it("prefers the session-derived channel over caller-supplied messageProvider", () => {

150+

const channelCfg = {

151+

channels: {

152+

discord: {

153+

groups: {

154+

C123: { tools: { allow: ["exec"] } },

155+

},

156+

},

157+

slack: {

158+

groups: {

159+

C123: { tools: { allow: ["read"] } },

160+

},

161+

},

162+

},

163+

} as unknown as OpenClawConfig;

164+165+

const policy = resolveGroupToolPolicy({

166+

config: channelCfg,

167+

sessionKey: "agent:main:slack:group:C123",

168+

messageProvider: "discord",

169+

groupId: "C123",

170+

});

171+172+

expect(policy).toEqual({ allow: ["read"] });

173+

});

174+

});

175+43176

describe("resolveSubagentToolPolicy depth awareness", () => {

44177

const baseCfg = {

45178

agents: { defaults: { subagents: { maxSpawnDepth: 2 } } },