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

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
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
Require explicit browser device pairing [AI] (#81289) · o...
pgondhi987 · 2026-05-13 · via Recent Commits to openclaw:main

@@ -16,6 +16,11 @@ import {

1616

publicKeyRawBase64UrlFromPem,

1717

signDevicePayload,

1818

} from "../infra/device-identity.js";

19+

import {

20+

approveDevicePairing,

21+

getPairedDevice,

22+

requestDevicePairing,

23+

} from "../infra/device-pairing.js";

1924

import { drainSystemEvents, peekSystemEvents } from "../infra/system-events.js";

2025

import { rawDataToString } from "../infra/ws.js";

2126

import { resetLogger, setLoggerOverride } from "../logging.js";

@@ -838,42 +843,121 @@ export function testOnlyResolveAuthTokenForSignature(opts?: {

838843

return resolveAuthTokenForSignature(opts);

839844

}

840845846+

type ConnectReqClient = {

847+

id: string;

848+

displayName?: string;

849+

version: string;

850+

platform: string;

851+

mode: string;

852+

deviceFamily?: string;

853+

modelIdentifier?: string;

854+

instanceId?: string;

855+

};

856+857+

type ConnectReqDevice = {

858+

id: string;

859+

publicKey: string;

860+

signature: string;

861+

signedAt: number;

862+

nonce?: string;

863+

};

864+865+

type ConnectReqOptions = {

866+

token?: string;

867+

bootstrapToken?: string;

868+

deviceToken?: string;

869+

password?: string;

870+

skipDefaultAuth?: boolean;

871+

minProtocol?: number;

872+

maxProtocol?: number;

873+

client?: ConnectReqClient;

874+

role?: string;

875+

scopes?: string[];

876+

caps?: string[];

877+

commands?: string[];

878+

permissions?: Record<string, boolean>;

879+

device?: ConnectReqDevice | null;

880+

deviceIdentityPath?: string;

881+

skipConnectChallengeNonce?: boolean;

882+

prePairDevice?: boolean;

883+

timeoutMs?: number;

884+

};

885+886+

function shouldPrePairTestDevice(params: {

887+

client: ConnectReqClient;

888+

opts?: ConnectReqOptions;

889+

}): boolean {

890+

if (params.opts?.device !== undefined || params.opts?.deviceToken) {

891+

return false;

892+

}

893+

if (params.opts?.prePairDevice !== undefined) {

894+

return params.opts.prePairDevice;

895+

}

896+

if (params.opts?.skipDefaultAuth === true) {

897+

return false;

898+

}

899+

return (

900+

params.client.mode === GATEWAY_CLIENT_MODES.WEBCHAT ||

901+

params.client.id === GATEWAY_CLIENT_NAMES.WEBCHAT_UI

902+

);

903+

}

904+905+

function pairedDeviceAllowsScopes(params: {

906+

paired: Awaited<ReturnType<typeof getPairedDevice>>;

907+

publicKey: string;

908+

role: string;

909+

scopes: string[];

910+

}): boolean {

911+

if (!params.paired || params.paired.publicKey !== params.publicKey) {

912+

return false;

913+

}

914+

const pairedRoles = params.paired.roles ?? (params.paired.role ? [params.paired.role] : []);

915+

if (!pairedRoles.includes(params.role)) {

916+

return false;

917+

}

918+

const approvedScopes = params.paired.approvedScopes ?? params.paired.scopes ?? [];

919+

return params.scopes.every((scope) => approvedScopes.includes(scope));

920+

}

921+922+

async function prePairTestDevice(params: {

923+

device: ConnectReqDevice;

924+

client: ConnectReqClient;

925+

role: string;

926+

scopes: string[];

927+

}): Promise<void> {

928+

const paired = await getPairedDevice(params.device.id);

929+

if (

930+

pairedDeviceAllowsScopes({

931+

paired,

932+

publicKey: params.device.publicKey,

933+

role: params.role,

934+

scopes: params.scopes,

935+

})

936+

) {

937+

return;

938+

}

939+

const pairing = await requestDevicePairing({

940+

deviceId: params.device.id,

941+

publicKey: params.device.publicKey,

942+

role: params.role,

943+

scopes: params.scopes,

944+

clientId: params.client.id,

945+

clientMode: params.client.mode,

946+

platform: params.client.platform,

947+

deviceFamily: params.client.deviceFamily,

948+

silent: false,

949+

});

950+

const approved = await approveDevicePairing(pairing.request.requestId, {

951+

callerScopes: params.scopes,

952+

});

953+

if (approved?.status !== "approved") {

954+

throw new Error(`failed to pre-pair test device ${params.device.id}`);

955+

}

956+

}

957+841958

export async function connectReq(

842959

ws: WebSocket,

843-

opts?: {

844-

token?: string;

845-

bootstrapToken?: string;

846-

deviceToken?: string;

847-

password?: string;

848-

skipDefaultAuth?: boolean;

849-

minProtocol?: number;

850-

maxProtocol?: number;

851-

client?: {

852-

id: string;

853-

displayName?: string;

854-

version: string;

855-

platform: string;

856-

mode: string;

857-

deviceFamily?: string;

858-

modelIdentifier?: string;

859-

instanceId?: string;

860-

};

861-

role?: string;

862-

scopes?: string[];

863-

caps?: string[];

864-

commands?: string[];

865-

permissions?: Record<string, boolean>;

866-

device?: {

867-

id: string;

868-

publicKey: string;

869-

signature: string;

870-

signedAt: number;

871-

nonce?: string;

872-

} | null;

873-

deviceIdentityPath?: string;

874-

skipConnectChallengeNonce?: boolean;

875-

timeoutMs?: number;

876-

},

960+

opts?: ConnectReqOptions,

877961

): Promise<ConnectResponse> {

878962

const { randomUUID } = await import("node:crypto");

879963

const id = randomUUID();

@@ -956,6 +1040,20 @@ export async function connectReq(

9561040

nonce: connectChallengeNonce,

9571041

};

9581042

})();

1043+

if (

1044+

device &&

1045+

shouldPrePairTestDevice({

1046+

client,

1047+

opts,

1048+

})

1049+

) {

1050+

await prePairTestDevice({

1051+

device,

1052+

client,

1053+

role,

1054+

scopes: requestedScopes,

1055+

});

1056+

}

9591057

const isResponseForId = (o: unknown): boolean => {

9601058

if (!o || typeof o !== "object" || Array.isArray(o)) {

9611059

return false;