@caupulican/pi-adaptative 0.80.95 → 0.80.96
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 +16 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +39 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/toolkit/reflex-interpreter.d.ts +28 -0
- package/dist/core/toolkit/reflex-interpreter.d.ts.map +1 -0
- package/dist/core/toolkit/reflex-interpreter.js +62 -0
- package/dist/core/toolkit/reflex-interpreter.js.map +1 -0
- package/dist/core/tools/run-toolkit-script.d.ts +8 -0
- package/dist/core/tools/run-toolkit-script.d.ts.map +1 -1
- package/dist/core/tools/run-toolkit-script.js +21 -3
- package/dist/core/tools/run-toolkit-script.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,19 @@
|
|
|
1
|
+
## [0.80.96] - 2026-07-02
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
|
|
5
|
+
- Added routed-turn capability tool filtering (G4): when the model router swaps a turn to a
|
|
6
|
+
cheaper model, the tool surface now follows the ROUTED model's capability class for that turn
|
|
7
|
+
(an 8k local model no longer inherits — and pays schema tokens for — background-autonomy tools
|
|
8
|
+
it cannot drive), restored with the session model afterwards.
|
|
9
|
+
- Added the reflex brain to `run_toolkit_script`: when the deterministic Level-0 matcher is
|
|
10
|
+
ambiguous ("prepare db" vs "update db"), a fitness-gated local interpreter model (validated
|
|
11
|
+
10/10 on the hard registry) resolves the request into a registry pick with extracted args —
|
|
12
|
+
confidence-gated, registry-validated, and advisory only: danger confirmation and the structural
|
|
13
|
+
execution contract apply identically to brain-selected scripts, and an absent/unfit/unconfident
|
|
14
|
+
brain keeps today's shortlist behavior byte-for-byte. Brain spend is usage-accounted
|
|
15
|
+
("toolkit-brain").
|
|
16
|
+
|
|
1
17
|
## [0.80.95] - 2026-07-02
|
|
2
18
|
|
|
3
19
|
### Added
|