What problem does it solve? After compiling a Divalto project with buildall, the SQL Server database schema must be updated to match the compiled dictionaries, and the synchronization report must be checked for errors. This Skill automates running xwin7 synchroauto with the correct prerequisites and parses the resulting report so failures are diagnosed quickly. ## Core Features & Use Cases - Automated SQL synchronization: Runs xwin7 -action synchroauto from C:\divalto\sys with the same project and profile used by the preceding buildall compilation. - Report parsing: The parse_synchro.py script extracts the [TOTAL_ERRORS] marker and error lines with context, returning structured JSON and meaningful exit codes. - Schema delta extraction: The --changes mode summarizes the real DDL delta per table (added/dropped columns, created/dropped indexes, created/dropped tables, procedures, functions) while filtering backup-table and boilerplate noise. - Use Case: After a successful buildall with 0 errors on the 'divalto achat-vente.dhpt' project, run the synchronization, then parse Synchro.txt to confirm [TOTAL_ERRORS]0 or list the exact errors to fix. ## Quick Start Ask the assistant to synchronize the SQL database for your compiled Divalto project and parse the synchronization report to confirm zero errors.