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

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
博客园 - Franky
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
雷峰网
雷峰网
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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(oc-path): support deep config edits (#86060) · opencl...
giodl73-repo · 2026-05-25 · via Recent Commits to openclaw:main

@@ -168,12 +168,17 @@ export function parseOcPath(input: string): OcPath {

168168

fail(`Empty oc:// path: ${printable(input)}`, input, "OC_PATH_EMPTY");

169169

}

170170171-

const segments = splitRespectingBrackets(pathPart, "/", input);

172-

for (const seg of segments) {

171+

const rawSegments = splitRespectingBrackets(pathPart, "/", input);

172+

for (const seg of rawSegments) {

173173

if (seg.length === 0) {

174174

fail(`Empty segment in oc:// path: ${printable(input)}`, input, "OC_PATH_EMPTY_SEGMENT");

175175

}

176176

}

177+

const fileSeg = rawSegments[0];

178+

const file = isQuotedSeg(fileSeg) ? unquoteSeg(fileSeg) : fileSeg;

179+

validateFileSlot(file, input);

180+181+

const segments = normalizeDeepJsonPathSegments(rawSegments, file, input);

177182

if (segments.length > 4) {

178183

fail(`Too many segments in oc:// path (max 4): ${printable(input)}`, input, "OC_PATH_TOO_DEEP");

179184

}

@@ -193,13 +198,6 @@ export function parseOcPath(input: string): OcPath {

193198

}

194199

}

195200196-

// Unquote the file slot — splitRespectingBrackets keeps a quoted file

197-

// segment intact so its `/` isn't a slot separator; strip the quotes

198-

// so consumers see the literal filename.

199-

const fileSeg = segments[0];

200-

const file = isQuotedSeg(fileSeg) ? unquoteSeg(fileSeg) : fileSeg;

201-

validateFileSlot(file, input);

202-203201

const session = extractSession(queryPart, input);

204202

return {

205203

file,

@@ -210,6 +208,33 @@ export function parseOcPath(input: string): OcPath {

210208

};

211209

}

212210211+

function isJsonPathFile(file: string): boolean {

212+

const lower = file.toLowerCase();

213+

return lower.endsWith(".json") || lower.endsWith(".jsonc");

214+

}

215+216+

function normalizeDeepJsonPathSegments(

217+

segments: readonly string[],

218+

file: string,

219+

input: string,

220+

): readonly string[] {

221+

if (segments.length <= 4 || !isJsonPathFile(file)) {

222+

return segments;

223+

}

224+

const pathSegments = segments.slice(1);

225+

if (pathSegments.length > MAX_TRAVERSAL_DEPTH) {

226+

fail(

227+

`JSON oc:// path exceeds ${MAX_TRAVERSAL_DEPTH} nested segments: ${printable(input)}`,

228+

input,

229+

"OC_PATH_TOO_DEEP",

230+

);

231+

}

232+

const section = pathSegments.slice(0, -2).join(".");

233+

const item = pathSegments[pathSegments.length - 2];

234+

const field = pathSegments[pathSegments.length - 1];

235+

return [segments[0], section, item, field];

236+

}

237+213238

/** Format an `OcPath` struct into its canonical string form. */

214239

export function formatOcPath(path: OcPath): string {

215240

if (!path.file || path.file.length === 0) {