openclaw.plugin.json 505 B

123456789101112131415161718
  1. {
  2. "id": "openclaw-mem0-python",
  3. "name": "openclaw-mem0-python",
  4. "version": "1.0.0",
  5. "description": "Python-backed mem0 plugin for OpenClaw",
  6. "author": "Lukas Goldschmidt",
  7. "main": "index.js",
  8. "slots": ["memory"],
  9. "cli": true,
  10. "configSchema": {
  11. "type": "object",
  12. "properties": {
  13. "baseUrl": { "type": "string", "description": "Python mem0 server URL" },
  14. "userId": { "type": "string", "description": "Default user ID" }
  15. },
  16. "required": ["baseUrl", "userId"]
  17. }
  18. }