java-fix — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited java-fix (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.
Diagnose the Java error or stack trace I've provided and propose a fix. Be specific — do not give generic advice.
Compile errors (javac / Maven / Gradle output):
cannot find symbol → missing import, misspelled name, or wrong scopeincompatible types → type mismatch; check generics, autoboxing, wideningmethod X is not applicable → wrong number or types of argumentsvariable X might not have been initialized → missing initialisation on all code pathsreached end of file while parsing → unmatched { or }class X is public, should be declared in a file named X.java → filename mismatchRuntime exceptions (stack traces):
NullPointerException → identify the line; determine which reference is null; suggest a null check or OptionalClassCastException → show the actual vs expected type; fix the cast or use instanceof firstArrayIndexOutOfBoundsException → check loop bounds and array lengthStackOverflowError → identify the recursive call; check base caseConcurrentModificationException → iterating and modifying a collection simultaneously; suggest iterator.remove() or a copyIllegalArgumentException / IllegalStateException → read the message; check the API contractRead the full error message carefully. The root cause is usually the last "Caused by:" in a stack trace. Show the user:
Show:
If the fix requires reading a file not currently shown, ask for it: "Can you share the contents of ClassName.java? I need to see [specific thing]."
Add one short note on how to avoid this class of error in the future (e.g., "Use Objects.requireNonNull() at method entry to catch nulls early").
After applying the fix:
mvn compile -q or ./gradlew build -q/java-test to verify behaviour is preserved/java-review on the surrounding code~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.