@agnishc/edb-subagents 0.10.5 → 0.10.8

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.8] - 2026-05-18
4
+
5
+ ### Changed
6
+ - Replaced Braille spinner (⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏, 10 frames @ 80ms) with Claude Code–style spinner (· ✢ ✳ ✶ ✻ ✽, 6 frames @ 150ms) to match the global footer's working indicator
7
+
8
+ ## [0.10.6] - 2026-05-15
9
+
3
10
  ## [0.10.5] - 2026-05-15
4
11
 
5
12
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agnishc/edb-subagents",
3
- "version": "0.10.5",
3
+ "version": "0.10.8",
4
4
  "description": "Pi extension: Claude Code-style autonomous sub-agents with live widget, parallel execution, mid-run steering, and custom agent types",
5
5
  "keywords": [
6
6
  "pi-package",
package/src/index.ts CHANGED
@@ -1168,11 +1168,11 @@ Guidelines:
1168
1168
  }
1169
1169
  };
1170
1170
 
1171
- // Animate spinner at ~80ms (smooth rotation through 10 braille frames)
1171
+ // Animate spinner at 150ms (Claude Code–style 6-frame rotation)
1172
1172
  const spinnerInterval = setInterval(() => {
1173
1173
  spinnerFrame++;
1174
1174
  streamUpdate();
1175
- }, 80);
1175
+ }, 150);
1176
1176
 
1177
1177
  streamUpdate();
1178
1178
 
@@ -16,8 +16,8 @@ import { getLifetimeTotal, getSessionContextPercent, type LifetimeUsage, type Se
16
16
  /** Maximum number of rendered lines before overflow collapse kicks in. */
17
17
  const MAX_WIDGET_LINES = 12;
18
18
 
19
- /** Braille spinner frames for animated running indicator. */
20
- export const SPINNER = ["", "", "", "", "", "", "⠦", "⠧", "⠇", "⠏"];
19
+ /** Claude Code–style spinner frames for animated running indicator. */
20
+ export const SPINNER = ["·", "", "", "", "", ""];
21
21
 
22
22
  /** Statuses that indicate an error/non-success outcome (used for linger behavior and icon rendering). */
23
23
  export const ERROR_STATUSES = new Set(["error", "aborted", "steered", "stopped"]);
@@ -248,7 +248,7 @@ export class AgentWidget {
248
248
  /** Ensure the widget update timer is running. */
249
249
  ensureTimer() {
250
250
  if (!this.widgetInterval) {
251
- this.widgetInterval = setInterval(() => this.update(), 80);
251
+ this.widgetInterval = setInterval(() => this.update(), 150);
252
252
  }
253
253
  }
254
254