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 +65 -0
- package/LICENSE +21 -661
- package/README.md +48 -25
- package/dist/adapters/openclaw/index.d.ts +1 -1
- package/dist/adapters/openclaw/index.js +533 -2260
- package/dist/adapters/skeln/index.d.ts +1951 -0
- package/dist/adapters/skeln/index.js +3964 -0
- package/dist/chunk-E2DHUFZK.js +2660 -0
- package/dist/{chunk-DGV6D6Q3.js → chunk-EEEL53X4.js} +3547 -4479
- package/dist/chunk-GELCEVFA.js +14 -0
- package/dist/chunk-JSVQILB3.js +1207 -0
- package/dist/{chunk-7TDALVPY.js → chunk-NNO2V4GH.js} +5139 -4635
- package/dist/{chunk-MJIB6J5S.js → chunk-NOIZQRQV.js} +6 -4
- package/dist/{chunk-IMQIJPIP.js → chunk-V5CDMHRN.js} +48 -60
- package/dist/claim-slot-policy-CdrW_1l4.d.ts +13 -0
- package/dist/cli.js +19 -17
- package/dist/core/recall/index.d.ts +5 -14
- package/dist/core/recall/index.js +1 -1
- package/dist/internal-eval-server.js +5 -4
- package/dist/internal-recall-eval-server.js +5 -4
- package/dist/{ports-Nj5nd2Ri.d.ts → ports-CpzWESmZ.d.ts} +208 -2
- package/package.json +8 -6
- /package/dist/{chunk-6T5RXGIR.js → chunk-5LADPJ4C.js} +0 -0
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.
|