java-refactor — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited java-refactor (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.
Refactor the Java code I've selected or provided. Follow these steps:
Check pom.xml (<java.version> or <maven.compiler.source>) or build.gradle (sourceCompatibility). If not found, ask: "What Java version are you targeting? (8, 11, 17, 21, or other)"
These refactorings are safe regardless of Java version:
static final constantsState the minimum Java version required for each suggestion:
new Comparator<String>() { ... } → (a, b) -> a.compareTo(b)list.stream().filter(...).collect(Collectors.toList())return null → return Optional.empty()new ArrayList<>(Arrays.asList(...)) → List.of(...)recordif (obj instanceof String) { String s = (String) obj; } → if (obj instanceof String s)For each refactoring:
Then offer: "Want me to apply these changes to the file?"
After completing refactoring:
/java-test to generate tests/java-docs to update Javadocmvn compile -q or ./gradlew build -q~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.