Comprehensive codebase analysis methodology for existing projects. Use when onboarding to a new codebase, doing periodic health checks, or before refactoring.
View on GitHubpaxtone-io/openkodo
kodo-analyzer
plugins/kodo-analyzer/skills/analyzer/SKILL.md
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/paxtone-io/openkodo/blob/main/plugins/kodo-analyzer/skills/analyzer/SKILL.md -a claude-code --skill analyzerInstallation paths:
.claude/skills/analyzer/# Kodo Analyzer Skill
Comprehensive codebase analysis methodology for existing projects.
## Purpose
The Kodo Analyzer system provides systematic codebase analysis to:
- Infer and document existing features
- Identify gaps, bugs, and security issues
- Calculate health scores per category
- Generate actionable recommendations
- Track health trends over time
## When to Use
- New project onboarding (existing codebase)
- Periodic health checks
- Pre-refactoring assessment
- Security audits
- Documentation generation
- Before major releases
## Architecture
```
+-------------------------------------+
| /kodo analyze Command |
+-----------------+-------------------+
|
+-----------------v-------------------+
| kodo-codebase-analyzer (Main) |
| - Orchestrates sub-agents |
| - Aggregates results |
| - Calculates health scores |
+-----------------+-------------------+
|
+-------------+-------------+
| | |
+---v---+ +----v----+ +---v---+
| Group | | Group | | Group |
| 1 | | 2 | | 3 |
+---+---+ +----+----+ +---+---+
| | |
+---v-------+ +--v--------+ +v------------+
| database | | deps | | security |
| api | | analytics | | performance |
| frontend | | docs | | |
+-----------+ +-----------+ +-------------+
```
## Analysis Categories
### 1. Database Analysis
- Schema quality and relationships
- RLS policy coverage
- Index optimization
- Unused table/column detection
- Migration health
### 2. API Analysis
- Endpoint inventory
- Authentication coverage
- Error handling patterns
- Edge function candidates
- Documentation gaps
### 3. Frontend Analysis
- Component inventory
- Accessibility compliance
- State management patterns
- Performance concerns
- UI consistency
### 4. Dependencies Analysis
- Outdated packages
- Security vulnerabilities
- Better alternatives
-