@caupulican/pi-adaptative 0.80.38 → 0.80.42

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.
Files changed (32) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/core/agent-session.d.ts.map +1 -1
  3. package/dist/core/agent-session.js +18 -10
  4. package/dist/core/agent-session.js.map +1 -1
  5. package/dist/core/compaction/compaction.d.ts +1 -1
  6. package/dist/core/compaction/compaction.d.ts.map +1 -1
  7. package/dist/core/compaction/compaction.js +4 -2
  8. package/dist/core/compaction/compaction.js.map +1 -1
  9. package/dist/core/settings-manager.d.ts +2 -0
  10. package/dist/core/settings-manager.d.ts.map +1 -1
  11. package/dist/core/settings-manager.js +1 -0
  12. package/dist/core/settings-manager.js.map +1 -1
  13. package/dist/core/system-prompt.d.ts.map +1 -1
  14. package/dist/core/system-prompt.js +3 -0
  15. package/dist/core/system-prompt.js.map +1 -1
  16. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  17. package/dist/modes/interactive/components/settings-selector.js +3 -1
  18. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  19. package/dist/modes/interactive/interactive-mode.d.ts +3 -0
  20. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  21. package/dist/modes/interactive/interactive-mode.js +38 -14
  22. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  23. package/docs/adaptive-extension-shared-state-audit.md +1 -1
  24. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  25. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  26. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  27. package/examples/extensions/sandbox/package-lock.json +2 -2
  28. package/examples/extensions/sandbox/package.json +1 -1
  29. package/examples/extensions/with-deps/package-lock.json +2 -2
  30. package/examples/extensions/with-deps/package.json +1 -1
  31. package/npm-shrinkwrap.json +12 -12
  32. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## [0.80.42] - 2026-06-24
2
+
3
+ ## [0.80.41] - 2026-06-24
4
+
5
+ ### Changed
6
+
7
+ - Changed auto-compaction to honor a model-specific `autoCompactionTriggerTokens` threshold when set, compacting at the lower of that value and `contextWindow - reserveTokens`. Fugu and Fugu Ultra now auto-compact around 272000 tokens instead of effectively waiting for the 1,000,000 context window.
8
+
9
+ ## [0.80.40] - 2026-06-24
10
+
11
+ ### Fixed
12
+
13
+ - Fixed Auto Learn prompt construction in lightweight harnesses so self-modification source resolution falls back safely when no full session manager is present.
14
+
15
+ ## [0.80.39] - 2026-06-24
16
+
17
+ ### Changed
18
+
19
+ - Strengthened the adaptive core prompt with tool-first deterministic-work routing, evidence-backed correction handling, and current-information honesty.
20
+
1
21
  ## [0.80.38] - 2026-06-24
2
22
 
3
23
  ### Added