What problem does it solve? RDF data can silently violate structural rules such as required properties, cardinality limits, or datatype constraints. This Skill runs SHACL validation on Turtle files so violations are detected and fixed before the graph is treated as valid. ## Core Features & Use Cases - SHACL Validation: Runs the rdf_validate tool against data files, with automatic discovery of shapes files using the .shacl.ttl naming convention. - Violation Interpretation: Reports focus node, path, message, and severity for each violation, then guides fixing and re-validation until the graph conforms. - Full SHACL Support: Uses shacl-engine with SPARQL targets and SPARQL constraint components enabled, covering sh:targetClass, sh:targetNode, and sh:sparql constraints. - Use Case: After writing a persons.ttl file, validate it against PersonShape.shacl.ttl to confirm every person has the required properties before publishing the graph. ## Quick Start Validate my data/persons.ttl file against the SHACL shapes in this workspace and fix any violations found.