@caupulican/pi-adaptative 0.80.72 → 0.80.74
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 +24 -0
- package/dist/core/agent-session.d.ts +1 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +6 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/memory/providers/file-store.d.ts.map +1 -1
- package/dist/core/memory/providers/file-store.js +11 -2
- package/dist/core/memory/providers/file-store.js.map +1 -1
- package/dist/core/memory/providers/transcript-recall.d.ts.map +1 -1
- package/dist/core/memory/providers/transcript-recall.js +14 -3
- package/dist/core/memory/providers/transcript-recall.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +8 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +51 -1
- 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,3 +1,27 @@
|
|
|
1
|
+
## [0.80.74] - 2026-06-28
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
|
|
5
|
+
- Background-reflection debounce now defers instead of dropping (peer review): a turn skipped by the
|
|
6
|
+
debounce has its text buffered and folded into the next reflection pass, so corrective feedback from
|
|
7
|
+
rapid multi-turn corrections is still learned rather than lost. The buffer is size-bounded.
|
|
8
|
+
|
|
9
|
+
## [0.80.73] - 2026-06-28
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Cross-session recall hardening: recalled past-session pages are now injected as a GC-managed
|
|
14
|
+
`<memory_context>` block (instead of a plain user message), so stale recall pages pack down over long
|
|
15
|
+
sessions instead of accumulating verbatim; oversize transcript logs are skipped before parsing; and
|
|
16
|
+
recall is scoped to the current working directory so transcripts from other projects can't leak in.
|
|
17
|
+
- Memory injection cost guard: the persistent-memory block (`MEMORY.md`/`USER.md`) injected into the
|
|
18
|
+
system prompt is now capped at read time as well as on write, so a memory file bloated by an external
|
|
19
|
+
edit can no longer inflate every turn's context. The file on disk is untouched and truncation is noted.
|
|
20
|
+
- Background reflection debounce (cost guard): native end-of-turn reflection no longer launches
|
|
21
|
+
overlapping or back-to-back passes during a rapid multi-turn correction session; a minimum interval and
|
|
22
|
+
an in-flight guard prevent redundant background model calls. Skipped corrections are still reflected on
|
|
23
|
+
the next eligible pass over the accumulated turn text.
|
|
24
|
+
|
|
1
25
|
## [0.80.72] - 2026-06-28
|
|
2
26
|
|
|
3
27
|
### Fixed
|
|
@@ -21,7 +21,7 @@ import { type ContextUsage, type ExtensionCommandContextActions, type ExtensionC
|
|
|
21
21
|
import { type ChannelProvider, GatewayRegistry, type JobSchedulerProvider } from "./gateways/channel-provider.ts";
|
|
22
22
|
import { type DemandSignals, type ReflectionResult } from "./learning/reflection-engine.ts";
|
|
23
23
|
import type { MemoryProvider } from "./memory/memory-provider.ts";
|
|
24
|
-
import type
|
|
24
|
+
import { type CustomMessage } from "./messages.ts";
|
|
25
25
|
import type { ModelRegistry } from "./model-registry.ts";
|
|
26
26
|
import { type PromptTemplate } from "./prompt-templates.ts";
|
|
27
27
|
import type { ResourceLoader } from "./resource-loader.ts";
|