agenr 2.1.0 → 3.0.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 +34 -0
- package/dist/adapters/openclaw/index.d.ts +1 -1
- package/dist/adapters/openclaw/index.js +294 -2049
- package/dist/adapters/skeln/index.d.ts +1951 -0
- package/dist/adapters/skeln/index.js +3899 -0
- package/dist/{chunk-IMQIJPIP.js → chunk-575MUIW5.js} +206 -53
- package/dist/{chunk-7TDALVPY.js → chunk-ELR2HSVC.js} +4920 -4659
- package/dist/chunk-GELCEVFA.js +14 -0
- package/dist/{chunk-DGV6D6Q3.js → chunk-LAXNNWHM.js} +3395 -4506
- package/dist/chunk-MYZ2CWY6.js +2738 -0
- package/dist/{chunk-MJIB6J5S.js → chunk-P5SB75FK.js} +6 -4
- package/dist/chunk-TBFAARM5.js +1196 -0
- 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 +7 -5
- /package/dist/{chunk-6T5RXGIR.js → chunk-5LADPJ4C.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.0.0] - 2026-05-31
|
|
6
|
+
|
|
7
|
+
Skeln host integration, session and working memory, and goal-control major release.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **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.
|
|
12
|
+
- **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.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- **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.
|
|
17
|
+
- **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.
|
|
18
|
+
- **Plugin dependencies now use the `@earendil-works` package namespace.** Runtime imports and lockfile metadata were updated for the current pi package names.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- **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.
|
|
23
|
+
- **Goal-generation documentation is clearer.** Working-memory goal seed text now documents the initial goal constant without changing behavior.
|
|
24
|
+
|
|
25
|
+
### Validation
|
|
26
|
+
|
|
27
|
+
Changes since last push to `origin/master`:
|
|
28
|
+
|
|
29
|
+
- Add the publishable Skeln plugin package, Skeln plugin docs, and Skeln runtime adapter
|
|
30
|
+
- Add shared plugin-runtime composition for OpenClaw and Skeln host integrations
|
|
31
|
+
- Add session-memory schema, repositories, trigger routing, continuity, and post-compaction handling
|
|
32
|
+
- Add working-memory schema, repositories, projections, operation handlers, checkpoints, and goal continuation
|
|
33
|
+
- Add Skeln `agenr_work` and `agenr_goal` flows with regression coverage
|
|
34
|
+
- Add session episode ingestion, shutdown and goal-close episode support, and bounded episode services
|
|
35
|
+
- Update OpenClaw and Skeln memory-policy configuration, session-start injection, and before-turn formatting
|
|
36
|
+
- Move pi runtime dependencies to `@earendil-works` packages
|
|
37
|
+
- Fix disabled session-memory intake logging and refresh goal-generation documentation
|
|
38
|
+
|
|
5
39
|
## [2.1.0] - 2026-04-22
|
|
6
40
|
|
|
7
41
|
Recall ranking overhaul, before-turn memory patching, and eval/debug tooling minor release.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as openclaw_plugin_sdk_plugin_entry from 'openclaw/plugin-sdk/plugin-entry';
|
|
2
|
-
import { T as TranscriptPort, P as ParsedTranscript } from '../../ports-
|
|
2
|
+
import { T as TranscriptPort, P as ParsedTranscript } from '../../ports-CpzWESmZ.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Parses OpenClaw JSONL session exports into normalized agenr transcripts.
|