agenr 3.0.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 +31 -0
- package/LICENSE +21 -661
- package/README.md +48 -25
- package/dist/adapters/openclaw/index.js +192 -164
- package/dist/adapters/skeln/index.js +177 -112
- package/dist/{chunk-MYZ2CWY6.js → chunk-E2DHUFZK.js} +464 -542
- package/dist/{chunk-LAXNNWHM.js → chunk-EEEL53X4.js} +191 -12
- package/dist/{chunk-TBFAARM5.js → chunk-JSVQILB3.js} +12 -1
- package/dist/{chunk-ELR2HSVC.js → chunk-NNO2V4GH.js} +243 -0
- package/dist/{chunk-P5SB75FK.js → chunk-NOIZQRQV.js} +2 -2
- package/dist/{chunk-575MUIW5.js → chunk-V5CDMHRN.js} +14 -179
- package/dist/cli.js +3 -3
- package/dist/internal-eval-server.js +3 -3
- package/dist/internal-recall-eval-server.js +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
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
|
+
|
|
5
36
|
## [3.0.0] - 2026-05-31
|
|
6
37
|
|
|
7
38
|
Skeln host integration, session and working memory, and goal-control major release.
|