chore: bump published plugin inspector smoke package

This commit is contained in:
Vincent Koc 2026-04-27 10:46:53 -07:00
parent 7523705162
commit b83e3b071d
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ npm run plugin-inspector:smoke
```
The smoke writes ignored artifacts under `.crabpot/plugin-inspector-smoke/`.
By default the smoke runs the published `@openclaw/plugin-inspector@0.1.2`
By default the smoke runs the published `@openclaw/plugin-inspector@0.1.3`
package through `npm exec`. For local plugin-inspector development, set
`CRABPOT_PLUGIN_INSPECTOR_CLI=source` to run the sibling or pinned source
checkout instead. Set `CRABPOT_PLUGIN_INSPECTOR_BIN=/path/to/plugin-inspector`

View File

@ -120,7 +120,7 @@ node scripts/check-contract-coverage.mjs --openclaw ../openclaw
```
`npm run plugin-inspector:smoke` uses the published
`@openclaw/plugin-inspector@0.1.2` package by default. Use
`@openclaw/plugin-inspector@0.1.3` package by default. Use
`CRABPOT_PLUGIN_INSPECTOR_CLI=source npm run plugin-inspector:smoke` only when
validating local inspector source changes.

View File

@ -5,7 +5,7 @@ import { pathToFileURL } from "node:url";
import { repoRoot } from "./manifest-lib.mjs";
export const pluginInspectorRef = "0fc9697a14cd0e13550e2bfce770cff966b64ace";
export const pluginInspectorPackage = "@openclaw/plugin-inspector@0.1.2";
export const pluginInspectorPackage = "@openclaw/plugin-inspector@0.1.3";
export async function loadPluginInspector() {
return import(pathToFileURL(resolvePluginInspectorSourcePath()).href);