mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-02-02 08:33:37 +00:00
creating intital scaffolding for claude code plugins
This commit is contained in:
8
external_plugins/serena/.claude-plugin/plugin.json
Normal file
8
external_plugins/serena/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "serena",
|
||||
"description": "Semantic code analysis MCP server providing intelligent code understanding, refactoring suggestions, and codebase navigation through language server protocol integration.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Oraios"
|
||||
}
|
||||
}
|
||||
6
external_plugins/serena/.mcp.json
Normal file
6
external_plugins/serena/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"serena": {
|
||||
"command": "uvx",
|
||||
"args": ["--from", "git+https://github.com/oraios/serena", "serena", "start-mcp-server"]
|
||||
}
|
||||
}
|
||||
22
external_plugins/serena/README.md
Normal file
22
external_plugins/serena/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# Serena Plugin
|
||||
|
||||
Semantic code analysis MCP server for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Serena provides intelligent code understanding, refactoring suggestions, and codebase navigation through language server protocol integration.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Python with `uv` package manager installed
|
||||
|
||||
## Setup
|
||||
|
||||
The plugin automatically runs via `uvx`. Ensure you have `uv` installed:
|
||||
```bash
|
||||
pip install uv
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Serena GitHub Repository](https://github.com/oraios/serena) for detailed documentation.
|
||||
Reference in New Issue
Block a user