@caupulican/pi-adaptative 0.80.29 → 0.80.31

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,16 @@
1
+ ## [0.80.31] - 2026-06-19
2
+
3
+ ## [0.80.30] - 2026-06-19
4
+
5
+ ### Added
6
+
7
+ - Added deterministic improvement-loop helpers for metric-based keep/discard decisions, sandbox worktree creation, sandbox measurement, patch export, and cleanup.
8
+ - Tightened adaptive self-evolution prompt guidance around sandbox-first mutation, validation, and durable evidence capture.
9
+
10
+ ### Changed
11
+
12
+ - Optimized semantic context GC membership and planning, including marker-first semantic scans that avoid unnecessary string joins.
13
+
1
14
  ## [0.80.29] - 2026-06-18
2
15
 
3
16
  ### Added
@@ -84,6 +84,8 @@ export interface AgentSessionConfig {
84
84
  sessionManager: SessionManager;
85
85
  settingsManager: SettingsManager;
86
86
  cwd: string;
87
+ /** User-level agent state directory for generated runtime artifacts. */
88
+ agentDir?: string;
87
89
  /** Models to cycle through with Ctrl+P (from --models flag) */
88
90
  scopedModels?: Array<{
89
91
  model: Model<any>;
@@ -198,6 +200,7 @@ export declare class AgentSession {
198
200
  private _customTools;
199
201
  private _baseToolDefinitions;
200
202
  private _cwd;
203
+ private _agentDir;
201
204
  private _extensionRunnerRef?;
202
205
  private _initialActiveToolNames?;
203
206
  private _allowedToolNames?;