Kotlin Autocomplete

Query Kotlin autocomplete metadata for type members and signatures.

Updated Dec 14, 2019
One-click install
npx skills add https://github.com/kf7mxe/Brisingr --skill kotlin-autocomplete
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Kotlin Autocomplete
Source: https://github.com/kf7mxe/Brisingr/tree/main/skills/skills/kotlin-autocomplete
Command: npx skills add https://github.com/kf7mxe/Brisingr --skill kotlin-autocomplete

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides accurate Kotlin type information by querying project-generated autocomplete metadata.

Core Features & Use Cases

  • Provides fast, project-aware access to public Kotlin type members, extension functions, and property signatures for types across the standard library and the user's codebase.
  • Enables quick validation of available members and their signatures during coding, review, and debugging sessions.
  • Use Case: In a Kotlin project, ask the AI what methods exist on a given type and confirm compatibility before implementing code.

Quick Start

Use the Kotlin Autocomplete Skill to look up a type by its simple name or FQN and retrieve its available members.

Frequently Asked Questions about Kotlin Autocomplete

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get Kotlin type information and method signatures for my project?

To get Kotlin type information, this Skill queries project-generated autocomplete metadata to retrieve public type members, extension functions, and property signatures across your standard library and codebase.

Do I need a Gradle plugin to generate Kotlin autocomplete metadata?

Yes, generating Kotlin autocomplete metadata requires the kotlin-autocomplete-gradle-plugin and running the ./gradlew buildAutocomplete task to produce and access metadata in the build/autocomplete directory.

Can I validate Kotlin extension function availability during code review?

Yes, you can validate Kotlin extension function availability during code review by querying project-aware autocomplete metadata to confirm method and property signatures before implementing code.

What's the best way to look up available members on a Kotlin type by its simple name?

The best way to look up available members on a Kotlin type by its simple name or FQN is to query the project-generated autocomplete metadata for fast, project-aware access to public members.

Does Kotlin static analysis for code completion work with project-specific types?

Yes, Kotlin static analysis for code completion works with project-specific types by querying generated autocomplete metadata to provide method and property availability across both the standard library and your codebase.