@openclaw/plugin-inspector 0.3.6 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.3.7 - 2026-05-03
6
+
7
+ ### Changed
8
+
9
+ - Downgrade `registration-capture-gap` to advisory severity so missing capture evidence no longer reports as a P1 plugin contract risk.
10
+
5
11
  ## 0.3.6 - 2026-05-03
6
12
 
7
13
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/plugin-inspector",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "private": false,
5
5
  "description": "Offline compatibility inspector for OpenClaw plugins.",
6
6
  "type": "module",
@@ -175,7 +175,6 @@ export function probePriority(code, fixturePriority) {
175
175
  "before-tool-call-probe",
176
176
  "conversation-access-hook",
177
177
  "missing-compat-record",
178
- "registration-capture-gap",
179
178
  "sdk-export-missing",
180
179
  ].includes(code)
181
180
  ) {
package/src/issues.js CHANGED
@@ -220,10 +220,10 @@ export const issueMetadataByCode = {
220
220
  title: "providerAuthEnvVars legacy manifest metadata must stay covered",
221
221
  },
222
222
  "registration-capture-gap": {
223
- severity: "P1",
223
+ severity: "P2",
224
224
  owner: "inspector",
225
225
  decision: "inspector-follow-up",
226
- title: "runtime registrations need capture before contract judgment",
226
+ title: "runtime registrations need capture evidence before final contract judgment",
227
227
  },
228
228
  "runtime-tool-capture": {
229
229
  severity: "P2",