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

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
MyScale Blog
MyScale 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(gateway): gate talk secret bootstrap handoff (#85690)...
ngutman · 2026-05-25 · via Recent Commits to openclaw:main

@@ -89,6 +89,7 @@ type ApprovedPairingResult = Extract<

8989

>;

9090

type ApprovedPairingDevice = ApprovedPairingResult["device"];

9191

const INTERNAL_PAIRING_SCOPES = ["operator.write", "operator.pairing"];

92+

const INTERNAL_SETUP_SCOPES = [...INTERNAL_PAIRING_SCOPES, "operator.talk.secrets"];

92939394

function createApi(params?: {

9495

config?: OpenClawPluginApi["config"];

@@ -286,7 +287,7 @@ describe("device-pair /pair qr", () => {

286287

const result = await command.handler(

287288

createCommandContext({

288289

channel: "webchat",

289-

gatewayClientScopes: ["operator.write", "operator.pairing"],

290+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

290291

}),

291292

);

292293

const payload = result as { text?: string; mediaUrl?: string; sensitiveMedia?: boolean };

@@ -342,6 +343,23 @@ describe("device-pair /pair qr", () => {

342343

});

343344

});

344345346+

it("rejects qr setup for internal callers without Talk secret scope", async () => {

347+

const command = registerPairCommand();

348+

const result = await command.handler(

349+

createCommandContext({

350+

channel: "webchat",

351+

args: "qr",

352+

commandBody: "/pair qr",

353+

gatewayClientScopes: INTERNAL_PAIRING_SCOPES,

354+

}),

355+

);

356+357+

expect(pluginApiMocks.issueDeviceBootstrapToken).not.toHaveBeenCalled();

358+

expect(result).toEqual({

359+

text: "⚠️ Setup code handoff includes Talk secrets and requires operator.talk.secrets.",

360+

});

361+

});

362+345363

it("reissues the bootstrap token if webchat QR rendering fails before falling back", async () => {

346364

pluginApiMocks.issueDeviceBootstrapToken

347365

.mockResolvedValueOnce({

@@ -358,7 +376,7 @@ describe("device-pair /pair qr", () => {

358376

const result = await command.handler(

359377

createCommandContext({

360378

channel: "webchat",

361-

gatewayClientScopes: ["operator.write", "operator.pairing"],

379+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

362380

}),

363381

);

364382

const text = requireText(result);

@@ -478,7 +496,7 @@ describe("device-pair /pair qr", () => {

478496

const result = await command.handler(

479497

createCommandContext({

480498

...testCase.ctx,

481-

gatewayClientScopes: INTERNAL_PAIRING_SCOPES,

499+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

482500

}),

483501

);

484502

const text = requireText(result);

@@ -538,7 +556,7 @@ describe("device-pair /pair qr", () => {

538556

createCommandContext({

539557

channel: "discord",

540558

senderId: "123",

541-

gatewayClientScopes: INTERNAL_PAIRING_SCOPES,

559+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

542560

}),

543561

);

544562

const text = requireText(result);

@@ -557,7 +575,7 @@ describe("device-pair /pair qr", () => {

557575

createCommandContext({

558576

channel: "msteams",

559577

senderId: "8:orgid:123",

560-

gatewayClientScopes: INTERNAL_PAIRING_SCOPES,

578+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

561579

}),

562580

);

563581

const text = requireText(result);

@@ -678,6 +696,23 @@ describe("device-pair /pair default setup code", () => {

678696

});

679697

});

680698699+

it("rejects setup code issuance for internal callers without Talk secret scope", async () => {

700+

const command = registerPairCommand();

701+

const result = await command.handler(

702+

createCommandContext({

703+

channel: "webchat",

704+

args: "",

705+

commandBody: "/pair",

706+

gatewayClientScopes: INTERNAL_PAIRING_SCOPES,

707+

}),

708+

);

709+710+

expect(pluginApiMocks.issueDeviceBootstrapToken).not.toHaveBeenCalled();

711+

expect(result).toEqual({

712+

text: "⚠️ Setup code handoff includes Talk secrets and requires operator.talk.secrets.",

713+

});

714+

});

715+681716

it("fails closed for webchat setup code issuance when scopes are absent", async () => {

682717

const command = registerPairCommand();

683718

const result = await command.handler(

@@ -749,7 +784,7 @@ describe("device-pair /pair default setup code", () => {

749784

channel: "webchat",

750785

args: "",

751786

commandBody: "/pair",

752-

gatewayClientScopes: ["operator.write", "operator.pairing"],

787+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

753788

}),

754789

);

755790

const text = requireText(result);

@@ -769,7 +804,7 @@ describe("device-pair /pair default setup code", () => {

769804

channel: "webchat",

770805

args: "",

771806

commandBody: "/pair",

772-

gatewayClientScopes: ["operator.write", "operator.pairing"],

807+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

773808

}),

774809

);

775810

const text = requireText(result);

@@ -789,7 +824,7 @@ describe("device-pair /pair default setup code", () => {

789824

channel: "webchat",

790825

args: "",

791826

commandBody: "/pair",

792-

gatewayClientScopes: ["operator.write", "operator.pairing"],

827+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

793828

}),

794829

);

795830

@@ -808,7 +843,7 @@ describe("device-pair /pair default setup code", () => {

808843

channel: "webchat",

809844

args: "",

810845

commandBody: "/pair",

811-

gatewayClientScopes: ["operator.write", "operator.pairing"],

846+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

812847

}),

813848

);

814849

@@ -827,7 +862,7 @@ describe("device-pair /pair default setup code", () => {

827862

channel: "webchat",

828863

args: "",

829864

commandBody: "/pair",

830-

gatewayClientScopes: ["operator.write", "operator.pairing"],

865+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

831866

}),

832867

);

833868

@@ -861,7 +896,7 @@ describe("device-pair /pair default setup code", () => {

861896

channel: "webchat",

862897

args: "",

863898

commandBody: "/pair",

864-

gatewayClientScopes: ["operator.write", "operator.pairing"],

899+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

865900

}),

866901

);

867902

@@ -890,7 +925,7 @@ describe("device-pair /pair default setup code", () => {

890925

channel: "webchat",

891926

args: "",

892927

commandBody: "/pair",

893-

gatewayClientScopes: ["operator.write", "operator.pairing"],

928+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

894929

}),

895930

);

896931

const text = requireText(result);

@@ -910,7 +945,7 @@ describe("device-pair /pair default setup code", () => {

910945

channel: "webchat",

911946

args: "",

912947

commandBody: "/pair",

913-

gatewayClientScopes: ["operator.write", "operator.pairing"],

948+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

914949

}),

915950

);

916951

@@ -940,7 +975,7 @@ describe("device-pair /pair default setup code", () => {

940975

channel: "webchat",

941976

args: "",

942977

commandBody: "/pair",

943-

gatewayClientScopes: ["operator.write", "operator.pairing"],

978+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

944979

}),

945980

);

946981

@@ -967,7 +1002,7 @@ describe("device-pair /pair default setup code", () => {

9671002

channel: "webchat",

9681003

args: "",

9691004

commandBody: "/pair",

970-

gatewayClientScopes: ["operator.write", "operator.pairing"],

1005+

gatewayClientScopes: INTERNAL_SETUP_SCOPES,

9711006

}),

9721007

);

9731008