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

推荐订阅源

博客园_首页
B
Blog
V
V2EX
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 聂微东
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
J
Java Code Geeks
H
Help Net Security
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
D
Docker
L
LangChain Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
WordPress大学
WordPress大学
V
Visual Studio Blog

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 telegram polling and message action scopes · openclaw...
2026-05-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -668,6 +668,39 @@ describe("handleTelegramAction", () => {

668668

]);

669669

});

670670
671+

it("forwards gateway client scopes into Telegram send target resolution", async () => {

672+

await handleTelegramAction(

673+

{

674+

action: "sendMessage",

675+

to: "@testchannel",

676+

content: "Hello from CLI",

677+

},

678+

telegramConfig(),

679+

{ gatewayClientScopes: ["operator.write"] },

680+

);

681+

const call = mockCall(sendMessageTelegram, 0, "gateway-scoped send");

682+

expect(requireRecord(call[2], "gateway-scoped send options").gatewayClientScopes).toEqual([

683+

"operator.write",

684+

]);

685+

});

686+
687+

it("forwards gateway client scopes into Telegram poll target resolution", async () => {

688+

await handleTelegramAction(

689+

{

690+

action: "poll",

691+

to: "@testchannel",

692+

question: "Ready?",

693+

answers: ["Yes", "No"],

694+

},

695+

telegramConfig(),

696+

{ gatewayClientScopes: ["operator.write"] },

697+

);

698+

const call = mockCall(sendPollTelegram, 0, "gateway-scoped poll");

699+

expect(requireRecord(call[2], "gateway-scoped poll options").gatewayClientScopes).toEqual([

700+

"operator.write",

701+

]);

702+

});

703+
671704

it.each([

672705

{

673706

name: "react",

Original file line numberDiff line numberDiff line change

@@ -241,6 +241,7 @@ export async function handleTelegramAction(

241241

mediaReadFile?: (filePath: string) => Promise<Buffer>;

242242

sessionKey?: string | null;

243243

inboundEventKind?: string;

244+

gatewayClientScopes?: readonly string[];

244245

},

245246

): Promise<AgentToolResult<unknown>> {

246247

const { action, accountId } = {

@@ -404,6 +405,7 @@ export async function handleTelegramAction(

404405

mediaUrl: mediaUrl || undefined,

405406

mediaLocalRoots: options?.mediaLocalRoots,

406407

mediaReadFile: options?.mediaReadFile,

408+

gatewayClientScopes: options?.gatewayClientScopes,

407409

buttons,

408410

replyToMessageId: replyToMessageId ?? undefined,

409411

messageThreadId: messageThreadId ?? undefined,

@@ -491,6 +493,7 @@ export async function handleTelegramAction(

491493

messageThreadId: messageThreadId ?? undefined,

492494

isAnonymous: isAnonymous ?? undefined,

493495

silent: silent ?? undefined,

496+

gatewayClientScopes: options?.gatewayClientScopes,

494497

},

495498

);

496499

notifyVisibleOutboundSuccess(to, messageThreadId);

Original file line numberDiff line numberDiff line change

@@ -63,7 +63,9 @@ describe("telegramMessageActions", () => {

6363

{},

6464

{

6565

mediaLocalRoots: [],

66+

mediaReadFile: undefined,

6667

sessionKey: "telegram-session",

68+

gatewayClientScopes: undefined,

6769

},

6870

);

6971

});

Original file line numberDiff line numberDiff line change

@@ -183,9 +183,11 @@ export const telegramMessageActions: ChannelMessageActionAdapter = {

183183

cfg,

184184

accountId,

185185

mediaLocalRoots,

186+

mediaReadFile,

186187

sessionKey,

187188

inboundEventKind,

188189

toolContext,

190+

gatewayClientScopes,

189191

}) => {

190192

const telegramAction = resolveTelegramMessageActionName(action);

191193

if (!telegramAction) {

@@ -203,7 +205,7 @@ export const telegramMessageActions: ChannelMessageActionAdapter = {

203205

: {}),

204206

},

205207

cfg,

206-

{ mediaLocalRoots, sessionKey, inboundEventKind },

208+

{ mediaLocalRoots, mediaReadFile, sessionKey, inboundEventKind, gatewayClientScopes },

207209

);

208210

},

209211

};

Original file line numberDiff line numberDiff line change

@@ -585,9 +585,10 @@ describe("TelegramPollingSession", () => {

585585

token: "tok",

586586

}),

