From b83e3b071d1acbdf97b61fd3a38c9fe5d19905f7 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Mon, 27 Apr 2026 10:46:53 -0700 Subject: [PATCH] chore: bump published plugin inspector smoke package --- docs/inspector-plan.md | 2 +- docs/operations.md | 2 +- scripts/plugin-inspector-source.mjs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/inspector-plan.md b/docs/inspector-plan.md index b306934..1ebba59 100644 --- a/docs/inspector-plan.md +++ b/docs/inspector-plan.md @@ -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` diff --git a/docs/operations.md b/docs/operations.md index 272b862..6cd68b9 100644 --- a/docs/operations.md +++ b/docs/operations.md @@ -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. diff --git a/scripts/plugin-inspector-source.mjs b/scripts/plugin-inspector-source.mjs index dfbb6c2..1a307c7 100644 --- a/scripts/plugin-inspector-source.mjs +++ b/scripts/plugin-inspector-source.mjs @@ -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);