-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.81 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "zc-ctx",
"version": "0.7.2",
"description": "Secure memory & context optimization MCP plugin for Claude Code — drop-in replacement for context-mode with credential isolation, SSRF protection, MemGPT-style persistent memory, and A2A multi-agent broadcast channel",
"keywords": [
"claude-code",
"claude-code-plugin",
"claude-code-memory",
"claude-desktop",
"claude-persistent-memory",
"mcp",
"mcp-server",
"mcp-plugin",
"context-management",
"context-window",
"context-window-optimization",
"context-mode",
"context-mode-alternative",
"claude-mem-alternative",
"token-optimization",
"token-reduction",
"ai-agent-memory",
"llm-memory",
"working-memory",
"memgpt",
"hybrid-search",
"bm25",
"vector-search",
"knowledge-base",
"session-memory",
"persistent-memory",
"never-lose-context",
"cross-session-memory",
"anthropic",
"claude",
"secure-mcp",
"ssrf-protection",
"credential-isolation",
"sandbox-security",
"multi-agent",
"agent-memory",
"a2a",
"agent-to-agent",
"multi-agent-coordination",
"agent-broadcast",
"sqlite",
"zeroclaw"
],
"license": "MIT",
"type": "module",
"main": "dist/server.js",
"files": [
"dist/",
"src/",
"hooks/",
"security-tests/",
"install.mjs",
"README.md",
"ARCHITECTURE.md",
"SECURITY_REPORT.md",
"CLAUDE.md",
"llms.txt",
"tsconfig.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"test": "vitest run"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.13.0",
"typescript": "^5.3.3",
"vitest": "^4.1.0"
}
}