What problem does it solve? Divalto ERP stores data in proprietary binary ISAM files (.dhfi) that cannot be edited directly without risking silent corruption. This Skill provides a safe, validated path to insert, update, and delete records through the official DhxIsam64.dll API, with an anti-corruption guardrail that verifies record sizes against the real dictionary before any write. ## Core Features & Use Cases - Insert, update, and delete operations: Single-record and batch writes via write_isam.py, with exact key verification before any update or delete to prevent overwriting neighboring records. - Anti-corruption guardrail: Automatically cross-checks the declared JSON structure (Dictionnaire/Base/Table/TailleEnreg) against the real .dhsd dictionary and refuses mismatched writes (error_code -2). - Structure validation and dry run: validate_structure.py checks field offsets and sizes, and --dry-run validates JSON payloads on machines without the DLL installed. - Use Case: Register a new zoom in the ERP by writing an M4 record into a5f.dhfi (Ce=4, ZoomNum, Lib, ZoomEnr, ZoomFic=ZOOMSQL), then add a corresponding M2 menu entry into g3f.dhfi using the pre-built structures. ## Quick Start Ask the AI to write a zoom record into a5f.dhfi with your field values, and it will prepare the data JSON, validate the structure, and run write_isam.py with the correct parameters.