@caupulican/pi-adaptative 0.81.24 → 0.81.26

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,3 +1,13 @@
1
+ ## [0.81.26] - 2026-07-09
2
+
3
+ ### Fixed
4
+ - Fixed dynamically registered provider models to honor configured `modelOverrides`.
5
+
6
+ ## [0.81.25] - 2026-07-09
7
+
8
+ ### Fixed
9
+ - Added session-level compaction gate failure and deterministic gap-fill telemetry to make nonzero gate-failure rates visible in stats and `/session` output.
10
+
1
11
  ## [0.81.24] - 2026-07-09
2
12
 
3
13
  ### Fixed
@@ -220,6 +220,11 @@ export interface ModelCycleResult {
220
220
  isScoped: boolean;
221
221
  }
222
222
  /** Session statistics for /session command */
223
+ export interface CompactionGateStats {
224
+ gateFailures: number;
225
+ deterministicGapFills: number;
226
+ compactionsWithGateFailures: number;
227
+ }
223
228
  export interface SessionStats {
224
229
  sessionFile: string | undefined;
225
230
  sessionId: string;
@@ -238,6 +243,7 @@ export interface SessionStats {
238
243
  cost: number;
239
244
  contextUsage?: ContextUsage;
240
245
  toolArgumentValidation: ToolArgumentValidationStats;
246
+ compactionGates: CompactionGateStats;
241
247
  }
242
248
  /** customType for spawned-usage roll-up entries (Cost Aggregation, Model A). */
243
249
  export declare const SPAWNED_USAGE_CUSTOM_TYPE = "spawned_usage";