codebase-analyzer-mcp 1.0.0 → 1.0.1

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.
@@ -1,11 +1,11 @@
1
1
  {
2
- "name": "jkcorrea-plugins",
2
+ "name": "jaykaycodes-plugins",
3
3
  "owner": {
4
- "name": "jkcorrea",
5
- "url": "https://github.com/jkcorrea"
4
+ "name": "Jake Correa",
5
+ "url": "https://github.com/jaykaycodes"
6
6
  },
7
7
  "metadata": {
8
- "description": "AI-powered development tools by jkcorrea",
8
+ "description": "AI-powered development tools by Jake Correa",
9
9
  "version": "1.0.0"
10
10
  },
11
11
  "plugins": [
@@ -14,10 +14,10 @@
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
15
  "version": "1.0.0",
16
16
  "author": {
17
- "name": "jkcorrea",
18
- "url": "https://github.com/jkcorrea"
17
+ "name": "Jake Correa",
18
+ "url": "https://github.com/jaykaycodes"
19
19
  },
20
- "homepage": "https://github.com/jkcorrea/codebase-analyzer-mcp",
20
+ "homepage": "https://github.com/jaykaycodes/codebase-analyzer-mcp",
21
21
  "tags": [
22
22
  "codebase-analysis",
23
23
  "architecture",
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
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
- "name": "jkcorrea",
7
- "url": "https://github.com/jkcorrea"
6
+ "name": "Jake Correa",
7
+ "url": "https://github.com/jaykaycodes"
8
8
  },
9
- "homepage": "https://github.com/jkcorrea/codebase-analyzer-mcp",
9
+ "homepage": "https://github.com/jaykaycodes/codebase-analyzer-mcp",
10
10
  "license": "MIT",
11
11
  "keywords": [
12
12
  "codebase-analysis",
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 jkcorrea
3
+ Copyright (c) 2026 Jake Correa
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,12 +1,13 @@
1
1
  # Codebase Analyzer MCP
2
2
 
3
- [![Claude Plugin](https://img.shields.io/badge/Claude-Plugin-blueviolet)](https://github.com/jkcorrea/codebase-analyzer-mcp)
3
+ [![Claude Plugin](https://img.shields.io/badge/Claude-Plugin-blueviolet)](https://github.com/jaykaycodes/codebase-analyzer-mcp)
4
4
  [![npm](https://img.shields.io/npm/v/codebase-analyzer-mcp)](https://www.npmjs.com/package/codebase-analyzer-mcp)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
 
7
7
  Multi-layer codebase analysis with Gemini AI. Both an MCP server for Claude and a standalone CLI.
8
8
 
9
9
  **Features:**
10
+
10
11
  - Progressive disclosure - start cheap, drill down as needed
11
12
  - Tree-sitter structural analysis (no LLM cost)
12
13
  - Gemini semantic analysis (opt-in)
@@ -16,42 +17,45 @@ Multi-layer codebase analysis with Gemini AI. Both an MCP server for Claude and
16
17
 
17
18
  ## Installation
18
19
 
19
- ### Standalone Binary (Recommended)
20
+ ### Package Manager (Recommended)
21
+
22
+ ```bash
23
+ npm install -g codebase-analyzer-mcp
24
+ bun install -g codebase-analyzer-mcp
25
+ pnpm install -g codebase-analyzer-mcp
26
+ yarn add -g codebase-analyzer-mcp
27
+ ```
28
+
29
+ ### Standalone Binary
20
30
 
21
- Download the binary for your platform from [Releases](https://github.com/jkcorrea/codebase-analyzer-mcp/releases):
31
+ Download the binary for your platform from [Releases](https://github.com/jaykaycodes/codebase-analyzer-mcp/releases):
22
32
 
23
33
  ```bash
24
34
  # macOS (Apple Silicon)
25
- curl -L https://github.com/jkcorrea/codebase-analyzer-mcp/releases/latest/download/cba-macos-arm64 -o cba
35
+ curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-macos-arm64 -o cba
26
36
  chmod +x cba
27
37
  sudo mv cba /usr/local/bin/
28
38
 
29
39
  # macOS (Intel)
30
- curl -L https://github.com/jkcorrea/codebase-analyzer-mcp/releases/latest/download/cba-macos-x64 -o cba
40
+ curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-macos-x64 -o cba
31
41
  chmod +x cba
32
42
  sudo mv cba /usr/local/bin/
33
43
 
34
44
  # Linux (x64)
35
- curl -L https://github.com/jkcorrea/codebase-analyzer-mcp/releases/latest/download/cba-linux-x64 -o cba
45
+ curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-linux-x64 -o cba
36
46
  chmod +x cba
37
47
  sudo mv cba /usr/local/bin/
38
48
 
39
49
  # Linux (ARM64)
40
- curl -L https://github.com/jkcorrea/codebase-analyzer-mcp/releases/latest/download/cba-linux-arm64 -o cba
50
+ curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-linux-arm64 -o cba
41
51
  chmod +x cba
42
52
  sudo mv cba /usr/local/bin/
43
53
  ```
44
54
 
45
- ### npm
46
-
47
- ```bash
48
- npm install -g codebase-analyzer-mcp
49
- ```
50
-
51
55
  ### From Source (with Bun)
52
56
 
53
57
  ```bash
54
- git clone https://github.com/jkcorrea/codebase-analyzer-mcp.git
58
+ git clone https://github.com/jaykaycodes/codebase-analyzer-mcp.git
55
59
  cd codebase-analyzer-mcp
56
60
  bun install && bun run build
57
61
  ```
@@ -98,11 +102,11 @@ cba capabilities
98
102
 
99
103
  ### Analysis Depths
100
104
 
101
- | Depth | Speed | LLM Cost | Includes |
102
- |-------|-------|----------|----------|
103
- | `surface` | Fast | ~0 | Files, languages, entry points, modules |
104
- | `standard` | Medium | Low | + symbols, imports, complexity metrics |
105
- | `deep` | Slow | High | + semantic analysis, architecture insights |
105
+ | Depth | Speed | LLM Cost | Includes |
106
+ | ---------- | ------ | -------- | ------------------------------------------ |
107
+ | `surface` | Fast | ~0 | Files, languages, entry points, modules |
108
+ | `standard` | Medium | Low | + symbols, imports, complexity metrics |
109
+ | `deep` | Slow | High | + semantic analysis, architecture insights |
106
110
 
107
111
  ## MCP Server Usage
108
112
 
@@ -162,13 +166,13 @@ npm install -g codebase-analyzer-mcp
162
166
 
163
167
  ### MCP Tools
164
168
 
165
- | Tool | Description |
166
- |------|-------------|
167
- | `analyze_repo` | Full analysis with progressive disclosure |
168
- | `expand_section` | Drill into specific sections |
169
- | `find_patterns` | Detect design/architecture patterns |
170
- | `trace_dataflow` | Trace data flow through the system |
171
- | `get_analysis_capabilities` | List available options |
169
+ | Tool | Description |
170
+ | --------------------------- | ----------------------------------------- |
171
+ | `analyze_repo` | Full analysis with progressive disclosure |
172
+ | `expand_section` | Drill into specific sections |
173
+ | `find_patterns` | Detect design/architecture patterns |
174
+ | `trace_dataflow` | Trace data flow through the system |
175
+ | `get_analysis_capabilities` | List available options |
172
176
 
173
177
  ## Output Structure
174
178
 
@@ -211,31 +215,31 @@ This package also works as a Claude Code plugin with agents, commands, and skill
211
215
 
212
216
  ```bash
213
217
  # Direct install
214
- claude /plugin install https://github.com/jkcorrea/codebase-analyzer-mcp
218
+ claude /plugin install https://github.com/jaykaycodes/codebase-analyzer-mcp
215
219
 
216
220
  # Or add as marketplace first (if you want to browse/manage multiple plugins)
217
- claude /plugin marketplace add https://github.com/jkcorrea/codebase-analyzer-mcp
221
+ claude /plugin marketplace add https://github.com/jaykaycodes/codebase-analyzer-mcp
218
222
  claude /plugin install codebase-analyzer
219
223
  ```
220
224
 
221
225
  ### Plugin Commands
222
226
 
223
- | Command | Description |
224
- |---------|-------------|
225
- | `/analyze` | Analyze a codebase |
227
+ | Command | Description |
228
+ | ----------- | -------------------- |
229
+ | `/analyze` | Analyze a codebase |
226
230
  | `/patterns` | Find design patterns |
227
- | `/trace` | Trace data flow |
228
- | `/explore` | Quick exploration |
229
- | `/compare` | Compare repositories |
231
+ | `/trace` | Trace data flow |
232
+ | `/explore` | Quick exploration |
233
+ | `/compare` | Compare repositories |
230
234
 
231
235
  ### Plugin Agents
232
236
 
233
- | Agent | Purpose |
234
- |-------|---------|
237
+ | Agent | Purpose |
238
+ | ----------------------- | -------------------------- |
235
239
  | `architecture-analyzer` | Full architecture analysis |
236
- | `pattern-detective` | Pattern detection |
237
- | `dataflow-tracer` | Data flow tracing |
238
- | `codebase-explorer` | Quick exploration |
240
+ | `pattern-detective` | Pattern detection |
241
+ | `dataflow-tracer` | Data flow tracing |
242
+ | `codebase-explorer` | Quick exploration |
239
243
 
240
244
  ## Development
241
245
 
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: "1.0.0",
44079
+ version: "1.0.1",
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",
@@ -44112,13 +44112,13 @@ var init_package = __esm(() => {
44112
44112
  },
44113
44113
  repository: {
44114
44114
  type: "git",
44115
- url: "git+https://github.com/jkcorrea/codebase-analyzer-mcp.git"
44115
+ url: "git+https://github.com/jaykaycodes/codebase-analyzer-mcp.git"
44116
44116
  },
44117
- homepage: "https://github.com/jkcorrea/codebase-analyzer-mcp#readme",
44117
+ homepage: "https://github.com/jaykaycodes/codebase-analyzer-mcp#readme",
44118
44118
  bugs: {
44119
- url: "https://github.com/jkcorrea/codebase-analyzer-mcp/issues"
44119
+ url: "https://github.com/jaykaycodes/codebase-analyzer-mcp/issues"
44120
44120
  },
44121
- author: "jkcorrea",
44121
+ author: "Jake Correa",
44122
44122
  keywords: [
44123
44123
  "mcp",
44124
44124
  "gemini",
@@ -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: "1.0.0",
70688
+ version: "1.0.1",
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",
@@ -70721,13 +70721,13 @@ var package_default = {
70721
70721
  },
70722
70722
  repository: {
70723
70723
  type: "git",
70724
- url: "git+https://github.com/jkcorrea/codebase-analyzer-mcp.git"
70724
+ url: "git+https://github.com/jaykaycodes/codebase-analyzer-mcp.git"
70725
70725
  },
70726
- homepage: "https://github.com/jkcorrea/codebase-analyzer-mcp#readme",
70726
+ homepage: "https://github.com/jaykaycodes/codebase-analyzer-mcp#readme",
70727
70727
  bugs: {
70728
- url: "https://github.com/jkcorrea/codebase-analyzer-mcp/issues"
70728
+ url: "https://github.com/jaykaycodes/codebase-analyzer-mcp/issues"
70729
70729
  },
70730
- author: "jkcorrea",
70730
+ author: "Jake Correa",
70731
70731
  keywords: [
70732
70732
  "mcp",
70733
70733
  "gemini",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebase-analyzer-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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",
@@ -36,13 +36,13 @@
36
36
  },
37
37
  "repository": {
38
38
  "type": "git",
39
- "url": "git+https://github.com/jkcorrea/codebase-analyzer-mcp.git"
39
+ "url": "git+https://github.com/jaykaycodes/codebase-analyzer-mcp.git"
40
40
  },
41
- "homepage": "https://github.com/jkcorrea/codebase-analyzer-mcp#readme",
41
+ "homepage": "https://github.com/jaykaycodes/codebase-analyzer-mcp#readme",
42
42
  "bugs": {
43
- "url": "https://github.com/jkcorrea/codebase-analyzer-mcp/issues"
43
+ "url": "https://github.com/jaykaycodes/codebase-analyzer-mcp/issues"
44
44
  },
45
- "author": "jkcorrea",
45
+ "author": "Jake Correa",
46
46
  "keywords": [
47
47
  "mcp",
48
48
  "gemini",