openclaw/extensions/memory-claudemem/moltbot.plugin.json
Alex Newman e5fa404640 feat(memory-claudemem): add workerPath config for manual installs
- Add workerPath config option to specify custom worker-service.cjs location
- Check custom path first, then fall back to Claude plugin cache auto-discovery
- Update docs with simpler manual install instructions (no need to copy to cache)
- Update manifest with workerPath schema and UI hints
2026-01-28 23:45:27 -05:00

41 lines
1.2 KiB
JSON

{
"id": "memory-claudemem",
"name": "Memory (Claude-Mem)",
"description": "Integrates claude-mem memory system using the hook CLI for persistent context across sessions",
"kind": "memory",
"version": "0.1.0",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"project": {
"type": "string",
"description": "Project name for scoping observations (defaults to workspace directory name)"
},
"syncMemoryFile": {
"type": "boolean",
"default": true,
"description": "Sync MEMORY.md with claude-mem context on session start"
},
"workerPath": {
"type": "string",
"description": "Custom path to worker-service.cjs (for manual installs outside Claude plugin cache)"
}
}
},
"uiHints": {
"project": {
"label": "Project Name",
"help": "Scopes observations to this project. Defaults to workspace directory name."
},
"syncMemoryFile": {
"label": "Sync MEMORY.md",
"help": "Update MEMORY.md with claude-mem context on session/gateway start"
},
"workerPath": {
"label": "Worker Path",
"help": "Path to claude-mem's worker-service.cjs. Only needed for manual installs."
}
}
}