java-docs — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited java-docs (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generate Javadoc comments for the Java code I've selected or provided. Follow standard Javadoc conventions.
For classes and interfaces:
/**
* [One sentence describing the class's responsibility.]
*
* [Optional: 1–2 sentences of additional context, design pattern used, or usage note.]
*
* @author [omit — do not add @author unless already present]
* @since [omit unless the user specifies a version]
*/For public and protected methods:
/**
* [One sentence describing what this method does — use active voice, e.g., "Returns the user with the given ID."]
*
* [Optional: additional detail about behaviour, side effects, or constraints — only if non-obvious.]
*
* @param paramName [description of the parameter — what it represents, valid values, null-safety]
* @return [description of the return value — what it contains, when it is empty/null]
* @throws ExceptionType [condition that causes this exception to be thrown]
*/For fields:
/** brief description */private String name;@param: describe what the parameter represents, not just its type@return: describe the returned value's meaning, not just "the result"@throws: describe the condition, not just the exception name@param for void methods with no parameters@return for void methodsProduce the complete class or method with Javadoc inserted. Show only the documented code — do not change any logic.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.