@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 +13 -0
- package/dist/core/agent-session.d.ts +3 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +4 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/context-gc.d.ts.map +1 -1
- package/dist/core/context-gc.js +93 -60
- package/dist/core/context-gc.js.map +1 -1
- package/dist/core/improvement-loop.d.ts +296 -0
- package/dist/core/improvement-loop.d.ts.map +1 -0
- package/dist/core/improvement-loop.js +906 -0
- package/dist/core/improvement-loop.js.map +1 -0
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +1 -0
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +5 -0
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
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?;
|