monomind 2.7.16 → 2.8.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/README.md +23 -1
- package/package.json +12 -5
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
## What is Monomind?
|
|
32
32
|
|
|
33
|
-
Monomind is an **open-source CLI and MCP server** that plugs into Claude Code via the standard [Model Context Protocol](https://modelcontextprotocol.io/). It adds capabilities
|
|
33
|
+
Monomind is an **open-source CLI and MCP server** that plugs into Claude Code (and [opencode](https://opencode.ai) / Antigravity) via the standard [Model Context Protocol](https://modelcontextprotocol.io/). It adds capabilities these assistants don't ship with out of the box:
|
|
34
34
|
|
|
35
35
|
- **Codebase knowledge graph** — tree-sitter parses your code into a SQLite-backed graph of files, functions, classes, and their relationships. Query imports, callers, and blast radius before making changes.
|
|
36
36
|
- **Persistent memory** — a JSON pattern store with episodic recall that survives across sessions. Agents and orgs share context without re-prompting.
|
|
@@ -43,6 +43,28 @@ cd your-project && monomind init
|
|
|
43
43
|
claude mcp add monomind -- npx -y monomind@latest mcp start
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
+
<details>
|
|
47
|
+
<summary><strong>Using opencode or Antigravity instead?</strong></summary>
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
monomind init --opencode # emits opencode.json + .opencode/ alongside Claude/Antigravity output
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
`--opencode` is additive — it never touches your `.claude/` or `.gemini/` config. You get the same MCP tools, agent roster, commands, skills, and security gates, plus a `/monomind-status` command (opencode has no custom statusbar, so the statusline is on-demand). See [opencode guide →](doc/concepts/opencode.md).
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<details>
|
|
58
|
+
<summary><strong>Using Kimi Code instead?</strong></summary>
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
monomind init --kimicode # emits .kimi-code/ + AGENTS.md alongside Claude/Antigravity output
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
`--kimicode` is additive — it never touches your `.claude/` or `.gemini/` config. You get the same MCP tools, agent roster, skills, and commands (as project-level flow skills). Install the generated plugin once for `/monomind:*` slash commands and security gates: `/plugins install ./.kimi-code/plugin`. See [Kimi Code guide →](doc/concepts/kimicode.md).
|
|
65
|
+
|
|
66
|
+
</details>
|
|
67
|
+
|
|
46
68
|
### Trust & Security
|
|
47
69
|
|
|
48
70
|
| Concern | Answer |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Open-source CLI extension for Claude Code. Adds an MCP server with a codebase knowledge graph, persistent memory, multi-agent coordination, and reusable slash commands. MIT licensed, runs locally, no data leaves your machine.",
|
|
3
|
+
"version": "2.8.0",
|
|
4
|
+
"description": "Open-source CLI extension for Claude Code and Antigravity (agy). Adds an MCP server with a codebase knowledge graph, persistent memory, multi-agent coordination, and reusable slash commands. MIT licensed, runs locally, no data leaves your machine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"monomind": "./bin/cli.js"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"LICENSE"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@monoes/monomindcli": "2.
|
|
24
|
+
"@monoes/monomindcli": "2.8.0"
|
|
25
25
|
},
|
|
26
26
|
"overrides": {
|
|
27
27
|
"hono": ">=4.12.21",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"fast-uri": ">=4.1.1",
|
|
37
37
|
"sharp": ">=0.35.0",
|
|
38
38
|
"adm-zip": ">=0.6.0",
|
|
39
|
-
"body-parser": ">=1.20.6"
|
|
39
|
+
"body-parser": ">=1.20.6",
|
|
40
|
+
"better-sqlite3": ">=12.0.0"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@types/node": "^20.0.0",
|
|
@@ -73,7 +74,10 @@
|
|
|
73
74
|
"monomind",
|
|
74
75
|
"organizations",
|
|
75
76
|
"autonomous-agents",
|
|
76
|
-
"hooks"
|
|
77
|
+
"hooks",
|
|
78
|
+
"antigravity",
|
|
79
|
+
"agy",
|
|
80
|
+
"gemini"
|
|
77
81
|
],
|
|
78
82
|
"author": {
|
|
79
83
|
"name": "nokhodian",
|
|
@@ -85,6 +89,9 @@
|
|
|
85
89
|
"access": "public",
|
|
86
90
|
"tag": "latest"
|
|
87
91
|
},
|
|
92
|
+
"volta": {
|
|
93
|
+
"node": "22.23.2"
|
|
94
|
+
},
|
|
88
95
|
"scripts": {
|
|
89
96
|
"postinstall": "node -e \"if(process.platform!=='win32'){try{require('child_process').execSync('find node_modules -name ._* -delete 2>/dev/null',{stdio:'ignore'})}catch{}}\"",
|
|
90
97
|
"dev": "tsx watch src/index.ts",
|