@caupulican/pi-adaptative 0.80.78 → 0.80.80

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 +23 -0
  2. package/dist/core/agent-session.d.ts +6 -0
  3. package/dist/core/agent-session.d.ts.map +1 -1
  4. package/dist/core/agent-session.js +13 -0
  5. package/dist/core/agent-session.js.map +1 -1
  6. package/dist/core/learning/skill-curator.d.ts +7 -0
  7. package/dist/core/learning/skill-curator.d.ts.map +1 -1
  8. package/dist/core/learning/skill-curator.js +28 -0
  9. package/dist/core/learning/skill-curator.js.map +1 -1
  10. package/dist/core/resource-loader.d.ts +6 -0
  11. package/dist/core/resource-loader.d.ts.map +1 -1
  12. package/dist/core/resource-loader.js +49 -34
  13. package/dist/core/resource-loader.js.map +1 -1
  14. package/dist/core/settings-manager.d.ts +19 -1
  15. package/dist/core/settings-manager.d.ts.map +1 -1
  16. package/dist/core/settings-manager.js +17 -2
  17. package/dist/core/settings-manager.js.map +1 -1
  18. package/dist/modes/interactive/components/footer.d.ts.map +1 -1
  19. package/dist/modes/interactive/components/footer.js +6 -0
  20. package/dist/modes/interactive/components/footer.js.map +1 -1
  21. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  22. package/dist/modes/interactive/interactive-mode.js +12 -0
  23. package/dist/modes/interactive/interactive-mode.js.map +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,26 @@
1
+ ## [0.80.80] - 2026-06-28
2
+
3
+ ### Fixed
4
+
5
+ - Resource-profile editor now lists extensions installed under external resource roots. Previously these
6
+ extensions were loaded and active but missing from the editor's "available" list, so it showed "(none
7
+ available)" while they ran and they couldn't be blocked or allowed per profile. The editor's universe
8
+ and the loaded set now come from a single discovery source, so they always match.
9
+
10
+ ## [0.80.79] - 2026-06-28
11
+
12
+ ### Changed
13
+
14
+ - The proactive cost guard is now ON by default in warn-only mode: an unusually expensive turn (projected
15
+ over ~$2.50) surfaces a `⚠$X/turn` indicator in the footer. It never silently changes behavior —
16
+ auto-downgrading reasoning remains opt-in (`costGuard.action: "downgrade"`); set `costGuard.maxTurnUsd: 0`
17
+ to disable.
18
+ - The skill curator now auto-archives stale reflection-promoted skills at session start by default
19
+ (restorable, announced, promoted-only). Archival runs under a lock so concurrent sessions sharing an
20
+ agent directory can't race, and every auto-archive is announced with a `/curate restore` hint. Set
21
+ `curator.autoArchive: false` to return to propose-only (`/curate`). Hand-authored skills are never
22
+ touched, and skill consolidation remains a suggestion you approve.
23
+
1
24
  ## [0.80.78] - 2026-06-28
2
25
 
3
26
  ### Fixed
@@ -361,6 +361,12 @@ export declare class AgentSession {
361
361
  staleDays?: number;
362
362
  overlapThreshold?: number;
363
363
  }): CurationProposals;
364
+ /**
365
+ * Session-start auto-curation (#32, default ON): archive stale reflection-promoted skills in one
366
+ * locked batch and return the names archived so the host can ANNOUNCE it (never silent). Skipped in
367
+ * child sessions and when `curator.autoArchive` is disabled. Restorable via `/curate restore`.
368
+ */
369
+ runStartupSkillCuration(): Promise<string[]>;
364
370
  /** Archive a promoted skill into `skills/.archive/` (restorable, non-destructive). Returns true if moved. */
365
371
  archivePromotedSkill(name: string): boolean;
366
372
  /** Restore a previously-archived promoted skill. Returns true if moved back. */