Skip to content

Commit c8c2f59

Browse files
jaykaycodesclaude
andcommitted
fix: include dist/ in git for plugin installs
- Remove cwd from MCP server config (was resolving to wrong directory) - Include built JS files in git so GitHub plugin installs work - Exclude large compiled binaries from git Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e785518 commit c8c2f59

6 files changed

Lines changed: 144706 additions & 7 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
},
77
"metadata": {
88
"description": "Multi-layer codebase analysis tools",
9-
"version": "1.0.3"
9+
"version": "1.0.4"
1010
},
1111
"plugins": [
1212
{
1313
"name": "codebase-analyzer",
1414
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
15-
"version": "1.0.3",
15+
"version": "1.0.4",
1616
"author": {
1717
"name": "Jake Correa",
1818
"url": "https://github.com/jaykaycodes"

.claude-plugin/plugin.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codebase-analyzer",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
55
"author": {
66
"name": "Jake Correa",
@@ -22,8 +22,7 @@
2222
"command": "node",
2323
"args": [
2424
"dist/mcp/server.js"
25-
],
26-
"cwd": "."
25+
]
2726
}
2827
}
2928
}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
node_modules/
2-
dist/
2+
# Keep dist/*.js in git for GitHub plugin installs
3+
# Exclude compiled binaries (too large)
4+
dist/cba
5+
dist/cba-*
36
*.log
47
.env
58
.env.local

0 commit comments

Comments
 (0)