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

推荐订阅源

S
SegmentFault 最新的问题
J
Java Code Geeks
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
B
Blog
A
About on SuperTechFans
有赞技术团队
有赞技术团队
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
N
Netflix TechBlog - Medium
C
Check Point Blog
Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 叶小钗
T
Tailwind CSS 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/schema): require hello-ok auth · openclaw/ope...
martingarram · 2026-04-27 · via Recent Commits to openclaw:main

File tree

  • apps

    • macos

      • Sources/OpenClawProtocol

      • Tests/OpenClawIPCTests

    • shared/OpenClawKit/Sources

      • OpenClawKit

      • OpenClawProtocol

  • docs/gateway

  • src/gateway/protocol/schema

  • ui/src/ui

    • controllers

Original file line numberDiff line numberDiff line change

@@ -82,7 +82,7 @@ public struct HelloOk: Codable, Sendable {

8282

public let features: [String: AnyCodable]

8383

public let snapshot: Snapshot

8484

public let canvashosturl: String?

85-

public let auth: [String: AnyCodable]?

85+

public let auth: [String: AnyCodable]

8686

public let policy: [String: AnyCodable]

8787
8888

public init(

@@ -92,7 +92,7 @@ public struct HelloOk: Codable, Sendable {

9292

features: [String: AnyCodable],

9393

snapshot: Snapshot,

9494

canvashosturl: String?,

95-

auth: [String: AnyCodable]?,

95+

auth: [String: AnyCodable],

9696

policy: [String: AnyCodable])

9797

{

9898

self.type = type

Original file line numberDiff line numberDiff line change

@@ -45,6 +45,7 @@ enum GatewayWebSocketTestSupport {

4545

"stateVersion": { "presence": 0, "health": 0 },

4646

"uptimeMs": 0

4747

},

48+

"auth": { "role": "operator", "scopes": [] },

4849

"policy": { "maxPayload": 1, "maxBufferedBytes": 1, "tickIntervalMs": 30000 }

4950

}

5051

}

Original file line numberDiff line numberDiff line change

@@ -23,7 +23,7 @@ struct MacGatewayChatTransportMappingTests {

2323

features: [:],

2424

snapshot: snapshot,

2525

canvashosturl: nil,

26-

auth: nil,

26+

auth: [:],

2727

policy: [:])

2828
2929

let mapped = MacGatewayChatTransport.mapPushToTransportEvent(.snapshot(hello))

Original file line numberDiff line numberDiff line change

@@ -663,7 +663,8 @@ public actor GatewayChannelActor {

663663

} else if let tick = ok.policy["tickIntervalMs"]?.value as? Int {

664664

self.tickIntervalMs = Double(tick)

665665

}

666-

if let auth = ok.auth, let identity {

666+

let auth = ok.auth

667+

if let identity {

667668

if let deviceToken = auth["deviceToken"]?.value as? String {

668669

let authRole = auth["role"]?.value as? String ?? role

669670

let scopes = (auth["scopes"]?.value as? [ProtoAnyCodable])?

Original file line numberDiff line numberDiff line change

@@ -82,7 +82,7 @@ public struct HelloOk: Codable, Sendable {

8282

public let features: [String: AnyCodable]

8383

public let snapshot: Snapshot

8484

public let canvashosturl: String?

85-

public let auth: [String: AnyCodable]?

85+

public let auth: [String: AnyCodable]

8686

public let policy: [String: AnyCodable]

8787
8888

public init(

@@ -92,7 +92,7 @@ public struct HelloOk: Codable, Sendable {

9292

features: [String: AnyCodable],

9393

snapshot: Snapshot,

9494

canvashosturl: String?,

95-

auth: [String: AnyCodable]?,

95+

auth: [String: AnyCodable],

9696

policy: [String: AnyCodable])

9797

{

9898

self.type = type

Original file line numberDiff line numberDiff line change

@@ -84,6 +84,10 @@ Gateway → Client:

8484

"server": { "version": "", "connId": "" },

8585

"features": { "methods": [""], "events": [""] },

8686

"snapshot": { "…": "" },

87+

"auth": {

88+

"role": "operator",

89+

"scopes": ["operator.read", "operator.write"]

90+

},

8791

"policy": {

8892

"maxPayload": 26214400,

8993

"maxBufferedBytes": 52428800,

@@ -94,12 +98,11 @@ Gateway → Client:

9498

```

9599
96100

`server`, `features`, `snapshot`, and `policy` are all required by the schema

97-

(`src/gateway/protocol/schema/frames.ts`). `canvasHostUrl` is optional. `auth`

98-

reports the negotiated role/scopes when available, and includes `deviceToken`

99-

when the gateway issues one.

101+

(`src/gateway/protocol/schema/frames.ts`). `auth` is also required and reports

102+

the negotiated role/scopes. `canvasHostUrl` is optional.

100103
101-

When no device token is issued, `hello-ok.auth` can still report the negotiated

102-

permissions:

104+

When no device token is issued, `hello-ok.auth` reports the negotiated

105+

permissions without token fields:

103106
104107

```json

105108

{

Original file line numberDiff line numberDiff line change

@@ -89,29 +89,27 @@ export const HelloOkSchema = Type.Object(

8989

),

9090

snapshot: SnapshotSchema,

9191

canvasHostUrl: Type.Optional(NonEmptyString),

92-

auth: Type.Optional(

93-

Type.Object(

94-

{

95-

deviceToken: Type.Optional(NonEmptyString),

96-

role: NonEmptyString,

97-

scopes: Type.Array(NonEmptyString),

98-

issuedAtMs: Type.Optional(Type.Integer({ minimum: 0 })),

99-

deviceTokens: Type.Optional(

100-

Type.Array(

101-

Type.Object(

102-

{

103-

deviceToken: NonEmptyString,

104-

role: NonEmptyString,

105-

scopes: Type.Array(NonEmptyString),

106-

issuedAtMs: Type.Integer({ minimum: 0 }),

107-

},

108-

{ additionalProperties: false },

109-

),

92+

auth: Type.Object(

93+

{

94+

deviceToken: Type.Optional(NonEmptyString),

95+

role: NonEmptyString,

96+

scopes: Type.Array(NonEmptyString),

97+

issuedAtMs: Type.Optional(Type.Integer({ minimum: 0 })),

98+

deviceTokens: Type.Optional(

99+

Type.Array(

100+

Type.Object(

101+

{

102+

deviceToken: NonEmptyString,

103+

role: NonEmptyString,

104+

scopes: Type.Array(NonEmptyString),

105+

issuedAtMs: Type.Integer({ minimum: 0 }),

106+

},

107+

{ additionalProperties: false },

110108

),

111109

),

112-

},

113-

{ additionalProperties: false },

114-

),

110+

),

111+

},

112+

{ additionalProperties: false },

115113

),

116114

policy: Type.Object(

117115

{

Original file line numberDiff line numberDiff line change

@@ -76,6 +76,7 @@ vi.mock("./gateway.ts", async (importOriginal) => {

7676

type: "hello-ok",

7777

protocol: 3,

7878

snapshot: {},

79+

auth: { role: "operator", scopes: [] },

7980

},

8081

);

8182

},

@@ -314,6 +315,7 @@ describe("connectGateway", () => {

314315

type: "hello-ok",

315316

protocol: 3,

316317

server: { version: "2.0.0" },

318+

auth: { role: "operator", scopes: [] },

317319

snapshot: {},

318320

});

319321

@@ -349,6 +351,7 @@ describe("connectGateway", () => {

349351

type: "hello-ok",

350352

protocol: 3,

351353

server: { version: "1.0.0" },

354+

auth: { role: "operator", scopes: [] },

352355

snapshot: {},

353356

});

354357

@@ -387,6 +390,7 @@ describe("connectGateway", () => {

387390

type: "hello-ok",

388391

protocol: 3,

389392

server: { version: "1.0.0" },

393+

auth: { role: "operator", scopes: [] },

390394

snapshot: {},

391395

});

392396
Original file line numberDiff line numberDiff line change

@@ -231,6 +231,7 @@ describe("dreaming controller", () => {

231231

state.hello = {

232232

type: "hello-ok",

233233

protocol: 3,

234+

auth: { role: "operator", scopes: [] },

234235

features: { methods: ["wiki.importInsights"] },

235236

};

236237

state.configSnapshot = {

@@ -366,6 +367,7 @@ describe("dreaming controller", () => {

366367

state.hello = {

367368

type: "hello-ok",

368369

protocol: 3,

370+

auth: { role: "operator", scopes: [] },

369371

features: { methods: ["doctor.memory.status"] },

370372

};

371373

state.configSnapshot = {

@@ -401,6 +403,7 @@ describe("dreaming controller", () => {

401403

state.hello = {

402404

type: "hello-ok",

403405

protocol: 3,

406+

auth: { role: "operator", scopes: [] },

404407

features: { methods: ["wiki.palace"] },

405408

};

406409

state.configSnapshot = {

@@ -536,6 +539,7 @@ describe("dreaming controller", () => {

536539

state.hello = {

537540

type: "hello-ok",

538541

protocol: 3,

542+

auth: { role: "operator", scopes: [] },

539543

features: { methods: ["doctor.memory.status"] },

540544

};

541545

state.configSnapshot = {

Original file line numberDiff line numberDiff line change

@@ -118,10 +118,10 @@ export type GatewayHelloOk = {

118118

};

119119

features?: { methods?: string[]; events?: string[] };

120120

snapshot?: unknown;

121-

auth?: {

121+

auth: {

122122

deviceToken?: string;

123-

role?: string;

124-

scopes?: string[];

123+

role: string;

124+

scopes: string[];

125125

issuedAtMs?: number;

126126

};

127127

canvasHostUrl?: string;