memtap 2.1.0 → 2.1.1

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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm](https://img.shields.io/npm/v/memtap)](https://www.npmjs.com/package/memtap)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- **MemTap** gives your OpenClaw agent a persistent, graph-based long-term memory powered by ArangoDB.
6
+ **MemTap** gives your OpenClaw agent a persistent, graph-based long-term memory.
7
7
 
8
8
  Instead of simple vector recall, MemTap builds a **knowledge graph** — memories are connected through entities, relationships, and temporal context. Your agent remembers facts, tracks decisions, discovers connections through multi-hop graph traversal, and consolidates knowledge over time.
9
9
 
@@ -104,6 +104,7 @@ Sign up at [memtap.ai](https://memtap.ai) to get your API key.
104
104
  ## Why MemTap?
105
105
 
106
106
  - **Graph-based**: Full knowledge graph, not just vector similarity
107
+ - **Cloud-native**: Managed service — no database setup needed
107
108
  - **GraphRAG**: Multi-hop traversal discovers connections vector search misses
108
109
  - **Decision tracking**: Unique decision management for AI agents
109
110
  - **Auto-capture**: Learns from conversations without explicit commands
@@ -114,8 +115,8 @@ Sign up at [memtap.ai](https://memtap.ai) to get your API key.
114
115
 
115
116
  - **Website**: [memtap.ai](https://memtap.ai)
116
117
  - **API Docs**: [api.memtap.ai](https://api.memtap.ai)
117
- - **GitHub**: [github.com/memtap/openclaw-plugin](https://github.com/memtap/openclaw-plugin)
118
- - **Support**: [github.com/memtap/openclaw-plugin/issues](https://github.com/memtap/openclaw-plugin/issues)
118
+ - **GitHub**: [github.com/psifactory/memtap](https://github.com/psifactory/memtap)
119
+ - **Support**: [github.com/psifactory/memtap/issues](https://github.com/psifactory/memtap/issues)
119
120
 
120
121
  ## License
121
122
 
package/index.ts CHANGED
@@ -1348,7 +1348,7 @@ export default function register(api: any) {
1348
1348
  name: 'memtap_health',
1349
1349
  description:
1350
1350
  'Check MemTap server health and get neural system statistics. Actions:\n' +
1351
- '- health: server health check (ArangoDB version, counts)\n' +
1351
+ '- health: server health check (version, counts)\n' +
1352
1352
  '- stats: detailed statistics (by type, by agent, entity/edge counts)\n' +
1353
1353
  '- neural: neuromimetic system status (working memory, attention, consolidation)\n' +
1354
1354
  '- performance: system performance metrics (cache hits, response times, memory usage)\n' +
@@ -1377,7 +1377,7 @@ export default function register(api: any) {
1377
1377
  case 'health':
1378
1378
  data = await bbFetch(cfg, `${base}/health`);
1379
1379
  const counts = data.counts || {};
1380
- return { content: [{ type: 'text', text: `MemTap: ${data.status}\nArangoDB: ${data.arango || 'unknown'}\nMemories: ${counts.memories ?? '?'} | Entities: ${counts.entities ?? '?'} | Edges: ${counts.edges ?? '?'}` }] };
1380
+ return { content: [{ type: 'text', text: `MemTap: ${data.status}\nServer: ${data.arango || data.version || 'unknown'}\nMemories: ${counts.memories ?? '?'} | Entities: ${counts.entities ?? '?'} | Edges: ${counts.edges ?? '?'}` }] };
1381
1381
 
1382
1382
  case 'stats':
1383
1383
  data = await bbFetch(cfg, `${base}/stats`);
@@ -2,8 +2,8 @@
2
2
  "id": "memtap",
3
3
  "name": "MemTap",
4
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.",
5
+ "version": "2.1.1",
6
+ "description": "Graph-based long-term memory for OpenClaw agents — semantic recall, GraphRAG, entity management, decision tracking, neural auto-capture, and anomaly detection.",
7
7
  "configSchema": {
8
8
  "type": "object",
9
9
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
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.",
3
+ "version": "2.1.1",
4
+ "description": "MemTap — Graph-based long-term memory plugin for OpenClaw agents. Knowledge graph with semantic recall, GraphRAG, entity management, decision tracking, and auto-capture.",
5
5
  "keywords": [
6
6
  "openclaw",
7
7
  "openclaw-plugin",
8
8
  "plugin",
9
9
  "memory",
10
10
  "knowledge-graph",
11
- "arangodb",
12
11
  "graphrag",
13
12
  "ai-agents",
14
13
  "long-term-memory",
@@ -19,10 +18,11 @@
19
18
  "homepage": "https://memtap.ai",
20
19
  "repository": {
21
20
  "type": "git",
22
- "url": "https://github.com/memtap/openclaw-plugin.git"
21
+ "url": "https://github.com/psifactory/memtap.git",
22
+ "directory": "plugin"
23
23
  },
24
24
  "bugs": {
25
- "url": "https://github.com/memtap/openclaw-plugin/issues"
25
+ "url": "https://github.com/psifactory/memtap/issues"
26
26
  },
27
27
  "openclaw": {
28
28
  "extensions": [