agenr 0.9.96 → 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 CHANGED
@@ -1,5 +1,19 @@
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
+
11
+ ## [0.9.97] - 2026-03-15
12
+
13
+ ### Fixed
14
+
15
+ - Fixed a follow-on watch/change issue discovered immediately after the 0.9.96 release and shipped the corrective patch as a fast follow-up release.
16
+
3
17
  ## [0.9.96] - 2026-03-15
4
18
 
5
19
  ### Fixed
@@ -2089,7 +2103,7 @@
2089
2103
  - Memory injected as synthetic AGENR.md file into # Project Context in system prompt
2090
2104
  - Grouped markdown output: Active Todos / Preferences and Decisions / Facts and Events
2091
2105
  - Skips subagent and cron sessions automatically (sessionKey pattern check)
2092
- - Configurable: agenrPath, budget, enabled via openclaw.json plugins.entries.agenr.config
2106
+ - Configurable: budget, enabled via openclaw.json plugins.entries.agenr.config
2093
2107
  - 5 second timeout on recall; all errors swallowed silently to never block session start
2094
2108
  - package.json "openclaw" key declares dist/openclaw-plugin/index.js as plugin extension
2095
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's code scanner will flag a critical warning during install: _"Shell command execution detected (child_process)."_ This is expected. The plugin still contains limited process-spawn code for compatibility utilities, but core recall, store, extract, retire, and trace flows now run through shared in-process agenr services. It does not read your OpenClaw credentials or send data anywhere except your configured model and embedding providers. The plugin source is open and auditable.
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