@agenr/openclaw-plugin 0.11.1 → 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 +6 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## [0.11.1] - 2026-03-18
|
|
4
10
|
|
|
5
11
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -26853,7 +26853,8 @@ function buildSessionStartMarkdown(previousSession, sessionProjectResolution, co
|
|
|
26853
26853
|
browseMemoryForContext,
|
|
26854
26854
|
{
|
|
26855
26855
|
maxNonCoreEntries: SESSION_START_NON_CORE_MAX_ENTRIES,
|
|
26856
|
-
recentSessionText: recentSessionBody
|
|
26856
|
+
recentSessionText: recentSessionBody,
|
|
26857
|
+
sectionCaps: options.config?.sessionStartSectionCaps
|
|
26857
26858
|
}
|
|
26858
26859
|
);
|
|
26859
26860
|
const memorySection = renderSessionStartMemorySection(
|