@caupulican/pi-adaptative 0.80.89 → 0.80.91
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 +26 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +18 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/context/context-composition.d.ts +2 -0
- package/dist/core/context/context-composition.d.ts.map +1 -1
- package/dist/core/context/context-composition.js +1 -1
- package/dist/core/context/context-composition.js.map +1 -1
- package/dist/core/profile-resource-selection.d.ts.map +1 -1
- package/dist/core/profile-resource-selection.js +19 -6
- package/dist/core/profile-resource-selection.js.map +1 -1
- package/dist/core/resource-loader.d.ts +22 -0
- package/dist/core/resource-loader.d.ts.map +1 -1
- package/dist/core/resource-loader.js +54 -0
- package/dist/core/resource-loader.js.map +1 -1
- package/dist/modes/interactive/components/profile-resource-editor.d.ts.map +1 -1
- package/dist/modes/interactive/components/profile-resource-editor.js +11 -4
- package/dist/modes/interactive/components/profile-resource-editor.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +65 -14
- 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/examples/sdk/12-full-control.ts +4 -0
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## [0.80.91] - 2026-07-02
|
|
2
|
+
|
|
3
|
+
## [0.80.90] - 2026-07-02
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fixed the profile editor's universe collapsing under strict UAC: the Skills/Prompts/Agents lists
|
|
8
|
+
were built from the profile-NARROWED loaded getters, so while any restrictive profile was active
|
|
9
|
+
you could not see — let alone grant — currently-blocked resources, including expanding the very
|
|
10
|
+
profile you were running under. Discovery is now profile-independent (full pre-filter path sets,
|
|
11
|
+
mirroring the existing extensions fix), and the editor's Tools list now includes registered
|
|
12
|
+
extension tools.
|
|
13
|
+
- Fixed profile-editor saves silently corrupting profiles: grants referenced outside the currently
|
|
14
|
+
visible universe were dropped on save, and a fully-granted kind re-encoded to an omitted kind —
|
|
15
|
+
which under strict UAC means DENY-ALL. Selection encode/decode is now strict-UAC-coherent
|
|
16
|
+
(unmentioned decodes as denied; grant-all encodes as an explicit allow:["*"]; profile-referenced
|
|
17
|
+
ids outside the visible universe survive decode/encode round-trips).
|
|
18
|
+
- Surfaced the silent strict-UAC denial of AGENTS.md/CLAUDE.md context files: when the active
|
|
19
|
+
profile does not mention the "agents" kind, the withheld files now produce a loader warning and
|
|
20
|
+
a /context dashboard observation instead of instructions vanishing without a trace.
|
|
21
|
+
- Fixed profile tool grants never ACTIVATING: activation was only ever the requested defaults
|
|
22
|
+
intersected with the profile allow-list, so a profile granting non-default tools (e.g. a
|
|
23
|
+
search-only profile allowing grep/find) produced an empty or truncated "Available tools" set on
|
|
24
|
+
load and across /reload. Explicitly named tools in an active profile's allow list now activate
|
|
25
|
+
from the registry (a blanket "*" stays grant-only, deriving activation from the defaults).
|
|
26
|
+
|
|
1
27
|
## [0.80.89] - 2026-07-02
|
|
2
28
|
|
|
3
29
|
### Added
|