@caupulican/pi-adaptative 0.80.61 → 0.80.62

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,9 @@
1
+ ## [0.80.62] - 2026-06-27
2
+
3
+ ### Added
4
+
5
+ - Adaptive recall feedback: pi now tracks whether the cross-session context it recalled was actually used in its answer, and tunes how eagerly it recalls — leaning in when recall helps, backing off when it doesn't.
6
+
1
7
  ## [0.80.61] - 2026-06-27
2
8
 
3
9
  ### Added
@@ -274,6 +274,8 @@ export declare class AgentSession {
274
274
  private readonly _isExplicitThinking;
275
275
  /** Plug-and-play memory subsystem. Recreated on each (re)initialize so reload is safe. */
276
276
  private _memoryManager;
277
+ /** R4: tracks whether injected recall is actually used, to adapt the recall gate. */
278
+ private readonly _effectivenessTracker;
277
279
  private readonly _isChildSession;
278
280
  /** Memory providers registered by extensions via pi.registerMemoryProvider, applied on (re)init. */
279
281
  private _pendingMemoryProviders;