@caupulican/pi-adaptative 0.80.10 → 0.80.12
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 +9 -0
- package/README.md +1 -1
- 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 +10 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/dist/modes/interactive/components/tool-execution.js +0 -2
- package/dist/modes/interactive/components/tool-execution.js.map +1 -1
- package/dist/modes/interactive/components/tool-title.d.ts +1 -1
- package/dist/modes/interactive/components/tool-title.d.ts.map +1 -1
- package/dist/modes/interactive/components/tool-title.js +28 -3
- package/dist/modes/interactive/components/tool-title.js.map +1 -1
- package/docs/tui.md +4 -2
- package/docs/usage.md +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,14 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.80.12] - 2026-06-07
|
|
4
|
+
|
|
5
|
+
## [0.80.11] - 2026-06-07
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Made centralized TUI title badges use theme-balanced state colors for running, success, warning, persistent, failure, blocked, and muted states.
|
|
10
|
+
- Updated tool execution fallback labels to show status colors instead of forcing the neutral tool-title color.
|
|
11
|
+
|
|
3
12
|
## [0.80.8] - 2026-06-04
|
|
4
13
|
|
|
5
14
|
### Changed
|
package/README.md
CHANGED
|
@@ -230,7 +230,7 @@ See `/hotkeys` for the full list. Customize via `~/.pi/agent/keybindings.json`.
|
|
|
230
230
|
|
|
231
231
|
Submit messages while the agent is working:
|
|
232
232
|
|
|
233
|
-
- **Enter** queues a *steering* message,
|
|
233
|
+
- **Enter** queues a *steering* message; if the assistant is currently streaming text, Pi interrupts that stream and delivers the steering next, otherwise it delivers after the current assistant turn finishes executing its tool calls
|
|
234
234
|
- **Alt+Enter** queues a *follow-up* message, delivered only after the agent finishes all work
|
|
235
235
|
- **Escape** aborts and restores queued messages to editor
|
|
236
236
|
- **Alt+Up** retrieves queued messages back to editor
|
|
@@ -178,6 +178,8 @@ export declare class AgentSession {
|
|
|
178
178
|
private _queuedExtensionCommands;
|
|
179
179
|
/** Messages queued to be included with the next user prompt as context ("asides"). */
|
|
180
180
|
private _pendingNextTurnMessages;
|
|
181
|
+
/** Serializes prompt() submissions made while streaming so queued steering/follow-ups keep user-typed FIFO order. */
|
|
182
|
+
private _streamingPromptSubmissionTail;
|
|
181
183
|
private _compactionAbortController;
|
|
182
184
|
private _autoCompactionAbortController;
|
|
183
185
|
private _overflowRecoveryAttempted;
|
|
@@ -337,6 +339,7 @@ export declare class AgentSession {
|
|
|
337
339
|
* @throws Error if no model selected or no API key available (when not streaming)
|
|
338
340
|
*/
|
|
339
341
|
prompt(text: string, options?: PromptOptions): Promise<void>;
|
|
342
|
+
private _promptUnserialized;
|
|
340
343
|
/**
|
|
341
344
|
* Try to execute an extension command. Returns true if command was found and executed.
|
|
342
345
|
*/
|