-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.1 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
{
"name": "butler-mcp",
"version": "1.2.0",
"description": "Local-first MCP server giving AI coding agents (Claude Code, Claude Desktop, Cursor, Kiro CLI, VS Code, Windsurf, Zed) persistent, cross-tool shared memory and multi-agent coordination via a local SQLite event log — resume in one tool exactly where another left off.",
"homepage": "https://github.com/Teycir/Butler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Teycir/Butler.git"
},
"bugs": {
"url": "https://github.com/Teycir/Butler/issues"
},
"main": "dist/index.js",
"bin": {
"butler": "./dist/cli/main.js",
"butler-mcp": "./dist/cli/main.js"
},
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "tsx tests/run.ts",
"test:projections": "tsx tests/projections.test.ts",
"test:langgraph": "tsx tests/langgraph.test.ts",
"test:orchestrator": "tsx tests/orchestrator.test.ts",
"status": "tsx src/cli/status.ts",
"tui": "tsx src/cli/tui.ts",
"dashboard": "tsx src/cli/dashboard.ts"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"agent-coordination",
"multi-agent",
"memory",
"shared-memory",
"cross-tool-memory",
"ai-agent-memory",
"agent-handoff",
"session-continuity",
"claude-code",
"claude-desktop",
"cursor",
"kiro-cli",
"windsurf",
"vscode",
"zed",
"langgraph",
"langgraph-checkpointer",
"sqlite",
"event-sourcing",
"local-first",
"todo-coordination",
"ai-pair-programming"
],
"author": "Teycir Ben Soltane <teycir@pxdmail.net>",
"license": "ISC",
"dependencies": {
"@langchain/core": "^1.1.49",
"@langchain/langgraph": "^1.4.2",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.3",
"@modelcontextprotocol/sdk": "^1.0.1",
"better-sqlite3": "^12.0.0",
"dotenv": "^16.4.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.12.12",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
}
}