memtap 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +122 -0
- package/index.ts +2816 -0
- package/openclaw.plugin.json +115 -0
- package/package.json +40 -0
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "memtap",
|
|
3
|
+
"name": "MemTap",
|
|
4
|
+
"kind": "memory",
|
|
5
|
+
"version": "2.1.0",
|
|
6
|
+
"description": "Graph-based long-term memory for OpenClaw agents — semantic recall, GraphRAG, entity management, decision tracking, neural auto-capture, and anomaly detection. Powered by ArangoDB.",
|
|
7
|
+
"configSchema": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"serverUrl": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "MemTap REST API base URL"
|
|
14
|
+
},
|
|
15
|
+
"apiKey": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "MemTap API key for authentication (mt_live_xxx or mt_test_xxx)",
|
|
18
|
+
"sensitive": true
|
|
19
|
+
},
|
|
20
|
+
"agentId": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "Agent identity for memory scoping (defaults to OpenClaw agent id)"
|
|
23
|
+
},
|
|
24
|
+
"autoCapture": {
|
|
25
|
+
"type": "boolean",
|
|
26
|
+
"description": "Automatically extract memories from conversations"
|
|
27
|
+
},
|
|
28
|
+
"bulletinOnBoot": {
|
|
29
|
+
"type": "boolean",
|
|
30
|
+
"description": "Inject a memory bulletin into agent bootstrap context"
|
|
31
|
+
},
|
|
32
|
+
"bulletinTopics": {
|
|
33
|
+
"type": "array",
|
|
34
|
+
"items": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"description": "Topics to include in the bootstrap bulletin"
|
|
38
|
+
},
|
|
39
|
+
"llmUrl": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "OpenAI-compatible endpoint for auto-capture LLM calls"
|
|
42
|
+
},
|
|
43
|
+
"llmModel": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "Model for memory extraction (default: claude-sonnet-4)"
|
|
46
|
+
},
|
|
47
|
+
"embeddingUrl": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "Embedding API endpoint for GraphRAG vector search"
|
|
50
|
+
},
|
|
51
|
+
"embeddingModel": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "Embedding model name (e.g. text-embedding-3-small)"
|
|
54
|
+
},
|
|
55
|
+
"embeddingApiKey": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "API key for the embedding service",
|
|
58
|
+
"sensitive": true
|
|
59
|
+
},
|
|
60
|
+
"decayRate": {
|
|
61
|
+
"type": "number",
|
|
62
|
+
"description": "Memory importance decay rate per day (default: 0.005)"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"uiHints": {
|
|
67
|
+
"serverUrl": {
|
|
68
|
+
"label": "MemTap Server URL",
|
|
69
|
+
"placeholder": "https://api.memtap.ai"
|
|
70
|
+
},
|
|
71
|
+
"apiKey": {
|
|
72
|
+
"label": "API Key",
|
|
73
|
+
"placeholder": "mt_live_...",
|
|
74
|
+
"helpText": "Get your API key at memtap.ai"
|
|
75
|
+
},
|
|
76
|
+
"agentId": {
|
|
77
|
+
"label": "Agent ID",
|
|
78
|
+
"placeholder": "main"
|
|
79
|
+
},
|
|
80
|
+
"autoCapture": {
|
|
81
|
+
"label": "Auto-Capture Memories"
|
|
82
|
+
},
|
|
83
|
+
"bulletinOnBoot": {
|
|
84
|
+
"label": "Inject Bulletin on Bootstrap"
|
|
85
|
+
},
|
|
86
|
+
"bulletinTopics": {
|
|
87
|
+
"label": "Bootstrap Bulletin Topics"
|
|
88
|
+
},
|
|
89
|
+
"llmUrl": {
|
|
90
|
+
"label": "LLM Endpoint URL",
|
|
91
|
+
"placeholder": "https://api.openai.com/v1/chat/completions"
|
|
92
|
+
},
|
|
93
|
+
"llmModel": {
|
|
94
|
+
"label": "LLM Model",
|
|
95
|
+
"placeholder": "claude-sonnet-4"
|
|
96
|
+
},
|
|
97
|
+
"embeddingUrl": {
|
|
98
|
+
"label": "Embedding API URL",
|
|
99
|
+
"placeholder": "https://api.openai.com/v1/embeddings"
|
|
100
|
+
},
|
|
101
|
+
"embeddingModel": {
|
|
102
|
+
"label": "Embedding Model",
|
|
103
|
+
"placeholder": "text-embedding-3-small"
|
|
104
|
+
},
|
|
105
|
+
"embeddingApiKey": {
|
|
106
|
+
"label": "Embedding API Key",
|
|
107
|
+
"placeholder": "sk-...",
|
|
108
|
+
"sensitive": true
|
|
109
|
+
},
|
|
110
|
+
"decayRate": {
|
|
111
|
+
"label": "Memory Decay Rate",
|
|
112
|
+
"placeholder": "0.005"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "memtap",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "MemTap — Graph-based long-term memory plugin for OpenClaw agents. ArangoDB-backed knowledge graph with semantic recall, GraphRAG, entity management, decision tracking, and auto-capture.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"openclaw-plugin",
|
|
8
|
+
"plugin",
|
|
9
|
+
"memory",
|
|
10
|
+
"knowledge-graph",
|
|
11
|
+
"arangodb",
|
|
12
|
+
"graphrag",
|
|
13
|
+
"ai-agents",
|
|
14
|
+
"long-term-memory",
|
|
15
|
+
"agent-memory"
|
|
16
|
+
],
|
|
17
|
+
"author": "psifactory LLC <hello@psifactory.io>",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"homepage": "https://memtap.ai",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/memtap/openclaw-plugin.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/memtap/openclaw-plugin/issues"
|
|
26
|
+
},
|
|
27
|
+
"openclaw": {
|
|
28
|
+
"extensions": [
|
|
29
|
+
"./index.ts"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"index.ts",
|
|
34
|
+
"openclaw.plugin.json",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
}
|
|
40
|
+
}
|