What problem does it solve? Working with Excel files programmatically risks silent data loss when unsupported parts like macros, OLE objects, or signatures are present. This Skill enforces a supported-lossless contract: every create or edit operation must produce a coverage manifest proving coverage_ratio equals 1.0 before the file is published. ## Core Features & Use Cases - Inspect and Validate: Inventory all OOXML package parts, sheets, cells, and merged ranges in an .xlsx file, flagging unsupported content like VBA macros or digital signatures that block writes. - Create and Edit: Build workbooks from JSON specs or apply cell edits via JSON edit files, with atomic temp-file publishing and post-write validation. - Coverage Manifests: Every operation emits a coverage.json manifest listing each item as preserved, transformed, unsupported, or skipped. - Use Case: You receive a sales workbook and need to update quarterly figures. Run inspect first to confirm no macros exist, apply edits via a JSON spec, and publish only after the manifest confirms full coverage. ## Quick Start Ask the agent to inspect the attached workbook.xlsx file and produce a coverage manifest before making any edits.