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

推荐订阅源

GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
I
InfoQ
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
L
LangChain Blog
F
Fortinet All Blogs
C
Check Point Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
J
Java Code Geeks
月光博客
月光博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI

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: opt acpx out of bundled runtime deps · openclaw/open...
steipete · 2026-05-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -59,17 +59,19 @@ OpenClaw source checkouts use `pnpm-lock.yaml`. The published `openclaw` npm

5959

package and OpenClaw-owned npm plugin packages include `npm-shrinkwrap.json`,

6060

npm's publishable dependency lockfile, so package installs use the reviewed

6161

transitive dependency graph from the release instead of resolving a fresh graph

62-

at install time. OpenClaw-owned npm plugin packages also publish with explicit

63-

`bundledDependencies`, so their runtime dependency files are carried in the

64-

plugin tarball instead of depending only on install-time resolution.

62+

at install time. Suitable OpenClaw-owned npm plugin packages can also publish

63+

with explicit `bundledDependencies`, so their runtime dependency files are

64+

carried in the plugin tarball instead of depending only on install-time

65+

resolution.

6566
6667

This is a supply-chain hardening measure:

6768
6869

- release installs are more reproducible;

6970

- transitive dependency updates become visible review surfaces;

7071

- the package tarball contains the dependency graph that release validators

7172

checked;

72-

- OpenClaw-owned plugin tarballs contain the dependency files from that graph;

73+

- suitable OpenClaw-owned plugin tarballs contain the dependency files from

74+

that graph;

7375

- `package-lock.json` stays out of the published package, because npm does not

7476

treat it as the publishable lock contract.

7577
Original file line numberDiff line numberDiff line change

@@ -79,11 +79,11 @@ OpenClaw-owned npm plugin packages can also publish with explicit

7979

name list, removes dev-only workspace metadata from the published package

8080

manifest, runs a script-free npm install for package-local runtime

8181

dependencies, then packs or publishes the plugin tarball with those dependency

82-

files included. Native-heavy packages can opt out with

83-

`openclaw.release.bundleRuntimeDependencies: false`; those packages still ship

84-

their shrinkwrap, but npm resolves runtime dependencies during install instead

85-

of embedding every platform binary in the plugin tarball. The root `openclaw`

86-

package does not bundle its full dependency tree.

82+

files included. Native-heavy packages, including Codex and ACP runtimes, opt out

83+

with `openclaw.release.bundleRuntimeDependencies: false`; those packages still

84+

ship their shrinkwrap, but npm resolves runtime dependencies during install

85+

instead of embedding every platform binary in the plugin tarball. The root

86+

`openclaw` package does not bundle its full dependency tree.

8787
8888

Plugins that import `openclaw/plugin-sdk/*` declare `openclaw` as a peer

8989

dependency. OpenClaw does not let npm install a separate registry copy of the

Original file line numberDiff line numberDiff line change

@@ -47,7 +47,8 @@

4747

},

4848

"release": {

4949

"publishToClawHub": true,

50-

"publishToNpm": true

50+

"publishToNpm": true,

51+

"bundleRuntimeDependencies": false

5152

}

5253

}

5354

}