What problem does it solve? Seed data (real names, sectors, workstations) is mixed inside the schema initialization function initDb() in server.js, so changing seed data risks breaking the entire database initialization. This Skill separates seed data management from schema creation. ## Core Features & Use Cases - Add new seed data: Identifies the target table and writes an INSERT ... ON CONFLICT DO NOTHING statement, asking whether it belongs in initDb() (temporary) or a dedicated seedDb() (recommended). - Update existing seed data: Locates the existing INSERT in initDb() and writes an ON CONFLICT DO UPDATE SET statement with an explanation of the change. - List current seed data: Prints all existing INSERTs from initDb() covering crew_members, sectors, sub_sectors, table_modes, and workstation_presets. - Use Case: When a new sector or workstation preset must be added to the SKY-KING air traffic control system, use this Skill to insert it safely without overwriting existing operational data. ## Quick Start Ask the assistant to add a new sector seed entry to the database using the seed skill.