mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-21 21:15:07 +00:00
- post-install.sh: reads openclaw.json `list` array via python3, presents a numbered menu (all/specific/quit), installs SKILL.md to <workspace>/skills/memory-continuity/SKILL.md for chosen agents; falls back to manual path prompt if config absent - post-install.sh: remove gateway restart step - verify.sh: add --all-agents flag that runs the 3-layer check (SKILL.md, continuity_doctor.py, CURRENT_STATE.md) across every detected agent workspace and reports pass/fail per agent - openclaw.plugin.json: bump version to 2.4.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
1.2 KiB
JSON
34 lines
1.2 KiB
JSON
{
|
|
"id": "memory-continuity",
|
|
"name": "Memory Continuity",
|
|
"description": "Preserves working state across /new, reset, compaction, and gateway restarts via a simple markdown checkpoint file.",
|
|
"version": "2.4.0",
|
|
"source": "https://github.com/dtzp555-max/memory-continuity",
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"maxStateLines": {
|
|
"type": "number",
|
|
"default": 50,
|
|
"description": "Max lines for CURRENT_STATE.md before auto-compress warning"
|
|
},
|
|
"archiveOnNew": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Archive CURRENT_STATE.md to session_archive/ on /new"
|
|
},
|
|
"autoExtract": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Auto-extract working state from conversation at agent_end"
|
|
}
|
|
}
|
|
},
|
|
"uiHints": {
|
|
"maxStateLines": { "label": "Max state file lines", "help": "Keep checkpoint small for fast recovery" },
|
|
"archiveOnNew": { "label": "Archive on /new", "help": "Save a snapshot before session reset" },
|
|
"autoExtract": { "label": "Auto-extract state", "help": "Automatically save working state when conversation ends" }
|
|
}
|
|
}
|