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

推荐订阅源

量子位
F
Fortinet All Blogs
J
Java Code Geeks
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
M
MIT News - Artificial intelligence
腾讯CDC
Last Week in AI
Last Week in AI
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
P
Proofpoint News Feed
博客园 - 叶小钗
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
L
LangChain Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
refactor: remove sender owner tool gating · openclaw/open...
steipete · 2026-05-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -8,6 +8,7 @@ Docs: https://docs.openclaw.ai

88
99

- Gateway/plugins: reuse a compatible Gateway startup plugin registry during dispatch so safe plugin dispatches avoid redundant registry loading. (#84324) Thanks @ai-hpc.

1010

- Dependencies: refresh provider, plugin, UI, and tooling packages, update `protobufjs` to 8.4.0 to clear the current npm advisory, and carry the Claude ACP completion patch forward to `@agentclientprotocol/claude-agent-acp` 0.36.1.

11+

- Agents/tools: remove the old sender-owner tool gating path so configured tools stay visible for trusted sessions while command and channel-action auth still carry real sender identity.

1112

- Tests/perf: isolate doctor core health check unit coverage from real skills/workspace discovery so `doctor-core-checks` no longer dominates unit perf while keeping one real skills-readiness smoke. (#84493) Thanks @frankekn.

1213
1314

### Fixes

Original file line numberDiff line numberDiff line change

@@ -105,7 +105,6 @@ describe("ClickClack account resolution", () => {

105105

enabled: true,

106106

reconnectMs: 1_500,

107107

replyMode: "agent",

108-

senderIsOwner: false,

109108

token: "ccb_live",

110109

workspace: "wsp_1",

111110

});

@@ -125,7 +124,6 @@ describe("ClickClack account resolution", () => {

125124

replyMode: "model",

126125

model: "openai/gpt-5.4-mini",

127126

toolsAllow: ["web_search"],

128-

senderIsOwner: true,

129127

},

130128

},

131129

},

@@ -144,7 +142,6 @@ describe("ClickClack account resolution", () => {

144142

enabled: true,

145143

model: "openai/gpt-5.4-mini",

146144

replyMode: "model",

147-

senderIsOwner: true,

148145

token: "ccb_peter",

149146

toolsAllow: ["web_search"],

150147

workspace: "wsp_1",

@@ -155,7 +152,6 @@ describe("ClickClack account resolution", () => {

155152

model: "openai/gpt-5.4-mini",

156153

reconnectMs: 1_500,

157154

replyMode: "model",

158-

senderIsOwner: true,

159155

token: "ccb_peter",

160156

toolsAllow: ["web_search"],

161157

workspace: "wsp_1",

Original file line numberDiff line numberDiff line change

@@ -126,7 +126,6 @@ export function resolveClickClackAccount(params: {

126126

systemPrompt: normalizeOptionalString(merged.systemPrompt),

127127

timeoutSeconds: merged.timeoutSeconds,

128128

toolsAllow: merged.toolsAllow,

129-

senderIsOwner: merged.senderIsOwner === true,

130129

defaultTo: merged.defaultTo?.trim() || "channel:general",

131130

allowFrom: merged.allowFrom ?? ["*"],

132131

reconnectMs: merged.reconnectMs ?? DEFAULT_RECONNECT_MS,

Original file line numberDiff line numberDiff line change

@@ -16,7 +16,6 @@ const ClickClackAccountConfigSchema = z

1616

systemPrompt: z.string().optional(),

1717

timeoutSeconds: z.number().int().min(1).max(3_600).optional(),

1818

toolsAllow: z.array(z.string()).optional(),

19-

senderIsOwner: z.boolean().optional(),

2019

defaultTo: z.string().optional(),

2120

allowFrom: z.array(z.string()).optional(),

2221

reconnectMs: z.number().int().min(100).max(60_000).optional(),

Original file line numberDiff line numberDiff line change

@@ -94,7 +94,6 @@ describe("handleClickClackInbound", () => {

9494

agentId: "service-bot",

9595

replyMode: "model",

9696

model: "openai/gpt-5.4-mini",

97-

senderIsOwner: false,

9897

toolsAllow: [],

9998

defaultTo: "channel:general",

10099

allowFrom: ["*"],

Original file line numberDiff line numberDiff line change

@@ -13,7 +13,6 @@ export type ClickClackAccountConfig = {

1313

systemPrompt?: string;

1414

timeoutSeconds?: number;

1515

toolsAllow?: string[];

16-

senderIsOwner?: boolean;

1716

defaultTo?: string;

1817

allowFrom?: string[];

1918

reconnectMs?: number;

@@ -45,7 +44,6 @@ export type ResolvedClickClackAccount = {

4544

systemPrompt?: string;

4645

timeoutSeconds?: number;

4746

toolsAllow?: string[];

48-

senderIsOwner: boolean;

4947

defaultTo: string;

5048

allowFrom: string[];

5149

reconnectMs: number;

Original file line numberDiff line numberDiff line change

@@ -3343,7 +3343,6 @@ async function buildDynamicTools(input: DynamicToolBuildParams) {

33433343

senderName: params.senderName,

33443344

senderUsername: params.senderUsername,

33453345

senderE164: params.senderE164,

3346-

senderIsOwner: params.senderIsOwner,

33473346

allowGatewaySubagentBinding:

33483347

params.allowGatewaySubagentBinding || isForcedPrivateQaCodexRuntime(),

33493348

...sessionKeys,

Original file line numberDiff line numberDiff line change

@@ -104,8 +104,6 @@ export class AgentComponentButton extends Button {

104104

enqueueSystemEvent(eventText, {

105105

sessionKey: route.sessionKey,

106106

contextKey: `discord:agent-button:${channelId}:${componentId}:${userId}`,

107-

forceSenderIsOwnerFalse: true,

108-

trusted: false,

109107

});

110108
111109

await ackComponentInteraction({ interaction, replyOpts, label: "agent button" });

@@ -198,8 +196,6 @@ export class AgentSelectMenu extends StringSelectMenu {

198196

enqueueSystemEvent(eventText, {

199197

sessionKey: route.sessionKey,

200198

contextKey: `discord:agent-select:${channelId}:${componentId}:${userId}`,

201-

forceSenderIsOwnerFalse: true,

202-

trusted: false,

203199

});

204200
205201

await ackComponentInteraction({ interaction, replyOpts, label: "agent select" });

Original file line numberDiff line numberDiff line change

@@ -501,8 +501,6 @@ async function handleDiscordReactionEvent(

501501

enqueueSystemEvent(text, {

502502

sessionKey: route.sessionKey,

503503

contextKey,

504-

forceSenderIsOwnerFalse: true,

505-

trusted: false,

506504

});

507505

};

508506

const shouldNotifyReaction = (options: {

Original file line numberDiff line numberDiff line change

@@ -724,8 +724,6 @@ export async function preflightDiscordMessage(

724724

enqueueSystemEvent(systemText, {

725725

sessionKey: effectiveRoute.sessionKey,

726726

contextKey: `discord:system:${messageChannelId}:${message.id}`,

727-

forceSenderIsOwnerFalse: true,

728-

trusted: false,

729727

});

730728

return null;

731729

}