agenr 3.0.0 → 3.2.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 +61 -0
- package/LICENSE +21 -661
- package/README.md +48 -25
- package/dist/adapters/openclaw/index.js +192 -164
- package/dist/adapters/skeln/index.d.ts +61 -2
- package/dist/adapters/skeln/index.js +177 -112
- package/dist/{chunk-P5SB75FK.js → chunk-6HY5F5FE.js} +2 -2
- package/dist/{chunk-ELR2HSVC.js → chunk-FMQTRTWE.js} +402 -122
- package/dist/{chunk-MYZ2CWY6.js → chunk-KL6X2E3I.js} +464 -542
- package/dist/{chunk-LAXNNWHM.js → chunk-TMDNFBBC.js} +191 -12
- package/dist/{chunk-575MUIW5.js → chunk-UEGURBBW.js} +14 -179
- package/dist/{chunk-TBFAARM5.js → chunk-ZAX3YSTU.js} +12 -1
- package/dist/cli.js +24 -27
- package/dist/internal-eval-server.js +3 -3
- package/dist/internal-recall-eval-server.js +3 -3
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,67 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.2.0] - 2026-06-02
|
|
6
|
+
|
|
7
|
+
Cross-platform packaging, CI smoke coverage, and path handling hardening release.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **Repository checks now cover package smoke workflows across platforms.** The release adds local package smoke tooling, Windows simulation, Docker-based Linux checks, and a slimmer Windows CI workflow.
|
|
12
|
+
- **Path handling now has focused cross-platform helpers and tests.** Shared filesystem path utilities and test helpers cover Windows, Linux, and local temporary-path behavior.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- **Package build and smoke scripts are more portable.** Root and plugin package scripts now avoid shell-specific assumptions and handle install paths consistently across supported platforms.
|
|
17
|
+
- **Skeln adapter imports now use explicit shared host types.** The Skeln adapter has a dedicated type boundary for host-facing imports, reducing package-resolution friction during plugin builds.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- **Windows package smoke tests are quoting-safe.** Smoke commands now pass arguments separately, preserve path quotes, avoid `npx`, and restore the `cmd.exe` npm shim path needed by Windows runs.
|
|
22
|
+
- **SQLite and temp-path tests now clean up safely on Windows.** Database and test cleanup paths avoid platform-sensitive deletion and quoting failures.
|
|
23
|
+
- **Line-ending and packaging behavior is more deterministic.** Repository checkout and packaging paths are hardened for Linux and Windows release validation.
|
|
24
|
+
|
|
25
|
+
### Validation
|
|
26
|
+
|
|
27
|
+
Changes since last push to `origin/master`:
|
|
28
|
+
|
|
29
|
+
- Add local package smoke, Windows simulation, and Docker Linux test runners
|
|
30
|
+
- Add a slim Windows CI workflow and deterministic LF checkout configuration
|
|
31
|
+
- Harden package smoke command quoting, argument passing, and npm shim handling on Windows
|
|
32
|
+
- Add shared filesystem path helpers and cross-platform test temp-path helpers
|
|
33
|
+
- Harden SQLite, temp path, Skeln adapter, and plugin build paths for cross-platform package validation
|
|
34
|
+
|
|
35
|
+
## [3.1.0] - 2026-05-31
|
|
36
|
+
|
|
37
|
+
Memory fetch tools, Skeln episode lifecycle hardening, and repository packaging cleanup release.
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- **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.
|
|
42
|
+
- **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.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- **Published package metadata now uses MIT licensing.** The root package and plugin packages now advertise MIT licensing and ship the shorter MIT license text.
|
|
47
|
+
- **Skeln documentation and plugin setup are clearer.** The README, architecture, procedure, recall, debugging, and Skeln plugin docs were refreshed for current integration behavior.
|
|
48
|
+
- **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.
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
|
|
52
|
+
- **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.
|
|
53
|
+
- **Goal generation exports are clearer without changing behavior.** `INITIAL_GOAL_GENERATION` docs and export shape were tightened.
|
|
54
|
+
|
|
55
|
+
### Validation
|
|
56
|
+
|
|
57
|
+
Changes since last push to `origin/master`:
|
|
58
|
+
|
|
59
|
+
- Add OpenClaw and Skeln `agenr_fetch` tool surfaces with shared fetch formatting and tests
|
|
60
|
+
- Improve recall/fetch detail formatting and unified recall test coverage
|
|
61
|
+
- Add dedicated Skeln shutdown episode writer, update bounded and goal-close episode tests, and document lifecycle behavior
|
|
62
|
+
- Refresh Skeln plugin, architecture, recall, procedures, debugging, and README docs
|
|
63
|
+
- Relicense root and plugin package metadata under MIT
|
|
64
|
+
- Stop tracking gitignored internal docs and remove unused simulation scripts
|
|
65
|
+
|
|
5
66
|
## [3.0.0] - 2026-05-31
|
|
6
67
|
|
|
7
68
|
Skeln host integration, session and working memory, and goal-control major release.
|