# Documentation Index
**Quick Navigation for Active Development**
## ๐ฏ Start Here
- **[ROADMAP_2025.md](ROADMAP_2025.md)** - Strategic priorities and focus areas
- **[PERFORMANCE.md](PERFORMANCE.md)** - Benchmark results and performance characteristics
- **[FUNCTION_REFERENCE.md](FUNCTION_REFERENCE.md)** - Complete SQL function documentation
## ๐ Neovim Plugin (Primary Focus)
- **[NVIM_SMART_COLUMN_COMPLETION.md](NVIM_SMART_COLUMN_COMPLETION.md)** - Smart column expansion design
- **[PLUGIN_FEATURES_ROADMAP.md](PLUGIN_FEATURES_ROADMAP.md)** - Plugin feature planning
- **[NVIM_REFACTORING_DESIGN.md](NVIM_REFACTORING_DESIGN.md)** - SQL refactoring tools
## ๐ Reference Material
### Technical Architecture
- [archive/reference/](archive/reference/) - AST, parsing, and implementation details
### Completed Work
- [archive/completed/](archive/completed/) - Finished features and migrations
### Research & Future Work
- [archive/research/](archive/research/) - CUDA, parallel execution, experimental features
### TUI (Maintenance Mode)
- [archive/tui/](archive/tui/) - TUI-specific documentation
## ๐ Quick Lookups
### By Topic
**Data Sources**
- WEB CTE documentation (search for "WEB CTE")
- CSV/JSON loading (search for "datasource")
- FIX protocol proxy (ROADMAP P0-3)
**Features**
- Window functions โ FUNCTION_REFERENCE.md
- Aggregates โ FUNCTION_REFERENCE.md
- CTEs โ Search "CTE" in active docs
- Fuzzy search โ ROADMAP P0-1
**Plugin Operations**
- Column expansion (`\sE`) โ NVIM_SMART_COLUMN_COMPLETION.md
- Distinct values (`\srD`) โ ROADMAP (recently added)
- Export (`\sx`) โ Plugin docs
- Execute (`\sx`) โ Plugin docs
## ๐ Doc Statistics
- Total: ~213 docs
- Active: ~20 docs
- Archived: ~193 docs
- Focus: 80% plugin, 15% engine, 5% TUI
## ๐งน Archive Organization
```
docs/
โโโ archive/
โ โโโ completed/ # Finished features, migrations, status docs
โ โโโ research/ # CUDA, parallel, experimental
โ โโโ tui/ # TUI-specific (maintenance mode)
โ โโโ reference/ # Technical deep dives
โโโ ROADMAP_2025.md # Strategic direction
โโโ PERFORMANCE.md # Benchmarks
โโโ [Active docs] # Current development focus
```
## ๐ก Using This Index
1. **Starting new work?** โ Check ROADMAP_2025.md for priorities
2. **Need technical details?** โ Check archive/reference/
3. **Looking for a feature?** โ Check if it's in archive/completed/
4. **Plugin development?** โ Check NVIM_*.md docs
5. **Performance question?** โ PERFORMANCE.md
---
**Philosophy**: Keep active docs minimal. Archive the rest. Focus on plugin excellence.