claude-scope 0.6.16 → 0.6.17

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.
@@ -1517,7 +1517,7 @@ var activeToolsStyles = {
1517
1517
  for (const tool of data.running) {
1518
1518
  allToolNames.add(tool.name);
1519
1519
  }
1520
- for (const [name] of data.completed) {
1520
+ for (const [name] of data.completed.slice(0, 3)) {
1521
1521
  allToolNames.add(name);
1522
1522
  }
1523
1523
  const completedMap = new Map(data.completed);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-scope",
3
- "version": "0.6.16",
3
+ "version": "0.6.17",
4
4
  "description": "Claude Code plugin for session status and analytics",
5
5
  "license": "MIT",
6
6
  "type": "module",