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

推荐订阅源

V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
罗磊的独立博客
小众软件
小众软件
I
InfoQ
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
P
Proofpoint News Feed
博客园 - 司徒正美
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium

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: explain blocked plugin ownership repair · openclaw/...
steipete · 2026-05-06 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -583,6 +583,14 @@

583583

"source": "Manage plugins",

584584

"target": "管理插件"

585585

},

586+

{

587+

"source": "Plugin path ownership",

588+

"target": "插件路径所有权"

589+

},

590+

{

591+

"source": "Docker permissions",

592+

"target": "Docker 权限"

593+

},

586594

{

587595

"source": "Plugin manifest",

588596

"target": "插件清单"

Original file line numberDiff line numberDiff line change

@@ -80,6 +80,40 @@ Example:

8080
8181

Reference: [Plugin architecture](/plugins/architecture)

8282
83+

## Plugin present but blocked by suspicious ownership

84+
85+

If `openclaw doctor`, setup, or startup warnings show:

86+
87+

```text

88+

blocked plugin candidate: suspicious ownership (... uid=1000, expected uid=0 or root)

89+

plugin present but blocked

90+

```

91+
92+

the plugin files are owned by a different Unix user than the process loading

93+

them. Do not remove the plugin config. Fix the file ownership or run OpenClaw as

94+

the same user that owns the state directory.

95+
96+

Docker installs normally run as `node` (uid `1000`). For the default Docker

97+

setup, repair the host bind mounts:

98+
99+

```bash

100+

sudo chown -R 1000:1000 /path/to/openclaw-config /path/to/openclaw-workspace

101+

openclaw doctor --fix

102+

```

103+
104+

If you intentionally run OpenClaw as root, repair the managed plugin root to

105+

root ownership instead:

106+
107+

```bash

108+

sudo chown -R root:root /path/to/openclaw-config/npm

109+

openclaw doctor --fix

110+

```

111+
112+

Deeper docs:

113+
114+

- [Plugin path ownership](/tools/plugin#blocked-plugin-path-ownership)

115+

- [Docker permissions](/install/docker#permissions-and-eacces)

116+
83117

## Decision tree

84118
85119

```mermaid

Original file line numberDiff line numberDiff line change

@@ -343,6 +343,14 @@ See [ClawDock](/install/clawdock) for the full helper guide.

343343

sudo chown -R 1000:1000 /path/to/openclaw-config /path/to/openclaw-workspace

344344

```

345345
346+

The same mismatch can show up as a plugin warning such as

347+

`blocked plugin candidate: suspicious ownership (... uid=1000, expected uid=0 or root)`

348+

followed by `plugin present but blocked`. That means the process uid and the

349+

mounted plugin directory owner disagree. Prefer running the container as the

350+

default uid 1000 and fixing the bind mount ownership. Only chown

351+

`/path/to/openclaw-config/npm` to `root:root` if you intentionally run

352+

OpenClaw as root long term.

353+
346354

</Accordion>

347355
348356

<Accordion title="Faster rebuilds">

Original file line numberDiff line numberDiff line change

@@ -127,6 +127,34 @@ visible plugin without importing runtime code or repairing dependencies.

127127

See [Plugin dependency resolution](/plugins/dependency-resolution) for the

128128

install-time lifecycle.

129129
130+

### Blocked plugin path ownership

131+
132+

If plugin diagnostics say

133+

`blocked plugin candidate: suspicious ownership (... uid=1000, expected uid=0 or root)`

134+

and config validation follows with `plugin present but blocked`, OpenClaw found

135+

plugin files owned by a different Unix user than the process that is loading

136+

them. Keep the plugin config in place; fix the filesystem ownership or run

137+

OpenClaw as the same user that owns the state directory.

138+
139+

For Docker installs, the official image runs as `node` (uid `1000`), so the

140+

host bind-mounted OpenClaw config and workspace directories should normally be

141+

owned by uid `1000`:

142+
143+

```bash

144+

sudo chown -R 1000:1000 /path/to/openclaw-config /path/to/openclaw-workspace

145+

```

146+
147+

If you intentionally run OpenClaw as root, repair the managed plugin root to

148+

root ownership instead:

149+
150+

```bash

151+

sudo chown -R root:root /path/to/openclaw-config/npm

152+

```

153+
154+

After fixing ownership, rerun `openclaw doctor --fix` or

155+

`openclaw plugins registry --refresh` so the persisted plugin registry matches

156+

the repaired files.

157+
130158

For npm installs, mutable selectors such as `latest` or a dist-tag are resolved

131159

before installation and then pinned to the exact verified version in OpenClaw's

132160

managed npm root. After npm finishes, OpenClaw verifies the installed