@openclaw/plugin-inspector 0.3.2 → 0.3.3
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 +6 -0
- package/package.json +1 -1
- package/src/synthetic-probes.js +140 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.3.3 - 2026-04-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Classify generated kitchen-sink public registrar coverage in synthetic probe plans so new API-surface fixtures do not fail as unknown execution profiles.
|
|
10
|
+
|
|
5
11
|
## 0.3.2 - 2026-04-28
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/package.json
CHANGED
package/src/synthetic-probes.js
CHANGED
|
@@ -16,19 +16,64 @@ export const syntheticRegistrationExecutionProfiles = {
|
|
|
16
16
|
callableProperties: ["send", "sendMessage", "receive", "handleMessage"],
|
|
17
17
|
option: "includeChannelRuntime",
|
|
18
18
|
},
|
|
19
|
+
registerAgentHarness: {
|
|
20
|
+
mode: "metadata-only",
|
|
21
|
+
callableProperties: [],
|
|
22
|
+
reason: "agent harness factories are captured as registration metadata; agent runtime execution remains isolated opt-in",
|
|
23
|
+
},
|
|
24
|
+
registerAgentToolResultMiddleware: {
|
|
25
|
+
mode: "metadata-only",
|
|
26
|
+
callableProperties: [],
|
|
27
|
+
reason: "agent tool-result middleware is captured as registration metadata before tool-result pipeline execution",
|
|
28
|
+
},
|
|
29
|
+
registerAutoEnableProbe: {
|
|
30
|
+
mode: "metadata-only",
|
|
31
|
+
callableProperties: [],
|
|
32
|
+
reason: "auto-enable probes are captured as registration metadata before runtime activation checks",
|
|
33
|
+
},
|
|
19
34
|
registerCli: {
|
|
20
35
|
mode: "direct",
|
|
21
36
|
callableProperties: ["handler", "run", "execute"],
|
|
22
37
|
},
|
|
38
|
+
registerCliBackend: {
|
|
39
|
+
mode: "metadata-only",
|
|
40
|
+
callableProperties: [],
|
|
41
|
+
reason: "CLI backend descriptors are captured as registration metadata before backend process execution",
|
|
42
|
+
},
|
|
23
43
|
registerCommand: {
|
|
24
44
|
mode: "direct",
|
|
25
45
|
callableProperties: ["handler", "run", "execute"],
|
|
26
46
|
},
|
|
47
|
+
registerCodexAppServerExtensionFactory: {
|
|
48
|
+
mode: "metadata-only",
|
|
49
|
+
callableProperties: [],
|
|
50
|
+
reason: "Codex app server extension factories are captured as registration metadata before host UI execution",
|
|
51
|
+
},
|
|
52
|
+
registerCompactionProvider: {
|
|
53
|
+
mode: "metadata-only",
|
|
54
|
+
callableProperties: [],
|
|
55
|
+
reason: "compaction providers are captured as registration metadata before compaction runtime execution",
|
|
56
|
+
},
|
|
57
|
+
registerConfigMigration: {
|
|
58
|
+
mode: "metadata-only",
|
|
59
|
+
callableProperties: [],
|
|
60
|
+
reason: "config migrations are captured as registration metadata before mutating stored plugin config",
|
|
61
|
+
},
|
|
27
62
|
registerContextEngine: {
|
|
28
63
|
mode: "metadata-only",
|
|
29
64
|
callableProperties: [],
|
|
30
65
|
reason: "context engine factories are captured as registration metadata; engine startup remains isolated opt-in",
|
|
31
66
|
},
|
|
67
|
+
registerDetachedTaskRuntime: {
|
|
68
|
+
mode: "metadata-only",
|
|
69
|
+
callableProperties: [],
|
|
70
|
+
reason: "detached task runtimes are captured as registration metadata before async task execution",
|
|
71
|
+
},
|
|
72
|
+
registerGatewayDiscoveryService: {
|
|
73
|
+
mode: "metadata-only",
|
|
74
|
+
callableProperties: [],
|
|
75
|
+
reason: "gateway discovery services are captured as registration metadata before network discovery execution",
|
|
76
|
+
},
|
|
32
77
|
registerGatewayMethod: {
|
|
33
78
|
mode: "direct",
|
|
34
79
|
callableProperties: ["handler", "run", "execute", "invoke"],
|
|
@@ -46,16 +91,91 @@ export const syntheticRegistrationExecutionProfiles = {
|
|
|
46
91
|
callableProperties: [],
|
|
47
92
|
reason: "legacy hook registrar is captured as metadata; hook handlers are probed through hook events",
|
|
48
93
|
},
|
|
94
|
+
registerImageGenerationProvider: {
|
|
95
|
+
mode: "metadata-only",
|
|
96
|
+
callableProperties: [],
|
|
97
|
+
reason: "image generation providers are captured as registration metadata before provider runtime execution",
|
|
98
|
+
},
|
|
49
99
|
registerMemoryPromptSection: {
|
|
50
100
|
mode: "metadata-only",
|
|
51
101
|
callableProperties: [],
|
|
52
102
|
reason: "memory prompt section renderers are captured as metadata before prompt-runtime execution",
|
|
53
103
|
},
|
|
104
|
+
registerMediaUnderstandingProvider: {
|
|
105
|
+
mode: "metadata-only",
|
|
106
|
+
callableProperties: [],
|
|
107
|
+
reason: "media understanding providers are captured as registration metadata before provider runtime execution",
|
|
108
|
+
},
|
|
109
|
+
registerMemoryCapability: {
|
|
110
|
+
mode: "metadata-only",
|
|
111
|
+
callableProperties: [],
|
|
112
|
+
reason: "memory capabilities are captured as registration metadata before memory runtime execution",
|
|
113
|
+
},
|
|
114
|
+
registerMemoryCorpusSupplement: {
|
|
115
|
+
mode: "metadata-only",
|
|
116
|
+
callableProperties: [],
|
|
117
|
+
reason: "memory corpus supplements are captured as registration metadata before memory runtime execution",
|
|
118
|
+
},
|
|
119
|
+
registerMemoryEmbeddingProvider: {
|
|
120
|
+
mode: "metadata-only",
|
|
121
|
+
callableProperties: [],
|
|
122
|
+
reason: "memory embedding providers are captured as registration metadata before provider runtime execution",
|
|
123
|
+
},
|
|
124
|
+
registerMemoryFlushPlan: {
|
|
125
|
+
mode: "metadata-only",
|
|
126
|
+
callableProperties: [],
|
|
127
|
+
reason: "memory flush plans are captured as registration metadata before memory runtime execution",
|
|
128
|
+
},
|
|
54
129
|
registerMemoryRuntime: {
|
|
55
130
|
mode: "metadata-only",
|
|
56
131
|
callableProperties: [],
|
|
57
132
|
reason: "memory runtime factories are captured as metadata; external memory startup remains isolated opt-in",
|
|
58
133
|
},
|
|
134
|
+
registerMemoryPromptSupplement: {
|
|
135
|
+
mode: "metadata-only",
|
|
136
|
+
callableProperties: [],
|
|
137
|
+
reason: "memory prompt supplements are captured as registration metadata before prompt-runtime execution",
|
|
138
|
+
},
|
|
139
|
+
registerMigrationProvider: {
|
|
140
|
+
mode: "metadata-only",
|
|
141
|
+
callableProperties: [],
|
|
142
|
+
reason: "migration providers are captured as registration metadata before migration runtime execution",
|
|
143
|
+
},
|
|
144
|
+
registerMusicGenerationProvider: {
|
|
145
|
+
mode: "metadata-only",
|
|
146
|
+
callableProperties: [],
|
|
147
|
+
reason: "music generation providers are captured as registration metadata before provider runtime execution",
|
|
148
|
+
},
|
|
149
|
+
registerNodeHostCommand: {
|
|
150
|
+
mode: "metadata-only",
|
|
151
|
+
callableProperties: [],
|
|
152
|
+
reason: "node host commands are captured as registration metadata before host process execution",
|
|
153
|
+
},
|
|
154
|
+
registerProvider: {
|
|
155
|
+
mode: "metadata-only",
|
|
156
|
+
callableProperties: [],
|
|
157
|
+
reason: "provider descriptors are captured as registration metadata before provider runtime execution",
|
|
158
|
+
},
|
|
159
|
+
registerRealtimeTranscriptionProvider: {
|
|
160
|
+
mode: "metadata-only",
|
|
161
|
+
callableProperties: [],
|
|
162
|
+
reason: "realtime transcription providers are captured as registration metadata before provider runtime execution",
|
|
163
|
+
},
|
|
164
|
+
registerRealtimeVoiceProvider: {
|
|
165
|
+
mode: "metadata-only",
|
|
166
|
+
callableProperties: [],
|
|
167
|
+
reason: "realtime voice providers are captured as registration metadata before provider runtime execution",
|
|
168
|
+
},
|
|
169
|
+
registerReload: {
|
|
170
|
+
mode: "metadata-only",
|
|
171
|
+
callableProperties: [],
|
|
172
|
+
reason: "reload handlers are captured as registration metadata before runtime reload execution",
|
|
173
|
+
},
|
|
174
|
+
registerSecurityAuditCollector: {
|
|
175
|
+
mode: "metadata-only",
|
|
176
|
+
callableProperties: [],
|
|
177
|
+
reason: "security audit collectors are captured as registration metadata before filesystem or policy scans",
|
|
178
|
+
},
|
|
59
179
|
registerService: {
|
|
60
180
|
mode: "lifecycle-opt-in",
|
|
61
181
|
callableProperties: ["start", "stop", "dispose"],
|
|
@@ -70,6 +190,26 @@ export const syntheticRegistrationExecutionProfiles = {
|
|
|
70
190
|
mode: "direct",
|
|
71
191
|
callableProperties: ["run", "handler", "execute"],
|
|
72
192
|
},
|
|
193
|
+
registerTextTransforms: {
|
|
194
|
+
mode: "metadata-only",
|
|
195
|
+
callableProperties: [],
|
|
196
|
+
reason: "text transforms are captured as registration metadata before content mutation execution",
|
|
197
|
+
},
|
|
198
|
+
registerVideoGenerationProvider: {
|
|
199
|
+
mode: "metadata-only",
|
|
200
|
+
callableProperties: [],
|
|
201
|
+
reason: "video generation providers are captured as registration metadata before provider runtime execution",
|
|
202
|
+
},
|
|
203
|
+
registerWebFetchProvider: {
|
|
204
|
+
mode: "metadata-only",
|
|
205
|
+
callableProperties: [],
|
|
206
|
+
reason: "web fetch providers are captured as registration metadata before provider runtime execution",
|
|
207
|
+
},
|
|
208
|
+
registerWebSearchProvider: {
|
|
209
|
+
mode: "metadata-only",
|
|
210
|
+
callableProperties: [],
|
|
211
|
+
reason: "web search providers are captured as registration metadata before provider runtime execution",
|
|
212
|
+
},
|
|
73
213
|
};
|
|
74
214
|
|
|
75
215
|
export const defaultSyntheticHookEvents = {
|