memoryweave/plugins/openclaw-zhiyi/openclaw.plugin.json

61 lines
1.3 KiB
JSON

{
"id": "memory-zhiyi",
"name": "Memory ZhiYi",
"description": "ZhiYi MemoryWeave plugin for OpenClaw \u2014 semantic memory with knowledge graph",
"activation": {
"onStartup": false,
"onCommands": [
"zhiyi-mem"
]
},
"kind": "memory",
"contracts": {
"tools": [
"memory_forget",
"memory_recall",
"memory_store"
]
},
"uiHints": {
"base_url": {
"label": "ZhiYi API Base URL",
"placeholder": "http://localhost:7821",
"help": "ZhiYi MemoryWeave API endpoint"
},
"api_key": {
"label": "ZhiYi API Key",
"sensitive": true,
"placeholder": "your-api-key",
"help": "API key for ZhiYi MemoryWeave"
},
"namespace": {
"label": "Namespace",
"placeholder": "openclaw-main",
"help": "Agent namespace in ZhiYi"
},
"agent_id": {
"label": "Agent ID",
"placeholder": "openclaw",
"help": "Agent identifier in ZhiYi"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"base_url": {
"type": "string"
},
"api_key": {
"type": "string"
},
"namespace": {
"type": "string"
},
"agent_id": {
"type": "string"
}
}
},
"version": "0.2.0"
}