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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

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
refactor(oc-path): consolidate dispatch and trim comment ...
giodl73-repo · 2026-05-09 · via Recent Commits to openclaw:main

@@ -1,15 +1,10 @@

11

/**

2-

* Mutate a `MdAst` at an OcPath. Returns a new AST with the

3-

* value replaced; the original is unchanged.

2+

* Mutate `MdAst` at an OcPath. Returns a new AST; original unchanged.

43

*

5-

* Writable surface:

4+

* oc://FILE/[frontmatter]/key → frontmatter value

5+

* oc://FILE/section/item/field → item.kv.value

66

*

7-

* oc://FILE/[frontmatter]/key → frontmatter entry value

8-

* oc://FILE/section/item/field → item.kv.value (when item has kv shape)

9-

*

10-

* Section bodies, tables, and code blocks are NOT writable through

11-

* this primitive — they're prose, and a generic "set" doesn't compose

12-

* cleanly. Doctor fixers handle structural edits via dedicated verbs.

7+

* Section bodies aren't writable through this primitive.

138

*

149

* @module @openclaw/oc-path/edit

1510

*/

@@ -25,74 +20,44 @@ export type MdEditResult =

2520

readonly reason: "unresolved" | "not-writable" | "no-item-kv";

2621

};

272228-

/**

29-

* Replace the value at `path` with `newValue`. The new AST has fresh

30-

* `raw` re-rendered from the structural fields.

31-

*

32-

* Sentinel guard at the substrate boundary — `setJsoncOcPath` and the

33-

* jsonl `finalize`-via-render path both reject sentinel-bearing values

34-

* before they reach the AST. The md path was deferring entirely to

35-

* round-trip echo through `emitMd`, which `acceptPreExistingSentinel`

36-

* by default skips. Closing the gap here keeps F9 (formatter sentinel

37-

* guard) symmetric across all three kinds.

38-

*/

23+

// Sentinel guard at the boundary keeps md symmetric with jsonc/jsonl,

24+

// which both reject sentinel values before they reach the AST.

3925

