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

推荐订阅源

B
Blog
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
F
Fortinet All Blogs
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Jina AI
Jina AI
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
美团技术团队
博客园 - 司徒正美
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
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): recover prefixed config JSON · openclaw/open...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -932,6 +932,92 @@ export function parseConfigJson5(

932932

}

933933

}

934934935+

function findJsonRootSuffix(

936+

raw: string,

937+

json5: { parse: (value: string) => unknown } = JSON5,

938+

): { raw: string; parsed: unknown } | null {

939+

if (/^\s*(?:\{|\[)/.test(raw)) {

940+

return null;

941+

}

942+

let offset = 0;

943+

while (offset < raw.length) {

944+

const nextNewline = raw.indexOf("\n", offset);

945+

const lineEnd = nextNewline === -1 ? raw.length : nextNewline + 1;

946+

const line = raw.slice(offset, lineEnd);

947+

if (/^\s*(?:\{|\[)/.test(line)) {

948+

const candidate = raw.slice(offset);

949+

const parsed = parseConfigJson5(candidate, json5);

950+

return parsed.ok ? { raw: candidate, parsed: parsed.parsed } : null;

951+

}

952+

offset = lineEnd;

953+

}

954+

return null;

955+

}

956+957+

async function persistPrefixedConfigRecovery(params: {

958+

deps: Required<ConfigIoDeps>;

959+

configPath: string;

960+

originalRaw: string;

961+

recoveredRaw: string;

962+

}): Promise<void> {

963+

const observedAt = new Date().toISOString();

964+

const clobberedPath = await persistClobberedConfigSnapshot({

965+

deps: params.deps,

966+

configPath: params.configPath,

967+

raw: params.originalRaw,

968+

observedAt,

969+

});

970+

await params.deps.fs.promises.writeFile(params.configPath, params.recoveredRaw, {

971+

encoding: "utf-8",

972+

mode: 0o600,

973+

});

974+

await params.deps.fs.promises.chmod?.(params.configPath, 0o600).catch(() => {});

975+

params.deps.logger.warn(

976+

`Config auto-stripped non-JSON prefix: ${params.configPath}` +

977+

(clobberedPath ? ` (original saved as ${clobberedPath})` : ""),

978+

);

979+

}

980+981+

async function recoverConfigFromJsonRootSuffixWithDeps(params: {

982+

deps: Required<ConfigIoDeps>;

983+

configPath: string;

984+

snapshot: ConfigFileSnapshot;

985+

}): Promise<boolean> {

986+

if (!params.snapshot.exists || params.snapshot.valid || typeof params.snapshot.raw !== "string") {

987+

return false;

988+

}

989+

const suffixRecovery = findJsonRootSuffix(params.snapshot.raw, params.deps.json5);

990+

if (!suffixRecovery) {

991+

return false;

992+

}

993+994+

let resolved: unknown;

995+

try {

996+

resolved = resolveConfigIncludesForRead(suffixRecovery.parsed, params.configPath, params.deps);

997+

} catch {

998+

return false;

999+

}

1000+

const readResolution = resolveConfigForRead(resolved, params.deps.env);

1001+

const legacyResolution = resolveLegacyConfigForRead(

1002+

readResolution.resolvedConfigRaw,

1003+

suffixRecovery.parsed,

1004+

);

1005+

const validated = validateConfigObjectWithPlugins(legacyResolution.effectiveConfigRaw, {

1006+

env: params.deps.env,

1007+

});

1008+

if (!validated.ok) {

1009+

return false;

1010+

}

1011+1012+

await persistPrefixedConfigRecovery({

1013+

deps: params.deps,

1014+

configPath: params.configPath,

1015+

originalRaw: params.snapshot.raw,

1016+

recoveredRaw: suffixRecovery.raw,

1017+

});

1018+

return true;

1019+

}

1020+9351021

type ConfigReadResolution = {

9361022

resolvedConfigRaw: unknown;

9371023

envSnapshotForRestore: Record<string, string | undefined>;

@@ -1446,6 +1532,14 @@ export function createConfigIO(overrides: ConfigIoDeps = {}) {

14461532

});

14471533

}

144815341535+

async function recoverConfigFromJsonRootSuffix(snapshot: ConfigFileSnapshot): Promise<boolean> {

1536+

return await recoverConfigFromJsonRootSuffixWithDeps({

1537+

deps,

1538+

configPath,

1539+

snapshot,

1540+

});

1541+

}

1542+14491543

async function readConfigFileSnapshotForWrite(): Promise<ReadConfigFileSnapshotForWriteResult> {

14501544

const result = await readConfigFileSnapshotInternal();

14511545

return {

@@ -1793,6 +1887,7 @@ export function createConfigIO(overrides: ConfigIoDeps = {}) {

17931887

readConfigFileSnapshotForWrite,

17941888

promoteConfigSnapshotToLastKnownGood,

17951889

recoverConfigFromLastKnownGood,

1890+

recoverConfigFromJsonRootSuffix,

17961891

writeConfigFile,

17971892

};

17981893

}

@@ -1906,6 +2001,12 @@ export async function recoverConfigFromLastKnownGood(params: {

19062001

return await createConfigIO().recoverConfigFromLastKnownGood(params);

19072002

}

190820032004+

export async function recoverConfigFromJsonRootSuffix(

2005+

snapshot: ConfigFileSnapshot,

2006+

): Promise<boolean> {

2007+

return await createConfigIO().recoverConfigFromJsonRootSuffix(snapshot);

2008+

}

2009+19092010

export async function readSourceConfigSnapshot(): Promise<ConfigFileSnapshot> {

19102011

return await readConfigFileSnapshot();

19112012

}