java-checkstyle-1f5845 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited java-checkstyle-1f5845 (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.
OpenMetadata enforces Java formatting via the Spotless Maven plugin. Every CI build runs mvn spotless:check and fails the PR if any file is not formatted.
"run spotless", "format Java", or similar.
Java checkstyle failed / Fix Java checkstyle comment on a PR(the bot's exact phrasing is "Please run mvn spotless:apply in the root of your repository and commit the changes to this PR").
.java files — beforeopening a PR or pushing a commit that touches Java.
mvn spotless:apply # formats everything
# or
mvn -pl <module> spotless:apply # scope to a single Maven module for speed
# or
mvn spotless:check # verify only, without rewriting filesSpotless is fast (seconds, no compilation). If it fails with a plugin error rather than a formatting diff, surface the error and stop — do not try to hand-edit formatting around the failure.
git status --short
git diff --statExpect changes only in .java (and possibly pom.xml) files. If Spotless keeps rewriting a change you just made, re-read the root pom.xml's spotless-maven-plugin config — Spotless is the source of truth, not the IDE.
user can decide whether to fold the reformat into the in-progress commit or make a separate "Fix Java checkstyle" commit (matches the repo's existing history for bot-triggered formatting-only commits).
yarn pretty / ESLint flow (see AGENTS.mdUI section).
make py_format (black + isort + pycln).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.