This guide walks you through your first code analysis with Stellarion.
Navigate to your project directory and initialize Stellarion:
cd /path/to/your/project
stellarion init
Launch Claude Code in your project:
claude
Before you can leverage Stellarion's powerful semantic search and AI-optimized code analysis, you need to index your codebase. Indexing creates a searchable representation of your code that enables:
To index your project, simply ask Claude:
Index this project for semantic search
Or for more specific control:
Index only TypeScript and JavaScript files
Re-index this project from scratch
Index up to 500 files
Ask Claude Code to analyze your codebase. Here are some examples:
Analyze the code quality of this project. Show me complexity metrics and any issues.
Find the most complex functions in this codebase that might need refactoring.
Find all error handling code in this project.
Analyze the dependency structure. Are there any circular dependencies?
Generate a technical debt report for this project.