@caupulican/pi-adaptative 0.80.12 → 0.80.13
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 +6 -0
- package/dist/modes/interactive/interactive-mode.d.ts +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +15 -17
- package/dist/modes/interactive/interactive-mode.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,5 +1,11 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.80.13] - 2026-06-08
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Reduced automatic Auto Learn TUI noise by hiding model/log-path startup status from routine learner launches, showing only a compact `(learning)` footer marker while active, clearing it when done, and spawning learners with `xhigh` thinking.
|
|
8
|
+
|
|
3
9
|
## [0.80.12] - 2026-06-07
|
|
4
10
|
|
|
5
11
|
## [0.80.11] - 2026-06-07
|
|
@@ -32,6 +32,7 @@ export interface AutoLearnSpawnTarget {
|
|
|
32
32
|
export interface AutoLearnSpawnArgsOptions {
|
|
33
33
|
name: string;
|
|
34
34
|
modelPattern: string;
|
|
35
|
+
thinkingLevel?: string;
|
|
35
36
|
sessionDir: string;
|
|
36
37
|
sessionId: string;
|
|
37
38
|
promptPath: string;
|
|
@@ -106,7 +107,6 @@ export declare class InteractiveMode {
|
|
|
106
107
|
private pendingBashComponents;
|
|
107
108
|
private autoCompactionLoader;
|
|
108
109
|
private autoCompactionEscapeHandler?;
|
|
109
|
-
private autoLearnLastStatus;
|
|
110
110
|
private retryLoader;
|
|
111
111
|
private retryCountdown;
|
|
112
112
|
private retryEscapeHandler?;
|