claude-scope 0.8.1 → 0.8.2

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.
@@ -6539,9 +6539,13 @@ function selectWithPreviewImpl(config, done) {
6539
6539
  if (status === "done") {
6540
6540
  return [`${config.message} ${activeChoice.name}`, ""];
6541
6541
  }
6542
- const previewBox = `\x1B[1;37m\u250C\u2500 Live Preview \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\x1B[0m
6542
+ const line = "\x1B[1;37m" + "\u2500".repeat(60) + "\x1B[0m";
6543
+ const previewBox = `${line}
6544
+ \x1B[1;37mLive Preview\x1B[0m
6545
+
6543
6546
  ${preview}
6544
- \x1B[1;37m\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\x1B[0m`;
6547
+
6548
+ ${line}`;
6545
6549
  return [config.message, `${page}
6546
6550
 
6547
6551
  ${previewBox}`];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-scope",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Claude Code plugin for session status and analytics",
5
5
  "license": "MIT",
6
6
  "type": "module",