587587

);

588-

expect(

589-

mockObjectArg(createTelegramBotMock, "createTelegramBot").updateOffset,

590-

).toBeUndefined();

588+

expect(mockObjectArg(createTelegramBotMock, "createTelegramBot").updateOffset).toEqual({

589+

lastUpdateId: null,

590+

onUpdateId: expect.any(Function),

591+

});

591592

expect(init).toHaveBeenCalledBefore(handleUpdate);

592593

expect(handleUpdate).toHaveBeenCalledWith({ update_id: 42, message: { text: "hello" } });

593594

} finally {

Original file line numberDiff line numberDiff line change

@@ -279,12 +279,10 @@ export class TelegramPollingSession {

279279

const fetchAbortController = new AbortController();

280280

this.#activeFetchAbort = fetchAbortController;

281281

const telegramTransport = this.#transportState.acquireForNextCycle();

282-

const updateOffset = this.opts.isolatedIngress?.enabled

283-

? undefined

284-

: {

285-

lastUpdateId: this.opts.getLastUpdateId(),

286-

onUpdateId: this.opts.persistUpdateId,

287-

};

282+

const updateOffset = {

283+

lastUpdateId: this.opts.getLastUpdateId(),

284+

onUpdateId: this.opts.persistUpdateId,

285+

};

288286

try {

289287

return createTelegramBot({

290288

token: this.opts.token,

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,6 @@ import type {

1010

TelegramIngressWorkerMessage,

1111

TelegramIngressWorkerOptions,

1212

} from "./telegram-ingress-worker.js";

13-

import { writeTelegramUpdateOffset } from "./update-offset-store.js";

1413
1514

const options = workerData as TelegramIngressWorkerOptions;

1615

const pollLimit = 100;

@@ -131,11 +130,6 @@ async function main(): Promise<void> {

131130

});

132131

if (lastUpdateId === null || updateId > lastUpdateId) {

133132

lastUpdateId = updateId;

134-

await writeTelegramUpdateOffset({

135-

accountId: options.accountId,

136-

botToken: options.token,

137-

updateId,

138-

});

139133

}

140134

post({ type: "spooled", updateId, queued: result.length });

141135

}

Original file line numberDiff line numberDiff line change

@@ -695,6 +695,7 @@ export type ChannelMessageActionContext = {

695695

};

696696

toolContext?: ChannelThreadingToolContext;

697697

dryRun?: boolean;

698+

gatewayClientScopes?: readonly string[];

698699

};

699700
700701

export type ChannelToolSend = {

Original file line numberDiff line numberDiff line change

@@ -1325,17 +1325,21 @@ describe("gateway send mirroring", () => {

13251325

"send-test-message-action-media-roots",

13261326

);

13271327
1328-

const { respond } = await runMessageActionRequest({

1329-

channel: "telegram",

1330-

action: "sendAttachment",

1331-

params: { chatId: "123", mediaUrl: `${TEST_AGENT_WORKSPACE}/render.png` },

1332-

agentId: "work",

1333-

idempotencyKey: "idem-message-action-media-roots",

1334-

});

1328+

const { respond } = await runMessageActionRequest(

1329+

{

1330+

channel: "telegram",

1331+

action: "sendAttachment",

1332+

params: { chatId: "123", mediaUrl: `${TEST_AGENT_WORKSPACE}/render.png` },

1333+

agentId: "work",

1334+

idempotencyKey: "idem-message-action-media-roots",

1335+

},

1336+

{ connect: { scopes: ["operator.write"] } },

1337+

);

13351338
13361339

expect(firstRespondCall(respond)[0]).toBe(true);

13371340

const actionCall = lastDispatchChannelMessageActionCall();

13381341

expect(actionCall?.mediaLocalRoots).toContain(TEST_AGENT_WORKSPACE);

1342+

expect(actionCall?.gatewayClientScopes).toEqual(["operator.write"]);

13391343

});

13401344
13411345

it("forces senderIsOwner=false for narrowly-scoped callers but honors it for full operators", async () => {

Original file line numberDiff line numberDiff line change

@@ -373,6 +373,7 @@ export const sendHandlers: GatewayRequestHandlers = {

373373

),

374374

toolContext: request.toolContext,

375375

dryRun: false,

376+

gatewayClientScopes: client?.connect?.scopes ?? [],

376377

});

377378

if (!handled) {

378379

const error = errorShape(