mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-16 15:43:57 -06:00
b3d5265f58
* fix(docker): harden runtime image dependencies * chore(deps): update container security dependencies * docs(docker): explain image security contents * test(browser): align file-chooser and install tests with #114506 contract * test(browser): restore extension install test isolation * test(browser): add temporary CI diagnostics for pre-registration refusal * test(browser): make install fixture interpreter hermetic The suite passed process.execPath as the native-host interpreter; on GitHub-hosted runners the hostedtoolcache node binary is group/world- writable, which installChromeExtensionBootstrap correctly refuses, so every registration test failed CI-only. The fixture now provides an owned 0700 interpreter; only the launcher-exec test keeps the real node it must spawn. * fix(qa-lab): stop re-polling after a probe consumes the discovery deadline The Matrix health-probe loop re-entered when the probe timeout fired marginally before Date.now() crossed the deadline, starting a doomed extra probe. Flaked on contended CI runners as 'expected 1 fetch, got 2'. A timed-out probe now ends discovery. * test(ui): poll the callout inset invariant in device-scope E2E One-shot boundingBox reads raced the nav-collapse transition and intermittently measured a 20px stale offset on CI.
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@openclaw/diffs",
|
|
"version": "2026.8.1",
|
|
"description": "OpenClaw read-only diff viewer plugin and file renderer for agents.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@pierre/diffs": "1.2.12",
|
|
"@shikijs/langs": "4.3.1",
|
|
"playwright-core": "1.62.1",
|
|
"typebox": "1.3.6",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"install": {
|
|
"npmSpec": "@openclaw/diffs",
|
|
"localPath": "extensions/diffs",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.4.30"
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.8.1"
|
|
},
|
|
"assetScripts": {
|
|
"build": "node --import tsx ../../scripts/build-diffs-viewer-runtime.mts curated"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.8.1",
|
|
"staticAssets": [
|
|
{
|
|
"source": "./assets/viewer-runtime.js",
|
|
"output": "assets/viewer-runtime.js"
|
|
}
|
|
]
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|