maven-indexer
Installation
SKILL.md
Maven Indexer
Use maven-indexer-cli to search and inspect Java classes, artifacts, and resources from your local Maven/Gradle cache.
When to activate
Use this skill when:
- You see an import (e.g.
com.company.util.Helper) but cannot find the definition in the workspace — it likely comes from a compiled internal library - You need to read the actual implementation of an internal or non-well-known library ("Don't guess what the internal library does — read the code")
- You need to find which artifact contains a given class
- You need method signatures, Javadocs, or full source code of a dependency class
- You need to find implementations of an interface or subclasses of a base class (e.g. SPI implementations)
- You need to locate proto files or other resources embedded in JARs
Skip when:
- The class is from the standard Java library (
java.util,java.io, etc.) or a well-known public library the AI already knows well - The source is already present in the current workspace