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

推荐订阅源

J
Java Code Geeks
M
MIT News - Artificial intelligence
D
Docker
S
SegmentFault 最新的问题
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
C
Check Point Blog
GbyAI
GbyAI
美团技术团队
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers 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
docs: document gateway auth helpers · openclaw/openclaw@d...
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway auth surface resolver.

2+

// Centralizes credential precedence for probes and interactive clients.

13

import type { OpenClawConfig } from "../config/types.js";

24

import { hasConfiguredSecretInput } from "../config/types.secrets.js";

35

import { trimToUndefined, type ExplicitGatewayAuth } from "./credentials.js";

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway auth-token source conflict detector.

2+

// Warns when local env auth can diverge from managed gateway config auth.

13

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

24

import type { OpenClawConfig } from "../config/types.openclaw.js";

35

import { normalizeSecretInputString, resolveSecretInputRef } from "../config/types.secrets.js";

@@ -27,6 +29,8 @@ export function resolveGatewayAuthTokenSourceConflict(params: {

2729

}

2830
2931

if (params.env.OPENCLAW_SERVICE_KIND?.trim() === GATEWAY_SERVICE_KIND) {

32+

// The managed gateway process intentionally uses its service env. The

33+

// warning is for client shells where env precedence can surprise users.

3034

return null;

3135

}

3236
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway control-reply text classifier.

2+

// Suppresses internal auto-reply tokens before they leak to chat surfaces.

13

import { isSilentReplyText, SILENT_REPLY_TOKEN } from "../auto-reply/tokens.js";

24
35

const SUPPRESSED_CONTROL_REPLY_TOKENS = [

@@ -57,6 +59,8 @@ export function isSuppressedControlReplyLeadFragment(text: string): boolean {

5759

if (token !== SILENT_REPLY_TOKEN && trimmed !== trimmed.toUpperCase()) {

5860

return false;

5961

}

62+

// Bare fragments are common while streaming. Require a minimum prefix so

63+

// ordinary words do not disappear just because they start like a token.

6064

return normalized.length >= MIN_BARE_PREFIX_LENGTH_BY_TOKEN[token];

6165

});

6266

}

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway legacy environment warning.

2+

// Emits a one-shot notice for ignored pre-OpenClaw environment prefixes.

13

import { isVitestRuntimeEnv } from "../infra/env.js";

24
35

// Legacy env warnings are process-wide and intentionally one-shot so normal

@@ -15,6 +17,8 @@ export function warnLegacyOpenClawEnvVars(env: NodeJS.ProcessEnv = process.env):

1517
1618

const prefixCounts = new Map<LegacyEnvPrefix, number>();

1719

for (const key of Object.keys(env)) {

20+

// Count by prefix only; never print env names or values because some legacy

21+

// names may still encode account/provider secrets.

1822

const prefix = LEGACY_ENV_PREFIXES.find((candidate) => key.startsWith(candidate));

1923

if (prefix) {

2024

prefixCounts.set(prefix, (prefixCounts.get(prefix) ?? 0) + 1);

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway known-weak credential guard.

2+

// Rejects published placeholder auth values before the gateway starts.

13

import type { ResolvedGatewayAuth } from "./auth.js";

24
35

export const KNOWN_WEAK_GATEWAY_TOKEN_PLACEHOLDERS = [

@@ -25,6 +27,8 @@ const KNOWN_WEAK_GATEWAY_PASSWORDS: ReadonlySet<string> = new Set(

2527
2628

export function assertGatewayAuthNotKnownWeak(auth: ResolvedGatewayAuth): void {

2729

if (auth.mode === "token") {

30+

// Token/password checks stay separate because auth mode is exclusive and

31+

// error text should name the credential the operator must rotate.

2832

const token = auth.token?.trim() ?? "";

2933

if (token && KNOWN_WEAK_GATEWAY_TOKENS.has(token)) {

3034

throw new Error(

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Local embedded Gateway request context.

2+

// Lets local agent paths reuse Gateway server methods without starting a server.

13

import { loadManifestModelCatalog } from "../agents/model-catalog.js";

24

import type { CliDeps } from "../cli/deps.types.js";

35

import type { OpenClawConfig } from "../config/types.openclaw.js";

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway operator scope constants.

2+

// Defines the closed set accepted by connection auth and method policy.

13

export const ADMIN_SCOPE = "operator.admin" as const;

24

export const READ_SCOPE = "operator.read" as const;

35

export const WRITE_SCOPE = "operator.write" as const;

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway connection role policy.

2+

// Separates node-role RPCs from operator RPCs before method scope checks.

13

import { isNodeRoleMethod } from "./method-scopes.js";

24
35

const GATEWAY_ROLES = ["operator", "node"] as const;