@caupulican/pi-adaptative 0.80.63 → 0.80.64
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 +6 -0
- package/dist/core/agent-session.d.ts +5 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +13 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/profile-registry.d.ts +2 -0
- package/dist/core/profile-registry.d.ts.map +1 -1
- package/dist/core/profile-registry.js +2 -0
- package/dist/core/profile-registry.js.map +1 -1
- package/dist/core/settings-manager.d.ts +10 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +19 -0
- package/dist/core/settings-manager.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,9 @@
|
|
|
1
|
+
## [0.80.64] - 2026-06-27
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
|
|
5
|
+
- Situational profiles (souls): a resource profile can now define a `soul` — a situational identity injected into the system prompt while the profile is active — so switching a profile switches the agent's identity, capabilities, and model together as one "situation".
|
|
6
|
+
|
|
1
7
|
## [0.80.63] - 2026-06-27
|
|
2
8
|
|
|
3
9
|
### Changed
|
|
@@ -418,6 +418,11 @@ export declare class AgentSession {
|
|
|
418
418
|
get promptTemplates(): ReadonlyArray<PromptTemplate>;
|
|
419
419
|
private _normalizePromptSnippet;
|
|
420
420
|
private _normalizePromptGuidelines;
|
|
421
|
+
/**
|
|
422
|
+
* R6: the active profile's situational soul, wrapped so the model reads it as its identity for this
|
|
423
|
+
* situation. Empty when no active profile defines a soul.
|
|
424
|
+
*/
|
|
425
|
+
private _buildSituationSoulPrompt;
|
|
421
426
|
private _buildSelfModificationPrompt;
|
|
422
427
|
private _buildAutonomyPrompt;
|
|
423
428
|
private _rebuildSystemPrompt;
|