codebase-analyzer-mcp 2.0.2 → 2.0.3
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +1 -27
- package/dist/cli/index.js +2 -7
- package/dist/mcp/server.js +2 -7
- package/package.json +2 -7
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "Multi-layer codebase analysis tools",
|
|
9
|
-
"version": "2.0.
|
|
9
|
+
"version": "2.0.3"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "codebase-analyzer",
|
|
14
14
|
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
|
|
15
|
-
"version": "2.0.
|
|
15
|
+
"version": "2.0.3",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "Jake Correa",
|
|
18
18
|
"url": "https://github.com/jaykaycodes"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codebase-analyzer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jake Correa",
|
package/README.md
CHANGED
|
@@ -85,32 +85,6 @@ npm install -g codebase-analyzer-mcp
|
|
|
85
85
|
# Then use: cba analyze .
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
### Standalone Binary
|
|
89
|
-
|
|
90
|
-
No Node/Bun required. Download from [Releases](https://github.com/jaykaycodes/codebase-analyzer-mcp/releases):
|
|
91
|
-
|
|
92
|
-
```bash
|
|
93
|
-
# macOS Apple Silicon
|
|
94
|
-
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-macos-arm64 -o cba
|
|
95
|
-
chmod +x cba && sudo mv cba /usr/local/bin/
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
<details>
|
|
99
|
-
<summary>Other platforms</summary>
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
# macOS Intel
|
|
103
|
-
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-macos-x64 -o cba
|
|
104
|
-
|
|
105
|
-
# Linux x64
|
|
106
|
-
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-linux-x64 -o cba
|
|
107
|
-
|
|
108
|
-
# Linux ARM64
|
|
109
|
-
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-linux-arm64 -o cba
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
</details>
|
|
113
|
-
|
|
114
88
|
## Development
|
|
115
89
|
|
|
116
90
|
```bash
|
|
@@ -118,7 +92,7 @@ git clone https://github.com/jaykaycodes/codebase-analyzer-mcp.git
|
|
|
118
92
|
cd codebase-analyzer-mcp
|
|
119
93
|
bun install
|
|
120
94
|
bun run dev # Watch mode
|
|
121
|
-
bun run build
|
|
95
|
+
bun run build:js # Build JS
|
|
122
96
|
bun run cba analyze . # Test CLI
|
|
123
97
|
```
|
|
124
98
|
|
package/dist/cli/index.js
CHANGED
|
@@ -44076,7 +44076,7 @@ var package_default;
|
|
|
44076
44076
|
var init_package = __esm(() => {
|
|
44077
44077
|
package_default = {
|
|
44078
44078
|
name: "codebase-analyzer-mcp",
|
|
44079
|
-
version: "2.0.
|
|
44079
|
+
version: "2.0.3",
|
|
44080
44080
|
description: "Multi-layer codebase analysis with Gemini AI. MCP server + Claude plugin with progressive disclosure.",
|
|
44081
44081
|
type: "module",
|
|
44082
44082
|
main: "dist/mcp/server.js",
|
|
@@ -44095,13 +44095,8 @@ var init_package = __esm(() => {
|
|
|
44095
44095
|
"AGENTS.md"
|
|
44096
44096
|
],
|
|
44097
44097
|
scripts: {
|
|
44098
|
-
build: "bun run build:js
|
|
44098
|
+
build: "bun run build:js",
|
|
44099
44099
|
"build:js": "bun build src/mcp/server.ts --outfile dist/mcp/server.js --target node && bun build src/cli/index.ts --outfile dist/cli/index.js --target node && echo '#!/usr/bin/env node' | cat - dist/cli/index.js > /tmp/cba.js && mv /tmp/cba.js dist/cli/index.js",
|
|
44100
|
-
"build:bin": "bun build src/cli/index.ts --compile --outfile dist/cba",
|
|
44101
|
-
"build:bin:all": "bun run build:bin:macos && bun run build:bin:linux && bun run build:bin:windows",
|
|
44102
|
-
"build:bin:macos": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile dist/cba-macos-arm64 && bun build src/cli/index.ts --compile --target=bun-darwin-x64 --outfile dist/cba-macos-x64",
|
|
44103
|
-
"build:bin:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile dist/cba-linux-x64 && bun build src/cli/index.ts --compile --target=bun-linux-arm64 --outfile dist/cba-linux-arm64",
|
|
44104
|
-
"build:bin:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile dist/cba-windows-x64.exe",
|
|
44105
44100
|
dev: "bun --watch src/cli/index.ts",
|
|
44106
44101
|
start: "bun dist/mcp/server.js",
|
|
44107
44102
|
typecheck: "tsc --noEmit",
|
package/dist/mcp/server.js
CHANGED
|
@@ -70685,7 +70685,7 @@ If you cannot find the entry point, explain what you looked for in the summary a
|
|
|
70685
70685
|
// package.json
|
|
70686
70686
|
var package_default = {
|
|
70687
70687
|
name: "codebase-analyzer-mcp",
|
|
70688
|
-
version: "2.0.
|
|
70688
|
+
version: "2.0.3",
|
|
70689
70689
|
description: "Multi-layer codebase analysis with Gemini AI. MCP server + Claude plugin with progressive disclosure.",
|
|
70690
70690
|
type: "module",
|
|
70691
70691
|
main: "dist/mcp/server.js",
|
|
@@ -70704,13 +70704,8 @@ var package_default = {
|
|
|
70704
70704
|
"AGENTS.md"
|
|
70705
70705
|
],
|
|
70706
70706
|
scripts: {
|
|
70707
|
-
build: "bun run build:js
|
|
70707
|
+
build: "bun run build:js",
|
|
70708
70708
|
"build:js": "bun build src/mcp/server.ts --outfile dist/mcp/server.js --target node && bun build src/cli/index.ts --outfile dist/cli/index.js --target node && echo '#!/usr/bin/env node' | cat - dist/cli/index.js > /tmp/cba.js && mv /tmp/cba.js dist/cli/index.js",
|
|
70709
|
-
"build:bin": "bun build src/cli/index.ts --compile --outfile dist/cba",
|
|
70710
|
-
"build:bin:all": "bun run build:bin:macos && bun run build:bin:linux && bun run build:bin:windows",
|
|
70711
|
-
"build:bin:macos": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile dist/cba-macos-arm64 && bun build src/cli/index.ts --compile --target=bun-darwin-x64 --outfile dist/cba-macos-x64",
|
|
70712
|
-
"build:bin:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile dist/cba-linux-x64 && bun build src/cli/index.ts --compile --target=bun-linux-arm64 --outfile dist/cba-linux-arm64",
|
|
70713
|
-
"build:bin:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile dist/cba-windows-x64.exe",
|
|
70714
70709
|
dev: "bun --watch src/cli/index.ts",
|
|
70715
70710
|
start: "bun dist/mcp/server.js",
|
|
70716
70711
|
typecheck: "tsc --noEmit",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codebase-analyzer-mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Multi-layer codebase analysis with Gemini AI. MCP server + Claude plugin with progressive disclosure.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/mcp/server.js",
|
|
@@ -19,13 +19,8 @@
|
|
|
19
19
|
"AGENTS.md"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "bun run build:js
|
|
22
|
+
"build": "bun run build:js",
|
|
23
23
|
"build:js": "bun build src/mcp/server.ts --outfile dist/mcp/server.js --target node && bun build src/cli/index.ts --outfile dist/cli/index.js --target node && echo '#!/usr/bin/env node' | cat - dist/cli/index.js > /tmp/cba.js && mv /tmp/cba.js dist/cli/index.js",
|
|
24
|
-
"build:bin": "bun build src/cli/index.ts --compile --outfile dist/cba",
|
|
25
|
-
"build:bin:all": "bun run build:bin:macos && bun run build:bin:linux && bun run build:bin:windows",
|
|
26
|
-
"build:bin:macos": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile dist/cba-macos-arm64 && bun build src/cli/index.ts --compile --target=bun-darwin-x64 --outfile dist/cba-macos-x64",
|
|
27
|
-
"build:bin:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile dist/cba-linux-x64 && bun build src/cli/index.ts --compile --target=bun-linux-arm64 --outfile dist/cba-linux-arm64",
|
|
28
|
-
"build:bin:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile dist/cba-windows-x64.exe",
|
|
29
24
|
"dev": "bun --watch src/cli/index.ts",
|
|
30
25
|
"start": "bun dist/mcp/server.js",
|
|
31
26
|
"typecheck": "tsc --noEmit",
|