What problem does it solve? Over time, LanceDB tables accumulate fragment files from writes and imports, causing "Too many open files" errors, wasted disk space, and slower queries. This Skill runs a structured maintenance workflow to compact and prune every table across StaticFlow's content, comments, and music databases. ## Core Features & Use Cases - Pre-check Fragment Audit: Inspects fragment counts per table via audit-storage so only tables needing compaction are optimized. - Full Optimization: Runs optimize <table> --all --prune-now to merge fragments, rebuild indexes, and immediately remove old versions. - Post-check Verification: Re-audits fragments and compares row counts before and after to confirm data integrity. - Use Case: After a bulk article import triggers "os error 24" on the backend, run this Skill to compact all affected LanceDB tables and verify row counts remain unchanged. ## Quick Start Optimize all LanceDB tables across the content, comments, and music databases and report before-and-after fragment counts.