Claude Code plugins — MCP servers, skills, and agents for AI-assisted development
$git clone https://github.com/bntvllnt/claude-pluginsInstalls into the current project.
Install claude-plugins by running `git clone https://github.com/bntvllnt/claude-plugins`, then use it for the current task and follow its documentation at https://github.com/bntvllnt/claude-plugins.
| 1 | <div align="center"> |
| 2 | |
| 3 | # claude-plugins |
| 4 | |
| 5 | **Claude Code plugins by [bntvllnt](https://bntvllnt.com) — MCP servers for AI-assisted development.** |
| 6 | |
| 7 | [](LICENSE) |
| 8 | |
| 9 | </div> |
| 10 | |
| 11 | --- |
| 12 | |
| 13 | ## Plugins |
| 14 | |
| 15 | | Plugin | Description | Version | |
| 16 | |--------|-------------|---------| |
| 17 | | [codebase-intelligence](plugins/codebase-intelligence/) | 15 MCP tools for TypeScript codebase intelligence | 2.2.0 | |
| 18 | |
| 19 | ## Install |
| 20 | |
| 21 | ### Marketplace (recommended) |
| 22 | |
| 23 | ```bash |
| 24 | # Add the marketplace (once) |
| 25 | /plugin marketplace add bntvllnt/claude-plugins |
| 26 | |
| 27 | # Install a plugin |
| 28 | /plugin install codebase-intelligence@bntvllnt-claude-plugins |
| 29 | ``` |
| 30 | |
| 31 | Update to latest: |
| 32 | |
| 33 | ```bash |
| 34 | /plugin marketplace update bntvllnt-claude-plugins |
| 35 | ``` |
| 36 | |
| 37 | ### One-liner (no marketplace) |
| 38 | |
| 39 | ```bash |
| 40 | claude mcp add -s user -t stdio codebase-intelligence -- npx -y codebase-intelligence@latest . --mcp |
| 41 | ``` |
| 42 | |
| 43 | ### Manual (.mcp.json) |
| 44 | |
| 45 | Add to your project's `.mcp.json`: |
| 46 | |
| 47 | ```json |
| 48 | { |
| 49 | "mcpServers": { |
| 50 | "codebase-intelligence": { |
| 51 | "type": "stdio", |
| 52 | "command": "npx", |
| 53 | "args": ["-y", "codebase-intelligence@latest", ".", "--mcp"], |
| 54 | "env": {} |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | ``` |
| 59 | |
| 60 | Replace `.` with your source directory (e.g., `./src`, `./packages`). |
| 61 | |
| 62 | ## Available MCP Tools |
| 63 | |
| 64 | codebase-intelligence provides 15 tools for code intelligence: |
| 65 | |
| 66 | | Tool | Purpose | |
| 67 | |------|---------| |
| 68 | | `codebase_overview` | High-level architecture: modules, entry points, key metrics | |
| 69 | | `file_context` | Full file details: exports, imports, dependents, metrics | |
| 70 | | `get_dependents` | Blast radius: what breaks if you change this file | |
| 71 | | `find_hotspots` | Ranked files by coupling, churn, complexity, etc. | |
| 72 | | `get_module_structure` | Module map with cross-deps and cohesion | |
| 73 | | `analyze_forces` | Tension files, bridges, extraction candidates | |
| 74 | | `find_dead_exports` | Unused exports safe to remove | |
| 75 | | `get_groups` | Top-level directory groups with aggregate metrics | |
| 76 | | `symbol_context` | Callers, callees, importance for any function or class | |
| 77 | | `search` | BM25 keyword search across files and symbols | |
| 78 | | `detect_changes` | Git diff with risk metrics per changed file | |
| 79 | | `impact_analysis` | Symbol-level blast radius with risk labels | |
| 80 | | `rename_symbol` | Find all references for rename planning | |
| 81 | | `get_processes` | Trace execution flows from entry points | |
| 82 | | `get_clusters` | Community-detected clusters of related files | |
| 83 | |
| 84 | ## Adding a Plugin |
| 85 | |
| 86 | ``` |
| 87 | plugins/ |
| 88 | your-plugin/ |
| 89 | .claude-plugin/ |
| 90 | plugin.json <- manifest (name, description, version) |
| 91 | .mcp.json <- MCP server config |
| 92 | ``` |
| 93 | |
| 94 | See [plugins/codebase-intelligence/](plugins/codebase-intelligence/) for a working example. |
| 95 | |
| 96 | ## License |
| 97 | |
| 98 | [MIT](LICENSE) |