validate-geometry — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited validate-geometry (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.
Invalid geometries are the second great source of silent GIS errors. Before spatial operations, check validity and repair deliberately.
Before an overlay, join, buffer, or dissolve, verify the geometries are valid and clean:
ST_IsValid (PostGIS), .is_valid (Shapely/GeoPandas), Check Geometry (ArcPy), or ogrinfo (GDAL).ST_MakeValid (PostGIS), make_valid() (Shapely — and know the older buffer(0) trick can silently drop slivers), Repair Geometry (ArcPy), ogr2ogr -makevalid (GDAL).An invalid polygon doesn't announce itself. It makes an intersection return empty, a dissolve leak across boundaries, or an area come back negative — output that looks valid and passes review on its way to the map. Checking validity before the operation turns a silent wrong answer into either a clean result or an explicit "here's what I had to fix."
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.