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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
B
Blog
腾讯CDC
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
L
LangChain Blog
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS 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(oc-path): explain why path addressing helps · opencl...
steipete · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -30,6 +30,20 @@ first use:

3030

openclaw plugins enable oc-path

3131

```

3232
33+

## Why use it

34+
35+

OpenClaw state is spread across human-edited markdown, commented JSONC config,

36+

and append-only JSONL logs. Shell scripts, hooks, and agents often need one

37+

small value from those files: a frontmatter key, a plugin setting, a log record

38+

field, or a bullet item under a named section.

39+
40+

`openclaw path` gives those callers a stable address instead of a one-off grep,

41+

regex, or parser for each file kind. The same `oc://` path can be validated,

42+

resolved, searched, dry-run, and written from the terminal, which makes narrow

43+

automation easier to review and safer to replay. It is especially useful when

44+

you want to update one leaf while preserving the rest of the file's comments,

45+

line endings, and surrounding formatting.

46+
3347

## Subcommands

3448
3549

| Subcommand | Purpose |

Original file line numberDiff line numberDiff line change

@@ -24,6 +24,20 @@ without scripting against the SDK directly; agents and hooks treat it as a

2424

deterministic substrate so byte-fidelity round-trips and the redaction

2525

sentinel guard apply uniformly across kinds.

2626
27+

## Why enable it

28+
29+

Enable `oc-path` when you want scripts, hooks, or local agent tooling to point

30+

at a precise piece of workspace state without inventing a parser for each file

31+

shape. A single `oc://` address can name a markdown frontmatter key, a section

32+

item, a JSONC config leaf, or a JSONL event field.

33+
34+

That matters for maintainer workflows where the change should be small,

35+

auditable, and repeatable: inspect one value, find matching records, dry-run a

36+

write, then apply only that leaf while leaving comments, line endings, and

37+

nearby formatting alone. Keeping this as an opt-in plugin gives power users the

38+

addressing substrate without putting parser dependencies or CLI surface into

39+

core for installs that never need it.

40+
2741

## Where it runs

2842
2943

The plugin runs **in-process inside the `openclaw` CLI** on the host where you