# tasks > Open the tasks database in DB Browser for SQLite GUI - Author: Matt Gioe - Repository: gioe/iq-tracker - Version: 20260207191623 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-08 - Source: https://github.com/gioe/iq-tracker - Web: https://mule.run/skillshub/@@gioe/iq-tracker~tasks:20260207191623 --- --- name: tasks description: Open the tasks database in DB Browser for SQLite GUI allowed-tools: Bash --- # Tasks Skill Opens the local `tasks.db` SQLite database in DB Browser for SQLite for visual browsing and querying. ## Usage When this skill is invoked, run: ```bash open -a "DB Browser for SQLite" /Users/mattgioe/aiq/tasks.db ``` Then confirm to the user that the database has been opened in DB Browser for SQLite. ## Quick Stats Before opening, show a quick summary: ```bash sqlite3 /Users/mattgioe/aiq/tasks.db "SELECT status, COUNT(*) as count FROM tasks GROUP BY status ORDER BY count DESC" ```