export function setMdOcPath(ast: MdAst, path: OcPath, newValue: string): MdEditResult {

4026

guardSentinel(newValue, formatOcPath(path));

41-

// Frontmatter address: oc://FILE/[frontmatter]/<key>

4227

if (path.section === "[frontmatter]") {

4328

const key = path.item ?? path.field;

44-

if (key === undefined) {

45-

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

46-

}

29+

if (key === undefined) return { ok: false, reason: "unresolved" };

4730

const idx = ast.frontmatter.findIndex((e) => e.key === key);

48-

if (idx === -1) {

49-

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

50-

}

31+

if (idx === -1) return { ok: false, reason: "unresolved" };

5132

const existing = ast.frontmatter[idx];

52-

if (existing === undefined) {

53-

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

54-

}

33+

if (existing === undefined) return { ok: false, reason: "unresolved" };

5534

const newEntry: FrontmatterEntry = { ...existing, value: newValue };

5635

const newFm = ast.frontmatter.slice();

5736

newFm[idx] = newEntry;

5837

return finalize({ ...ast, frontmatter: newFm });

5938

}

603961-

// Item-field address: oc://FILE/section/item/field

6240

if (path.section === undefined || path.item === undefined || path.field === undefined) {

6341

return { ok: false, reason: "not-writable" };

6442

}

65436644

const sectionSlug = path.section.toLowerCase();

6745

const blockIdx = ast.blocks.findIndex((b) => b.slug === sectionSlug);

68-

if (blockIdx === -1) {

69-

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

70-

}

46+

if (blockIdx === -1) return { ok: false, reason: "unresolved" };

7147

const block = ast.blocks[blockIdx];

72-

if (block === undefined) {

73-

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

74-

}

48+

if (block === undefined) return { ok: false, reason: "unresolved" };

75497650

const itemSlug = path.item.toLowerCase();

7751

const itemIdx = block.items.findIndex((i) => i.slug === itemSlug);

78-

if (itemIdx === -1) {

79-

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

80-

}

52+

if (itemIdx === -1) return { ok: false, reason: "unresolved" };

8153

const item = block.items[itemIdx];

82-

if (item === undefined) {

83-

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

84-

}

85-

if (item.kv === undefined) {

86-

return { ok: false, reason: "no-item-kv" };

87-

}

54+

if (item === undefined) return { ok: false, reason: "unresolved" };

55+

if (item.kv === undefined) return { ok: false, reason: "no-item-kv" };

8856

if (item.kv.key.toLowerCase() !== path.field.toLowerCase()) {

8957

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

9058

}

915992-

const newItem: AstItem = {

93-

...item,

94-

kv: { key: item.kv.key, value: newValue },

95-

};

60+

const newItem: AstItem = { ...item, kv: { key: item.kv.key, value: newValue } };

9661

const newItems = block.items.slice();

9762

newItems[itemIdx] = newItem;

9863

const newBlock: AstBlock = {

@@ -105,28 +70,17 @@ export function setMdOcPath(ast: MdAst, path: OcPath, newValue: string): MdEditR

10570

return finalize({ ...ast, blocks: newBlocks });

10671

}

10772108-

/**

109-

* Rebuild block.bodyText so emit-roundtrip mode reflects the edit. We

110-

* do a minimal in-place substitution on the existing bodyText: find

111-

* each `- key: value` line for a touched item and rewrite the value.

112-

*

113-

* For items without a matching bullet line, we leave bodyText alone

114-

* (the structural fields take precedence in render mode anyway).

115-

*/

73+

// In-place substitution on `bodyText` so round-trip emit reflects the

74+

// edit. Items without a matching bullet line are skipped (render mode

75+

// uses structural fields anyway).

11676

function rebuildBlockBody(block: AstBlock, newItems: readonly AstItem[]): string {

11777

let body = block.bodyText;

11878

for (let i = 0; i < newItems.length; i++) {

11979

const newItem = newItems[i];

12080

const oldItem = block.items[i];

121-

if (newItem === undefined || oldItem === undefined) {

122-

continue;

123-

}

124-

if (newItem.kv === undefined || oldItem.kv === undefined) {

125-

continue;

126-

}

127-

if (newItem.kv.value === oldItem.kv.value) {

128-

continue;

129-

}

81+

if (newItem === undefined || oldItem === undefined) continue;

82+

if (newItem.kv === undefined || oldItem.kv === undefined) continue;

83+

if (newItem.kv.value === oldItem.kv.value) continue;

13084

const re = new RegExp(`^(\\s*-\\s*${escapeRegex(oldItem.kv.key)}\\s*:\\s*).*$`, "m");

13185

body = body.replace(re, `$1${newItem.kv.value}`);

13286

}

@@ -137,10 +91,6 @@ function escapeRegex(s: string): string {

13791

return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");

13892

}

13993140-

/**

141-

* Re-render `ast.raw` from the (possibly mutated) tree using the same

142-

* shape the round-trip emitter expects.

143-

*/

14494

function finalize(ast: MdAst): MdEditResult {

14595

const parts: string[] = [];

14696

if (ast.frontmatter.length > 0) {

@@ -151,30 +101,19 @@ function finalize(ast: MdAst): MdEditResult {

151101

parts.push("---");

152102

}

153103

if (ast.preamble.length > 0) {

154-

if (parts.length > 0) {

155-

parts.push("");

156-

}

104+

if (parts.length > 0) parts.push("");

157105

parts.push(ast.preamble);

158106

}

159107

for (const block of ast.blocks) {

160-

if (parts.length > 0) {

161-

parts.push("");

162-

}

108+

if (parts.length > 0) parts.push("");

163109

parts.push(`## ${block.heading}`);

164-

if (block.bodyText.length > 0) {

165-

parts.push(block.bodyText);

166-

}

110+

if (block.bodyText.length > 0) parts.push(block.bodyText);

167111

}

168-

const raw = parts.join("\n");

169-

return { ok: true, ast: { ...ast, raw } };

112+

return { ok: true, ast: { ...ast, raw: parts.join("\n") } };

170113

}

171114172115

function formatFrontmatterValue(value: string): string {

173-

if (value.length === 0) {

174-

return '""';

175-

}

176-

if (/[:#&*?|<>=!%@`,[\]{}\r\n]/.test(value)) {

177-

return JSON.stringify(value);

178-

}

116+

if (value.length === 0) return '""';

117+

if (/[:#&*?|<>=!%@`,[\]{}\r\n]/.test(value)) return JSON.stringify(value);

179118

return value;

180119

}