java
Installation
SKILL.md
Java Skill
Standards & Style
- Follow Oracle's Java Code Conventions and Google Java Style Guide.
- 4-space indentation; K&R brace style.
- Class names:
UpperCamelCase. Method/variable names:lowerCamelCase. Constants:UPPER_SNAKE_CASE. Packages:lowercase.dot.separated. - One top-level class per file; file name must match the public class name.
- Keep lines ≤ 120 characters.
- Follow existing code style and conventions in the project — consistency over strict adherence to new standards.
- Apply KISS & DRY, but prioritize consistency with existing code.