java-checkstyle-db62b4 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited java-checkstyle-db62b4 (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. This skill keeps the fix on a single, consistent command so reviewers never have to ask for it manually again.
"run spotless", "format Java", or similar.
Java checkstyle failed / Fix Java checkstyle comment on a PR(the project's bot phrases the instruction as "Please run mvn spotless:apply in the root of your repository and commit the changes").
.java files —before opening a PR or pushing a commit that touches Java.
mvn spotless:apply at the repo root across all modules.-pl <module>: scope to a single Maven module (e.g.-pl openmetadata-service). Useful when only one module changed and you want a faster run.
--check: run mvn spotless:check instead of apply. Use to confirm thetree is clean without touching files (e.g. to verify before push).
From the repo root:
mvn spotless:apply # default — formats everything
# or
mvn -pl <module> spotless:apply # scoped to one module
# or
mvn spotless:check # verify only, don't writeSpotless is fast (seconds, no compilation). If it fails with a plugin error (not a formatting diff), surface the error and stop — do not try to hand-edit formatting around the failure.
git status --short
git diff --statExpect reformatting in .java files only. If Spotless touches pom.xml or other non-Java files, that's also fine — Spotless is configured for those too in this repo.
Do NOT auto-commit. Report the changed file list to the user and let them decide whether to fold the formatting into the in-progress commit or make a separate "Fix Java checkstyle" commit. Follow the repo convention: the existing branch history already uses Fix Java checkstyle as the commit title for bot-triggered formatting-only commits.
pom.xml (spotless-maven-pluginsection). Do not redefine formatting rules inline in source files.
— Spotless is the source of truth, not the IDE.
yarn pretty (see the test-locally skill /CLAUDE.md for the UI lint flow); this skill is Java-only.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.