What problem does it solve? Working with the Helios SQL-on-FHIR components requires knowing the sof-cli and sof-server configuration surface, the $sql-run endpoint parameters, and the ViewDefinition trait abstractions, which are easy to get wrong without a reference. ## Core Features & Use Cases - Server Configuration Reference: Documents SOF_SERVER_PORT, SOF_MAX_BODY_SIZE, SOF_REQUEST_TIMEOUT, CORS, and terminology server environment variables. - API Endpoint Guidance: Covers /metadata, /health, and POST /$sql-run with parameters like _format, header, subjectResource, resource, patient, _limit, and _since, including parameter precedence rules. - Parquet Export: Explains CLI and server-based parquet export with the Pathling-style type mapping (boolean to BOOLEAN, integer to INT32, decimal to FLOAT64) and Snappy compression. - Use Case: A developer modifying ViewDefinitionTrait behavior in helios-sof uses this Skill to run transformation tests, verify version-independent enum wrappers like SofViewDefinition, and validate parquet output from the $sql-run endpoint. ## Quick Start Ask the assistant to run a SQL-on-FHIR transformation by executing sof-cli with a ViewDefinition file and a FHIR Bundle, outputting the result in parquet format.