agenr 0.11.0 → 0.11.2
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 +12 -0
- package/dist/openclaw-plugin/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.2] - 2026-03-18
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added `sessionStartSectionCaps` plugin config option to control per-section caps for session-start memory injection. Set a section to `0` to disable it (e.g. `{ "preferences": 0, "recent": 0 }` to suppress noisy non-core sections while keeping core context). Sections: `core` (default 6), `active` (default 4), `preferences` (default 4), `recent` (default 2).
|
|
8
|
+
|
|
9
|
+
## [0.11.1] - 2026-03-18
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Fixed `@agenr/openclaw-plugin` package missing `openclaw.extensions` field, which prevented OpenClaw from installing the plugin.
|
|
14
|
+
|
|
3
15
|
## [0.11.0] - 2026-03-18
|
|
4
16
|
|
|
5
17
|
### Changed
|
|
@@ -7963,7 +7963,8 @@ function buildSessionStartMarkdown(previousSession, sessionProjectResolution, co
|
|
|
7963
7963
|
browseMemoryForContext,
|
|
7964
7964
|
{
|
|
7965
7965
|
maxNonCoreEntries: SESSION_START_NON_CORE_MAX_ENTRIES,
|
|
7966
|
-
recentSessionText: recentSessionBody
|
|
7966
|
+
recentSessionText: recentSessionBody,
|
|
7967
|
+
sectionCaps: options.config?.sessionStartSectionCaps
|
|
7967
7968
|
}
|
|
7968
7969
|
);
|
|
7969
7970
|
const memorySection = renderSessionStartMemorySection(
|