claude-scope 0.8.22 → 0.8.23

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.
@@ -9529,7 +9529,7 @@ async function main() {
9529
9529
  ...widgetConfigItem,
9530
9530
  line: parseInt(lineNum, 10)
9531
9531
  });
9532
- await registry.register(widget);
9532
+ await registry.register(widget, { config: { ...widgetConfigItem } });
9533
9533
  }
9534
9534
  }
9535
9535
  }
@@ -9538,7 +9538,7 @@ async function main() {
9538
9538
  for (const widgetId of defaultWidgets) {
9539
9539
  const widget = factory.createWidget(widgetId);
9540
9540
  if (widget) {
9541
- await registry.register(widget);
9541
+ await registry.register(widget, { config: {} });
9542
9542
  }
9543
9543
  }
9544
9544
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-scope",
3
- "version": "0.8.22",
3
+ "version": "0.8.23",
4
4
  "description": "Claude Code plugin for session status and analytics",
5
5
  "license": "MIT",
6
6
  "type": "module",