Skip to main content
Run any Skill in Manus
with one click

java-coding-style

Stars14
Forks1
UpdatedMay 20, 2026 at 03:18

Layer 2 (Coding style) for Java. Daily decisions without opening SKILL.md: - 4 spaces (never tabs); K&R braces; always braces for if/for/while (no single-line). - NO wildcard imports (`import x.*;`). NO `// comment` for structural blocks — use `/** */`. - Every public class/method has Javadoc with @author/@date/@param/@return. - Custom utility class: `public final class` + `private` ctor + all methods `static`. NO business imports. - Discovery-first: prefer cn.hutool / commons / existing *Util before writing a new helper. Open SKILL.md when deciding: In-Memory JOIN generic helper signature, Cursor Batching skeleton for large datasets, Javadoc template details.

Installation

Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.

SKILL.md
readonly