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

推荐订阅源

N
Netflix TechBlog - Medium
J
Java Code Geeks
爱范儿
爱范儿
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
I
InfoQ
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

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(config): harden persisted boundary repair · openclaw/...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -77,6 +77,38 @@ function isRecord(value: unknown): value is Record<string, unknown> {

7777

return !!value && typeof value === "object" && !Array.isArray(value);

7878

}

797980+

function normalizeOptionalCredentialString(value: unknown): string | undefined {

81+

if (typeof value !== "string") {

82+

return undefined;

83+

}

84+

const trimmed = value.trim();

85+

return trimmed ? value : undefined;

86+

}

87+88+

function normalizeOptionalCredentialBoolean(value: unknown): boolean | undefined {

89+

return typeof value === "boolean" ? value : undefined;

90+

}

91+92+

function normalizeExpiryField(value: unknown): number | undefined {

93+

if (value === undefined) {

94+

return undefined;

95+

}

96+

return typeof value === "number" && Number.isFinite(value) && value > 0 ? value : 0;

97+

}

98+99+

function normalizeCredentialMetadata(value: unknown): Record<string, string> | undefined {

100+

if (!isRecord(value)) {

101+

return undefined;

102+

}

103+

const metadata: Record<string, string> = {};

104+

for (const [key, entry] of Object.entries(value)) {

105+

if (typeof entry === "string") {

106+

metadata[key] = entry;

107+

}

108+

}

109+

return Object.keys(metadata).length > 0 ? metadata : undefined;

110+

}

111+80112

function normalizeSecretBackedField(params: {

81113

entry: Record<string, unknown>;

82114

valueField: "key" | "token";

@@ -93,6 +125,25 @@ function normalizeSecretBackedField(params: {

93125

delete params.entry[params.valueField];

94126

}

95127128+

function normalizeCommonCredentialFields(entry: Record<string, unknown>): Record<string, unknown> {

129+

const normalized: Record<string, unknown> = {

130+

provider: typeof entry.provider === "string" ? normalizeProviderId(entry.provider) : "",

131+

};

132+

const copyToAgents = normalizeOptionalCredentialBoolean(entry.copyToAgents);

133+

if (copyToAgents !== undefined) {

134+

normalized.copyToAgents = copyToAgents;

135+

}

136+

const email = normalizeOptionalCredentialString(entry.email);

137+

if (email !== undefined) {

138+

normalized.email = email;

139+

}

140+

const displayName = normalizeOptionalCredentialString(entry.displayName);

141+

if (displayName !== undefined) {

142+

normalized.displayName = displayName;

143+

}

144+

return normalized;

145+

}

146+96147

function normalizeRawCredentialEntry(raw: Record<string, unknown>): Partial<AuthProfileCredential> {

97148

const entry = { ...raw } as Record<string, unknown>;

98149

if (!("type" in entry) && typeof entry["mode"] === "string") {

@@ -103,6 +154,73 @@ function normalizeRawCredentialEntry(raw: Record<string, unknown>): Partial<Auth

103154

}

104155

normalizeSecretBackedField({ entry, valueField: "key", refField: "keyRef" });

105156

normalizeSecretBackedField({ entry, valueField: "token", refField: "tokenRef" });

157+

if (entry.type === "api_key") {

158+

const normalized: Record<string, unknown> = {

159+

type: "api_key",

160+

...normalizeCommonCredentialFields(entry),

161+

};

162+

const key = normalizeOptionalCredentialString(entry.key);

163+

const keyRef = coerceSecretRef(entry.keyRef);

164+

const metadata = normalizeCredentialMetadata(entry.metadata);

165+

if (key !== undefined) {

166+

normalized.key = key;

167+

}

168+

if (keyRef) {

169+

normalized.keyRef = keyRef;

170+

}

171+

if (metadata) {

172+

normalized.metadata = metadata;

173+

}

174+

return normalized as Partial<AuthProfileCredential>;

175+

}

176+

if (entry.type === "token") {

177+

const normalized: Record<string, unknown> = {

178+

type: "token",

179+

...normalizeCommonCredentialFields(entry),

180+

};

181+

const token = normalizeOptionalCredentialString(entry.token);

182+

const tokenRef = coerceSecretRef(entry.tokenRef);

183+

const expires = normalizeExpiryField(entry.expires);

184+

if (token !== undefined) {

185+

normalized.token = token;

186+

}

187+

if (tokenRef) {

188+

normalized.tokenRef = tokenRef;

189+

}

190+

if (expires !== undefined) {

191+

normalized.expires = expires;

192+

}

193+

return normalized as Partial<AuthProfileCredential>;

194+

}

195+

if (entry.type === "oauth") {

196+

const normalized: Record<string, unknown> = {

197+

type: "oauth",

198+

...normalizeCommonCredentialFields(entry),

199+

};

200+

for (const field of [

201+

"access",

202+

"refresh",

203+

"idToken",

204+

"clientId",

205+

"enterpriseUrl",

206+

"projectId",

207+

"accountId",

208+

"chatgptPlanType",

209+

] as const) {

210+

const value = normalizeOptionalCredentialString(entry[field]);

211+

if (value !== undefined) {

212+

normalized[field] = value;

213+

}

214+

}

215+

const expires = normalizeExpiryField(entry.expires);

216+

if (expires !== undefined) {

217+

normalized.expires = expires;

218+

}

219+

if (isOAuthProfileSecretRef(entry.oauthRef)) {

220+

normalized.oauthRef = entry.oauthRef;

221+

}

222+

return normalized;

223+

}

106224

return entry as Partial<AuthProfileCredential>;

107225

}

108226

@@ -528,22 +646,23 @@ function parseCredentialEntry(

528646

raw: unknown,

529647

fallbackProvider?: string,

530648

): { ok: true; credential: AuthProfileCredential } | { ok: false; reason: CredentialRejectReason } {

531-

if (!raw || typeof raw !== "object") {

649+

if (!isRecord(raw)) {

532650

return { ok: false, reason: "non_object" };

533651

}

534-

const typed = normalizeRawCredentialEntry(raw as Record<string, unknown>);

652+

const typed = normalizeRawCredentialEntry(raw);

535653

if (!AUTH_PROFILE_TYPES.has(typed.type as AuthProfileCredential["type"])) {

536654

return { ok: false, reason: "invalid_type" };

537655

}

538656

const provider = typed.provider ?? fallbackProvider;

539-

if (typeof provider !== "string" || provider.trim().length === 0) {

657+

const normalizedProvider = typeof provider === "string" ? normalizeProviderId(provider) : "";

658+

if (!normalizedProvider) {

540659

return { ok: false, reason: "missing_provider" };

541660

}

542661

return {

543662

ok: true,

544663

credential: {

545664

...typed,

546-

provider,

665+

provider: normalizedProvider,

547666

} as AuthProfileCredential,

548667

};

549668

}

@@ -609,8 +728,9 @@ export function coercePersistedAuthProfileStore(raw: unknown): AuthProfileStore

609728

normalized[key] = parsed.credential;

610729

}

611730

warnRejectedCredentialEntries("auth-profiles.json", rejected);

731+

const version = Number(record.version ?? AUTH_STORE_VERSION);

612732

return {

613-

version: Number(record.version ?? AUTH_STORE_VERSION),

733+

version: Number.isFinite(version) && version > 0 ? version : AUTH_STORE_VERSION,

614734

profiles: normalized,

615735

...coerceAuthProfileState(record),

616736

};