@caupulican/pi-adaptative 0.80.30 → 0.80.34

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,29 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.80.34] - 2026-06-21
4
+
5
+ ### Fixed
6
+
7
+ - Fixed release cleanliness by generating image model metadata in the same formatted shape enforced by CI, so binary publish jobs do not dirty `image-models.generated.ts`.
8
+
9
+ ## [0.80.33] - 2026-06-21
10
+
11
+ ### Fixed
12
+
13
+ - Fixed the hot-reload safety regression test to mutate agent streaming state through a typed test-only shim, allowing release CI type checks to pass while keeping runtime state readonly.
14
+
15
+ ## [0.80.32] - 2026-06-21
16
+
17
+ ### Added
18
+
19
+ - Added code-baked Auto Learn review triggers for corrective, self-improvement, and complex tool-use turns so reusable behavior is steered toward auditable skills/prompts/agents/extensions/source changes instead of memory-only drift.
20
+
21
+ ### Fixed
22
+
23
+ - Made extension-triggered hot reload UI-safe: `ctx.reload()` now refuses to run while the agent is streaming, a tool call is active, or context compaction/branch summarization is in progress, preserving the current TUI/session instead of racing reload through an active turn.
24
+
25
+ ## [0.80.31] - 2026-06-19
26
+
1
27
  ## [0.80.30] - 2026-06-19
2
28
 
3
29
  ### 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?;