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

推荐订阅源

云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
博客园 - 司徒正美
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
S
SegmentFault 最新的问题
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: harden generated surface pruning · openclaw/openclaw...
steipete · 2026-05-07 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,12 +1,17 @@

11

profile: openclaw-check

22

provider: aws

3-

class: beast

3+

class: standard

44

capacity:

55

market: spot

66

strategy: most-available

77

fallback: on-demand-after-120s

8+

hints: true

89

regions:

910

- eu-west-1

11+

- eu-west-2

12+

- eu-central-1

13+

- us-east-1

14+

- us-west-2

1015

actions:

1116

workflow: .github/workflows/crabbox-hydrate.yml

1217

job: hydrate

Original file line numberDiff line numberDiff line change

@@ -37,7 +37,7 @@ If this PR fixes a plugin beta-release blocker, title it `fix(<plugin-id>): beta

3737
3838

## Real behavior proof (required for external PRs)

3939
40-

External contributors must show after-fix evidence from a real OpenClaw setup. Unit tests, mocks, lint, typechecks, snapshots, and CI are supplemental only. Screenshots are encouraged even for CLI, console, text, or log changes; terminal screenshots and copied live output count.

40+

External contributors must show after-fix evidence from a real OpenClaw setup. Unit tests, mocks, lint, typechecks, snapshots, and CI are supplemental only. Screenshots are encouraged even for CLI, console, text, or log changes; terminal screenshots and copied live output count. Be mindful of private information like IP addresses, API keys, phone numbers, non-public endpoints, or other private details when providing evidence.

4141
4242

- Behavior or issue addressed:

4343

- Real environment tested:

Original file line numberDiff line numberDiff line change

@@ -717,8 +717,8 @@ export const registerTelegramHandlers = ({

717717

const groupAllowContext =

718718

params.groupAllowContext ??

719719

(await resolveTelegramGroupAllowFromContext({

720-

chatId: params.chatId,

721720

cfg,

721+

chatId: params.chatId,

722722

accountId,

723723

senderId: params.senderId,

724724

isGroup: params.isGroup,

Original file line numberDiff line numberDiff line change

@@ -493,8 +493,8 @@ async function resolveTelegramCommandAuth(params: {

493493

const senderId = msg.from?.id ? String(msg.from.id) : "";

494494

const senderUsername = msg.from?.username ?? "";

495495

const groupAllowContext = await resolveTelegramGroupAllowFromContext({

496-

chatId,

497496

cfg,

497+

chatId,

498498

accountId,

499499

senderId,

500500

isGroup,

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";

22

import { describe, expect, it } from "vitest";

3-

import { resolveTelegramStreamMode } from "./bot/helpers.js";

3+

import { resolveTelegramGroupAllowFromContext, resolveTelegramStreamMode } from "./bot/helpers.js";

44

import { resolveTelegramDraftStreamingChunking } from "./draft-chunking.js";

55
66

describe("resolveTelegramStreamMode", () => {

@@ -25,6 +25,35 @@ describe("resolveTelegramStreamMode", () => {

2525

});

2626

});

2727
28+

describe("resolveTelegramGroupAllowFromContext", () => {

29+

it("expands Telegram access groups before normalizing allowFrom entries", async () => {

30+

const cfg: OpenClawConfig = {

31+

accessGroups: {

32+

maintainers: {

33+

type: "message.senders",

34+

members: {

35+

telegram: ["12345"],

36+

},

37+

},

38+

},

39+

};

40+
41+

const context = await resolveTelegramGroupAllowFromContext({

42+

cfg,

43+

chatId: -100123,

44+

accountId: "default",

45+

senderId: "12345",

46+

isGroup: true,

47+

groupAllowFrom: ["accessGroup:maintainers"],

48+

readChannelAllowFromStore: async () => [],

49+

resolveTelegramGroupConfig: () => ({}),

50+

});

51+
52+

expect(context.effectiveGroupAllow.entries).toEqual(["12345"]);

53+

expect(context.effectiveGroupAllow.invalidEntries).toEqual([]);

54+

});

55+

});

56+
2857

describe("resolveTelegramDraftStreamingChunking", () => {

2958

it("uses smaller defaults than block streaming", () => {

3059

const chunking = resolveTelegramDraftStreamingChunking(undefined, "default");

Original file line numberDiff line numberDiff line change

@@ -170,8 +170,8 @@ export function withResolvedTelegramForumFlag<T extends { chat: object }>(

170170

}

171171
172172

export async function resolveTelegramGroupAllowFromContext(params: {

173-

chatId: string | number;

174173

cfg?: OpenClawConfig;

174+

chatId: string | number;

175175

accountId?: string;

176176

senderId?: string;

177177

isGroup?: boolean;

Original file line numberDiff line numberDiff line change

@@ -30,7 +30,9 @@ import { runRuntimePostBuild } from "./runtime-postbuild.mjs";

3030

export { isBuildRelevantRunNodePath, isRestartRelevantRunNodePath, runNodeWatchedPaths };

3131
3232

const buildScript = "scripts/tsdown-build.mjs";

33+

const bundledPluginAssetsScript = "scripts/bundled-plugin-assets.mjs";

3334

const compilerArgs = [buildScript, "--no-clean"];

35+

const bundledPluginAssetBuildArgs = [bundledPluginAssetsScript, "--phase", "build"];

3436
3537

const runtimePostBuildWatchedPaths = [

3638

"scripts/copy-bundled-plugin-metadata.mjs",

@@ -1022,7 +1024,23 @@ export async function runNodeMain(params = {}) {

10221024

`Building TypeScript (dist is stale: ${lockedBuildRequirement.reason} - ${formatBuildReason(lockedBuildRequirement.reason)}).`,

10231025

deps,

10241026

);

1027+

logRunner("Building bundled plugin assets.", deps);

10251028

const buildCmd = deps.execPath;

1029+

const assetBuild = deps.spawn(buildCmd, bundledPluginAssetBuildArgs, {

1030+

cwd: deps.cwd,

1031+

env: deps.env,

1032+

stdio: deps.outputTee ? ["inherit", "pipe", "pipe"] : "inherit",

1033+

});

1034+

pipeSpawnedOutput(assetBuild, deps);

1035+

const assetBuildRes = await waitForSpawnedProcess(assetBuild, deps);

1036+

const assetBuildInterruptedExitCode = getInterruptedSpawnExitCode(assetBuildRes);

1037+

if (assetBuildInterruptedExitCode !== null) {

1038+

return assetBuildInterruptedExitCode;

1039+

}

1040+

if (assetBuildRes.exitCode !== 0 && assetBuildRes.exitCode !== null) {

1041+

return assetBuildRes.exitCode;

1042+

}

1043+
10261044

const buildArgs = compilerArgs;

10271045

const build = deps.spawn(buildCmd, buildArgs, {

10281046

cwd: deps.cwd,

Original file line numberDiff line numberDiff line change

@@ -91,6 +91,27 @@ describe("plugin node capability helpers", () => {

9191

});

9292

});

9393
94+

test("stores capabilities per plugin-owned surface scope", () => {

95+

const client = makeClient();

96+

setClientPluginNodeCapability({

97+

client,

98+

surface: { surface: "canvas", scopeKey: "canvas-plugin:canvas" },

99+

capability: "canvas-token",

100+

expiresAtMs: 100,

101+

});

102+

setClientPluginNodeCapability({

103+

client,

104+

surface: { surface: "canvas", scopeKey: "other-plugin:canvas" },

105+

capability: "other-token",

106+

expiresAtMs: 200,

107+

});

108+
109+

expect(client.pluginNodeCapabilities).toEqual({

110+

"canvas\u0000canvas-plugin:canvas": { capability: "canvas-token", expiresAtMs: 100 },

111+

"canvas\u0000other-plugin:canvas": { capability: "other-token", expiresAtMs: 200 },

112+

});

113+

});

114+
94115

test("indexes plugin capability surfaces with shortest ttl per surface", () => {

95116

expect(

96117

indexPluginNodeCapabilitySurfaces([

@@ -164,6 +185,32 @@ describe("plugin node capability helpers", () => {

164185

).toBe(false);

165186

});

166187
188+

test("does not authorize the same surface token for a different plugin scope", () => {

189+

const client = makeClient({

190+

pluginNodeCapabilities: {

191+

"canvas\u0000canvas-plugin:canvas": { capability: "canvas-token", expiresAtMs: 1_500 },

192+

},

193+

});

194+

const clients = new Set([client]);

195+
196+

expect(

197+

hasAuthorizedPluginNodeCapability({

198+

clients,

199+

surface: { surface: "canvas", scopeKey: "other-plugin:canvas" },

200+

capability: "canvas-token",

201+

nowMs: 1_000,

202+

}),

203+

).toBe(false);

204+

expect(

205+

hasAuthorizedPluginNodeCapability({

206+

clients,

207+

surface: { surface: "canvas", scopeKey: "canvas-plugin:canvas", ttlMs: 100 },

208+

capability: "canvas-token",

209+

nowMs: 1_000,

210+

}),

211+

).toBe(true);

212+

});

213+
167214

test("rejects expired capabilities", () => {

168215

const client = makeClient({

169216

pluginNodeCapabilities: {

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ export const DEFAULT_PLUGIN_NODE_CAPABILITY_TTL_MS = 10 * 60_000;

99

export type PluginNodeCapabilitySurface = {

1010

surface: string;

1111

ttlMs?: number;

12+

scopeKey?: string;

1213

};

1314
1415

export type PluginNodeCapabilityClient = {

@@ -56,6 +57,15 @@ function normalizeSurface(raw: string | undefined) {

5657

return trimmed ? trimmed : undefined;

5758

}

5859
60+

function resolvePluginNodeCapabilityStorageKey(surface: PluginNodeCapabilitySurface) {

61+

const normalizedSurface = normalizeSurface(surface.surface);

62+

if (!normalizedSurface) {

63+

return undefined;

64+

}

65+

const scopeKey = surface.scopeKey?.trim();

66+

return scopeKey ? `${normalizedSurface}\0${scopeKey}` : normalizedSurface;

67+

}

68+
5969

export function resolvePluginNodeCapabilityTtlMs(surface: PluginNodeCapabilitySurface) {

6070

return surface.ttlMs && surface.ttlMs > 0 ? surface.ttlMs : DEFAULT_PLUGIN_NODE_CAPABILITY_TTL_MS;

6171

}

@@ -175,11 +185,12 @@ export function setClientPluginNodeCapability(params: {

175185

expiresAtMs: number;

176186

}) {

177187

const surface = normalizeSurface(params.surface.surface);

178-

if (!surface) {

188+

const storageKey = resolvePluginNodeCapabilityStorageKey(params.surface);

189+

if (!surface || !storageKey) {

179190

return;

180191

}

181192

params.client.pluginNodeCapabilities ??= {};

182-

params.client.pluginNodeCapabilities[surface] = {

193+

params.client.pluginNodeCapabilities[storageKey] = {

183194

capability: params.capability,

184195

expiresAtMs: params.expiresAtMs,

185196

};

@@ -236,13 +247,14 @@ export function hasAuthorizedPluginNodeCapability(params: {

236247

nowMs?: number;

237248

}) {

238249

const surface = normalizeSurface(params.surface.surface);

239-

if (!surface) {

250+

const storageKey = resolvePluginNodeCapabilityStorageKey(params.surface);

251+

if (!surface || !storageKey) {

240252

return false;

241253

}

242254

const nowMs = params.nowMs ?? Date.now();

243255

const ttlMs = resolvePluginNodeCapabilityTtlMs(params.surface);

244256

for (const client of params.clients) {

245-

const entry = client.pluginNodeCapabilities?.[surface];

257+

const entry = client.pluginNodeCapabilities?.[storageKey];

246258

if (!entry || entry.expiresAtMs <= nowMs) {

247259

continue;

248260

}

Original file line numberDiff line numberDiff line change

@@ -805,6 +805,7 @@ export function attachGatewayUpgradeHandler(opts: {

805805

httpServer: HttpServer;

806806

wss: WebSocketServer;

807807

handlePluginUpgrade?: PluginHttpUpgradeHandler;

808+

shouldEnforcePluginGatewayAuth?: (pathContext: PluginRoutePathContext) => boolean;

808809

resolvePluginNodeCapabilityRoute?: ResolvePluginNodeCapabilityRoute;

809810

clients: Set<GatewayWsClient>;

810811

preauthConnectionBudget: PreauthConnectionBudget;

@@ -819,6 +820,7 @@ export function attachGatewayUpgradeHandler(opts: {

819820

httpServer,

820821

wss,

821822

handlePluginUpgrade,

823+

shouldEnforcePluginGatewayAuth,

822824

resolvePluginNodeCapabilityRoute,

823825

clients,

824826

preauthConnectionBudget,

@@ -865,9 +867,44 @@ export function attachGatewayUpgradeHandler(opts: {

865867

}

866868

}

867869

if (handlePluginUpgrade) {

870+

let pluginGatewayAuthSatisfied = false;

871+

let pluginGatewayRequestAuth: AuthorizedGatewayHttpRequest | undefined;

872+

let pluginGatewayRequestOperatorScopes: string[] | undefined;

873+

const enforcePluginGatewayAuth = (

874+

shouldEnforcePluginGatewayAuth ?? shouldEnforceDefaultPluginGatewayAuth

875+

)(pathContext);

876+

if (

877+

enforcePluginGatewayAuth &&

878+

!(await getCachedPluginGatewayAuthBypassPaths(configSnapshot)).has(url.pathname)

879+

) {

880+

const { checkGatewayHttpRequestAuth } = await getHttpAuthUtilsModule();

881+

const authCheck = await checkGatewayHttpRequestAuth({

882+

req,

883+

auth: resolvedAuth,

884+

trustedProxies,

885+

allowRealIpFallback,

886+

rateLimiter,

887+

cfg: configSnapshot,

888+

});

889+

if (!authCheck.ok) {

890+

writeUpgradeAuthFailure(socket, authCheck.authResult);

891+

socket.destroy();

892+

return;

893+

}

894+

pluginGatewayAuthSatisfied = true;

895+

pluginGatewayRequestAuth = authCheck.requestAuth;

896+

const { resolvePluginRouteRuntimeOperatorScopes } =

897+

await getPluginRouteRuntimeScopesModule();

898+

pluginGatewayRequestOperatorScopes = resolvePluginRouteRuntimeOperatorScopes(

899+

req,

900+

authCheck.requestAuth,

901+

);

902+

}

868903

if (

869904

await handlePluginUpgrade(req, socket, head, pathContext, {

870-

gatewayAuthSatisfied: false,

905+

gatewayAuthSatisfied: pluginGatewayAuthSatisfied,

906+

gatewayRequestAuth: pluginGatewayRequestAuth,

907+

gatewayRequestOperatorScopes: pluginGatewayRequestOperatorScopes,

871908

})

872909

) {

873910

return;