agenr 0.9.97 → 0.9.98
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 +9 -1
- package/README.md +1 -1
- package/dist/{chunk-QVHE2EZN.js → chunk-CYVBC2ID.js} +14523 -17198
- package/dist/{chunk-H3ZKP2NJ.js → chunk-EMX2B7AR.js} +976 -978
- package/dist/{chunk-52OVQENY.js → chunk-OIV7UXKY.js} +4024 -1282
- package/dist/cli-main.d.ts +38 -30
- package/dist/cli-main.js +4439 -4084
- package/dist/{maintain-CH6FGJJF.js → maintain-P2L2X2HO.js} +358 -272
- package/dist/openclaw-plugin/index.d.ts +0 -1
- package/dist/openclaw-plugin/index.js +54 -93
- package/openclaw.plugin.json +0 -4
- package/package.json +19 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.98] - 2026-03-15
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Refactored the codebase into cleaner responsibility boundaries across the app/runtime, MCP server, init/setup flow, watch context refresh, OpenClaw plugin service calls, and shared store/retire plumbing, reducing entry-point sprawl while preserving the existing product surface.
|
|
8
|
+
- Continued internal cleanup after the large module split by removing now-unused variables, functions, and imports across the refactored codebase.
|
|
9
|
+
- Updated architecture documentation to match the new module organization and adapter boundaries so the repository structure and implementation seams are easier to navigate after the refactor.
|
|
10
|
+
|
|
3
11
|
## [0.9.97] - 2026-03-15
|
|
4
12
|
|
|
5
13
|
### Fixed
|
|
@@ -2095,7 +2103,7 @@
|
|
|
2095
2103
|
- Memory injected as synthetic AGENR.md file into # Project Context in system prompt
|
|
2096
2104
|
- Grouped markdown output: Active Todos / Preferences and Decisions / Facts and Events
|
|
2097
2105
|
- Skips subagent and cron sessions automatically (sessionKey pattern check)
|
|
2098
|
-
- Configurable:
|
|
2106
|
+
- Configurable: budget, enabled via openclaw.json plugins.entries.agenr.config
|
|
2099
2107
|
- 5 second timeout on recall; all errors swallowed silently to never block session start
|
|
2100
2108
|
- package.json "openclaw" key declares dist/openclaw-plugin/index.js as plugin extension
|
|
2101
2109
|
|
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ No AGENTS.md edits needed. No MCP config needed. The bundled SKILL.md loads auto
|
|
|
72
72
|
openclaw plugins install agenr
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
> **Security notice:** OpenClaw
|
|
75
|
+
> **Security notice:** The OpenClaw plugin runs recall, store, extract, retire, update, and trace flows through shared in-process agenr services. It does not shell out to the agenr CLI, read your OpenClaw credentials, or send data anywhere except your configured model and embedding providers. The plugin source is open and auditable.
|
|
76
76
|
|
|
77
77
|
Optional config in `openclaw.json`:
|
|
78
78
|
|