analysis/docs/contribution-guide/index.md
This series of guides provides comprehensive instructions for developing and maintaining the Kotlin Analysis API. They are intended for:
The guidelines cover API design principles, implementation patterns, naming conventions, and evolution strategies that help maintain consistency and quality across the codebase.
The Kotlin Analysis API is a library for analyzing Kotlin code at the semantic level. It provides a structured way to query information about Kotlin code, including symbols, types, and semantic relationships between them. Built on top of Kotlin's PSI syntax trees, the API offers a clean abstraction over the compiler's internal representations, making it accessible both for IDE plugin makers and command-line tool developers.
Check the Analysis API documentation for more information.
This document covers principles and practices for developing new Analysis API endpoints, including design patterns, naming conventions, documentation standards, and requirements for API implementations.
This document covers the lifetime of individual Analysis API endpoints from introduction to deprecation.
A template for systematic analysis of existing API endpoints to support refactoring, enhancement, or deprecation decisions.