Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions openclaw.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,49 @@
"dbPath": {
"type": "string"
},
"dreaming": {
"type": "object",
"additionalProperties": false,
"description": "Dreaming: periodic memory consolidation and promotion from short-term to long-term storage",
"properties": {
"enabled": {"type": "boolean", "default": false, "description": "Enable dreaming memory consolidation cycles"},
"cron": {"type": "string", "default": "0 3 * * *", "description": "Cron expression for dreaming schedule (minute hour day month weekday). Uses server local timezone."},
"verboseLogging": {"type": "boolean", "default": false, "description": "Enable verbose logging for dreaming cycles"},
"phases": {
"type": "object",
"additionalProperties": false,
"description": "Per-phase tuning parameters",
"properties": {
"light": {
"type": "object",
"additionalProperties": false,
"properties": {
"lookbackDays": {"type": "number", "minimum": 1, "default": 3},
"limit": {"type": "number", "minimum": 1, "default": 100}
}
},
"deep": {
"type": "object",
"additionalProperties": false,
"properties": {
"limit": {"type": "number", "minimum": 1, "default": 50},
"minScore": {"type": "number", "minimum": 0, "maximum": 1, "default": 0.6},
"minRecallCount": {"type": "number", "minimum": 0, "default": 2},
"recencyHalfLifeDays": {"type": "number", "minimum": 1, "default": 30}
}
},
"rem": {
"type": "object",
"additionalProperties": false,
"properties": {
"lookbackDays": {"type": "number", "minimum": 1, "default": 7},
"limit": {"type": "number", "minimum": 1, "default": 20}
}
Comment on lines +125 to +128
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Expose REM pattern threshold in the manifest

The engine and mergeDreamingConfig() support phases.rem.minPatternStrength, but the manifest sets additionalProperties: false for rem and only allows lookbackDays and limit. Users therefore cannot configure the REM sensitivity without failing plugin config validation, even though the runtime code reads that setting.

Useful? React with 👍 / 👎.

}
}
}
}
},
"enableManagementTools": {
"type": "boolean",
"default": false,
Expand Down
Loading