I'll have to write a pretty basic Annotation Processor (generating a documentation file checking all the classes in the project for special annotations). I understand that there's old KAPT and new (alpha-state) KSP. So normally I'd say, I'll have to use KAPT because KSP is still alpha, but is KAPT maybe equally unstable at the moment, because the Kotlin Compiler Frontend is being reworked?
If that's the case I'd probably pick the more modern KSP and update my Processor whenever there's a breaking change (because I don't expect this to be much work given the simple nature of what I need it to do).
Are there any educated guesses of when KSP and KAPT (should it be currently unstable) will become stable?