@clawtrial/courtroom 2.0.6 → 2.0.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.
@@ -2,7 +2,7 @@
2
2
  "id": "courtroom",
3
3
  "name": "ClawTrial Courtroom",
4
4
  "description": "Autonomous behavioral oversight plugin for OpenClaw",
5
- "version": "2.0.6",
5
+ "version": "2.0.7",
6
6
  "author": "ClawTrial",
7
7
  "main": "src/plugin.js",
8
8
  "engines": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawtrial/courtroom",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "AI Courtroom - Autonomous behavioral oversight plugin for OpenClaw",
5
5
  "main": "src/plugin.js",
6
6
  "openclaw": {
package/src/plugin.js CHANGED
@@ -175,7 +175,13 @@ class CourtroomRuntime {
175
175
 
176
176
  // Run detection
177
177
  try {
178
+ logger.info('PLUGIN', `Starting evaluation with messageBuffer length: ${this.messageBuffer.length}`);
179
+ if (this.messageBuffer.length > 0) {
180
+ logger.info('PLUGIN', `Sample buffered message: ${JSON.stringify(this.messageBuffer[this.messageBuffer.length - 1])}`);
181
+ }
182
+
178
183
  const detection = await this.detector.evaluate(this.messageBuffer, null);
184
+ logger.info('PLUGIN', `Evaluation result: ${JSON.stringify(detection)}`);
179
185
 
180
186
  if (detection.triggered) {
181
187
  this.lastEvaluation = now;