@pi-unipi/core 2.17.0 → 2.18.0

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.
Files changed (2) hide show
  1. package/fusion-status.ts +6 -0
  2. package/package.json +1 -1
package/fusion-status.ts CHANGED
@@ -18,6 +18,12 @@ export interface SharedFusionStatus {
18
18
  sidekickEffort: string;
19
19
  /** Estimated savings compared with pricing all sidekick usage at lead rates. */
20
20
  savedUsd?: number;
21
+ /** A handoff is running on the sidekick right now. */
22
+ busy?: boolean;
23
+ /** Tool calls made directly by the lead in this session while Fusion was active. */
24
+ leadToolCalls?: number;
25
+ /** Tool calls made by the sidekick across all handoffs (completed + in flight). */
26
+ sidekickToolCalls?: number;
21
27
  }
22
28
 
23
29
  const KEY = Symbol.for("unipi.fusion.status");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/core",
3
- "version": "2.17.0",
3
+ "version": "2.18.0",
4
4
  "description": "Shared utilities, event types, and constants for Unipi extension suite",
5
5
  "type": "module",
6
6
  "license": "MIT",