@ganglia/cli 0.9.89 → 0.9.91
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 +20 -2
- package/package.json +14 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ganglia CLI
|
|
2
2
|
|
|
3
|
-
> 63 MCP tools + Code Mode for AI coding
|
|
3
|
+
> 63 MCP tools + Code Mode for every major AI coding assistant.
|
|
4
4
|
|
|
5
5
|
https://ganglia.dev
|
|
6
6
|
|
|
@@ -24,7 +24,25 @@ gng init . # local-first, zero setup
|
|
|
24
24
|
gng --help
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
`gng init` auto-detects every AI client installed on your machine and wires Ganglia into each one's MCP config in a single pass. Idempotent — re-run anytime.
|
|
28
|
+
|
|
29
|
+
## Supported clients
|
|
30
|
+
|
|
31
|
+
| Client | Config target |
|
|
32
|
+
|---|---|
|
|
33
|
+
| Claude Code | `~/.claude.json` + `~/.claude/settings.json` |
|
|
34
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
35
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
36
|
+
| Cline | VS Code globalStorage (Linux/macOS/VSCodium) |
|
|
37
|
+
| OpenCode | `~/.config/opencode/config.json` |
|
|
38
|
+
| Continue.dev | `~/.continue/config.json` |
|
|
39
|
+
| Zed | `~/.config/zed/settings.json` (`context_servers`) |
|
|
40
|
+
| Codex CLI | `~/.codex/config.toml` |
|
|
41
|
+
| Gemini CLI | `~/.gemini/settings.json` |
|
|
42
|
+
|
|
43
|
+
Missing your client? Open an issue and we'll add a writer.
|
|
44
|
+
|
|
45
|
+
The binary exposes 63 tools (call graph, semantic search, cross-session memory, `gng_run` Code Mode) over the Model Context Protocol.
|
|
28
46
|
|
|
29
47
|
## Docs
|
|
30
48
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ganglia/cli",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "Ganglia \u2014 MCP tools + Code Mode for AI coding
|
|
3
|
+
"version": "0.9.91",
|
|
4
|
+
"description": "Ganglia \u2014 MCP tools + Code Mode for every major AI coding assistant (Claude Code, Cursor, Windsurf, Cline, OpenCode, Continue, Zed, Codex CLI, Gemini CLI)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
7
7
|
"ai",
|
|
8
8
|
"claude",
|
|
9
9
|
"cursor",
|
|
10
|
+
"windsurf",
|
|
11
|
+
"cline",
|
|
12
|
+
"opencode",
|
|
13
|
+
"continue",
|
|
14
|
+
"zed",
|
|
15
|
+
"codex",
|
|
16
|
+
"gemini",
|
|
10
17
|
"code-graph",
|
|
11
18
|
"ganglia",
|
|
12
19
|
"llm"
|
|
@@ -30,11 +37,11 @@
|
|
|
30
37
|
"arm64"
|
|
31
38
|
],
|
|
32
39
|
"optionalDependencies": {
|
|
33
|
-
"@ganglia/cli-linux-x64": "0.9.
|
|
34
|
-
"@ganglia/cli-linux-arm64": "0.9.
|
|
35
|
-
"@ganglia/cli-darwin-x64": "0.9.
|
|
36
|
-
"@ganglia/cli-darwin-arm64": "0.9.
|
|
37
|
-
"@ganglia/cli-win32-x64": "0.9.
|
|
40
|
+
"@ganglia/cli-linux-x64": "0.9.91",
|
|
41
|
+
"@ganglia/cli-linux-arm64": "0.9.91",
|
|
42
|
+
"@ganglia/cli-darwin-x64": "0.9.91",
|
|
43
|
+
"@ganglia/cli-darwin-arm64": "0.9.91",
|
|
44
|
+
"@ganglia/cli-win32-x64": "0.9.91"
|
|
38
45
|
},
|
|
39
46
|
"engines": {
|
|
40
47
|
"node": ">=18"
|