When to use this skill ALWAYS use this skill when the user mentions: - Using SQLite, MySQL, or PostgreSQL in a Tauri app - SQL migrations or database schema setup - Running queries from the frontend Trigger phrases include: - "sql", "sqlite", "database", "postgres", "mysql", "migration", "db plugin" How to use this skill 1. Install the SQL plugin (with SQLite feature): 2. Register the plugin with migrations in your Tauri builder: 3. Configure capabilities in : 4. Query from the frontend : 5. Use parameterized queries to prevent SQL injection 6. Keep migrations versioned and run them automatic…