agenr 2.1.0 → 3.1.0

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 CHANGED
@@ -2,6 +2,71 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.1.0] - 2026-05-31
6
+
7
+ Memory fetch tools, Skeln episode lifecycle hardening, and repository packaging cleanup release.
8
+
9
+ ### Added
10
+
11
+ - **OpenClaw and Skeln now expose `agenr_fetch`.** The release adds fetch tool wiring, shared result formatting, prompt/tool summaries, target resolution, and regression coverage for direct memory retrieval.
12
+ - **Recall output now carries richer details for fetch workflows.** Shared recall formatting and fixtures preserve recall details so follow-up fetches can target entries more reliably.
13
+
14
+ ### Changed
15
+
16
+ - **Published package metadata now uses MIT licensing.** The root package and plugin packages now advertise MIT licensing and ship the shorter MIT license text.
17
+ - **Skeln documentation and plugin setup are clearer.** The README, architecture, procedure, recall, debugging, and Skeln plugin docs were refreshed for current integration behavior.
18
+ - **Repo-local planning artifacts and unused simulation scripts are no longer tracked.** Internal docs covered by gitignore and obsolete scripts were removed from release history noise.
19
+
20
+ ### Fixed
21
+
22
+ - **Skeln shutdown episode handling is sequenced and isolated.** Shutdown episode writing now has a dedicated path with tests, avoiding lifecycle overlap with session-memory shutdown work.
23
+ - **Goal generation exports are clearer without changing behavior.** `INITIAL_GOAL_GENERATION` docs and export shape were tightened.
24
+
25
+ ### Validation
26
+
27
+ Changes since last push to `origin/master`:
28
+
29
+ - Add OpenClaw and Skeln `agenr_fetch` tool surfaces with shared fetch formatting and tests
30
+ - Improve recall/fetch detail formatting and unified recall test coverage
31
+ - Add dedicated Skeln shutdown episode writer, update bounded and goal-close episode tests, and document lifecycle behavior
32
+ - Refresh Skeln plugin, architecture, recall, procedures, debugging, and README docs
33
+ - Relicense root and plugin package metadata under MIT
34
+ - Stop tracking gitignored internal docs and remove unused simulation scripts
35
+
36
+ ## [3.0.0] - 2026-05-31
37
+
38
+ Skeln host integration, session and working memory, and goal-control major release.
39
+
40
+ ### Added
41
+
42
+ - **Skeln now has a publishable agenr plugin and runtime adapter.** Agenr ships `@agenr/skeln-plugin` with Skeln-native tool wiring, recall/store/update/work/goal surfaces, plugin packaging, setup docs, and host scope handling.
43
+ - **Session memory and working memory now support Skeln continuity.** The release adds session-memory repositories, trigger routing, continuity records, transient working-set projection, lifecycle checkpoints, external goal preparation, and durable work-event persistence.
44
+
45
+ ### Changed
46
+
47
+ - **OpenClaw and Skeln share more memory runtime infrastructure.** Entry tools, injection policy, memory-policy parsing, target resolution, claim support, and host-memory composition moved into shared adapters so future host integrations reuse the same behavior.
48
+ - **Session-start and before-turn memory policy is more explicit.** Plugin configuration now supports enabled and core-memory controls, JSON string policy parsing for Skeln, and tighter session-start and before-turn formatting.
49
+ - **Plugin dependencies now use the `@earendil-works` package namespace.** Runtime imports and lockfile metadata were updated for the current pi package names.
50
+
51
+ ### Fixed
52
+
53
+ - **Session-memory feature gating is quiet when disabled.** Session-memory trigger logging now treats feature-disabled intake as an intentional no-op instead of noisy runtime feedback.
54
+ - **Goal-generation documentation is clearer.** Working-memory goal seed text now documents the initial goal constant without changing behavior.
55
+
56
+ ### Validation
57
+
58
+ Changes since last push to `origin/master`:
59
+
60
+ - Add the publishable Skeln plugin package, Skeln plugin docs, and Skeln runtime adapter
61
+ - Add shared plugin-runtime composition for OpenClaw and Skeln host integrations
62
+ - Add session-memory schema, repositories, trigger routing, continuity, and post-compaction handling
63
+ - Add working-memory schema, repositories, projections, operation handlers, checkpoints, and goal continuation
64
+ - Add Skeln `agenr_work` and `agenr_goal` flows with regression coverage
65
+ - Add session episode ingestion, shutdown and goal-close episode support, and bounded episode services
66
+ - Update OpenClaw and Skeln memory-policy configuration, session-start injection, and before-turn formatting
67
+ - Move pi runtime dependencies to `@earendil-works` packages
68
+ - Fix disabled session-memory intake logging and refresh goal-generation documentation
69
+
5
70
  ## [2.1.0] - 2026-04-22
6
71
 
7
72
  Recall ranking overhaul, before-turn memory patching, and eval/debug tooling minor release.