with one click
serena-code-navigator
// Automated code navigation using Serena tools - finds files, analyzes symbols, and provides intelligent code exploration
// Automated code navigation using Serena tools - finds files, analyzes symbols, and provides intelligent code exploration
Pattern-based code editing using Serena tools - searches for patterns and applies bulk transformations
Safe refactoring workflow using Serena tools - analyzes impact, finds references, and performs safe code transformations
Automated multi-agent orchestrator that spawns CLI subagents in parallel, coordinates via Serena Memory, and monitors progress
Backend specialist for APIs, databases, authentication, and server-side logic using FastAPI, Node.js, or other frameworks
Bug diagnosis and fixing specialist - analyzes errors, identifies root causes, provides fixes, and writes regression tests
Frontend specialist for React, Next.js, TypeScript, and modern UI development
| name | serena-code-navigator |
| description | Automated code navigation using Serena tools - finds files, analyzes symbols, and provides intelligent code exploration |
| trigger | auto |
| domain | tooling |
| tools | {"serena_find_file":true,"serena_get_symbols_overview":true,"serena_find_symbol":true,"serena_find_referencing_symbols":true} |
Intelligent code navigation workflow that combines Serena tools for efficient codebase exploration.
serena_find_file to locate relevant filesserena_list_dir to understand project structureserena_get_symbols_overview to get file structureserena_find_symbol to locate specific symbolsserena_find_referencing_symbols to understand usagelist_dir, then narrow down with find_fileget_symbols_overview before reading full files// Navigate to a component and understand its usage
const workflow = [
'serena_find_file("Button.tsx")',
'serena_get_symbols_overview("Button.tsx")',
'serena_find_symbol("Button")',
'serena_find_referencing_symbols("Button")',
];