From supergraph
LSP-powered symbol navigation, diagnostics, and safe code surgery for complex refactors and cross-file analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/supergraph:serenaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Activate Serena MCP for LSP-powered code intelligence: symbol navigation, type diagnostics, and safe code surgery.
Activate Serena MCP for LSP-powered code intelligence: symbol navigation, type diagnostics, and safe code surgery.
CRITICAL: Call initial_instructions first when starting any Serena work — it loads the Serena Instructions Manual with project-specific context.
mcp__plugin_serena_serena__initial_instructions()
# or
mcp__serena__initial_instructions()
mcp__plugin_serena_serena__activate_project()
mcp__plugin_serena_serena__get_symbols_overview()
Returns top-level symbols, classes, functions — fast structural map of the codebase.
| Tool | Use case |
|---|---|
find_symbol | Locate a symbol by name across codebase |
find_declaration | Jump to where a symbol is declared |
find_implementations | Find all implementations of an interface / abstract class |
find_referencing_symbols | Find all callers and usages of a symbol |
| Tool | Use case |
|---|---|
activate_project | Register project with Serena — requires mcp__plugin_serena_serena__ namespace |
get_current_config | Read Serena's current project configuration |
open_dashboard | Open the Serena dashboard UI |
execute_shell_command | Run shell commands (use with caution — confirm before destructive ops) |
| Tool | Use case |
|---|---|
get_diagnostics_for_file | IDE-level type errors, lint warnings for a specific file |
get_symbols_overview | Project structure overview — top-level symbols map |
| Tool | Use case |
|---|---|
replace_symbol_body | Replace function/method body — exact, no regex risk |
insert_after_symbol | Insert code after a symbol definition |
insert_before_symbol | Insert code before a symbol definition |
rename_symbol | Safe rename across entire codebase |
safe_delete_symbol | Delete symbol, verify no remaining references |
| Tool | Use case |
|---|---|
find_file | Find files by name pattern |
list_dir | List directory contents |
read_file | Read file content |
search_for_pattern | Regex search across files |
replace_content | Replace text content in file |
create_text_file | Create a new text file |
| Tool | Use case |
|---|---|
write_memory | Save analysis findings for future sessions |
read_memory | Recall prior analysis |
list_memories | List all saved memories |
edit_memory | Update an existing memory |
rename_memory | Rename an existing memory entry |
delete_memory | Remove stale memory |
Use Serena memory to persist analysis state across sessions — avoids re-deriving complex blast radius mappings:
# Save findings after analysis:
mcp__serena__write_memory(title="auth-refactor-callers", content="find_referencing_symbols(login) = [A, B, C]")
# Recall in next session:
mcp__serena__read_memory(title="auth-refactor-callers")
Serena is invoked as optional hooks inside other supergraph skills:
| Skill | Hook | Tools used |
|---|---|---|
scan | Step 2b | activate_project, get_symbols_overview |
plan | Step 3b | find_referencing_symbols, find_implementations |
analyze | Step 2b | find_referencing_symbols |
tdd | After RED, after GREEN | get_diagnostics_for_file |
execute | Code surgery | replace_symbol_body, rename_symbol, insert_after_symbol |
fix | Pre-loop | get_diagnostics_for_file per changed file |
review | Step 3b | find_referencing_symbols, get_diagnostics_for_file |
flutter-dart-code-review | MCP-Integrated Review (items 7-9) | get_diagnostics_for_file, find_referencing_symbols, find_implementations |
Two variants may be present depending on project setup:
# Plugin variant (full feature set — file ops + symbol nav):
mcp__plugin_serena_serena__<tool>
# Direct variant (symbol navigation focus):
mcp__serena__<tool>
Use whichever responds. If both are available: prefer mcp__plugin_serena_serena__ for file operations, mcp__serena__ for symbol navigation.
If Serena MCP is not available:
initial_instructions before any other Serena toolreplace_symbol_body and rename_symbol over raw text edits for code changessafe_delete_symbol instead of manual deletion — it verifies no remaining referencesexecute_shell_command for destructive operations without user confirmationnpx claudepluginhub datit309/supergraph --plugin supergraphGuides use of Serena's LSP tools for symbol overviews, finding definitions, tracing references, and codebase exploration where grep is imprecise.
Guides using Serena's LSP tools for codebase exploration, symbol definitions, reference tracing, call hierarchies, and precise analysis beyond grep/text search.
Conducts multi-phase architectural analysis using Serena symbols and Forgetful memory to map project structure, identify components, trace dependencies, document architecture, and build knowledge graphs from code.