{"id":29480931,"url":"https://github.com/taigrr/teaqlite","last_synced_at":"2026-05-21T05:02:39.826Z","repository":{"id":304591897,"uuid":"1018800945","full_name":"taigrr/teaqlite","owner":"taigrr","description":"Tea-Quill-ite: A CLI-based sqlite browser","archived":false,"fork":false,"pushed_at":"2025-07-14T04:12:41.000Z","size":128,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-14T06:02:50.585Z","etag":null,"topics":["bubbletea","go","sqlite"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"0bsd","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taigrr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"taigrr"}},"created_at":"2025-07-13T04:29:06.000Z","updated_at":"2025-07-14T04:12:27.000Z","dependencies_parsed_at":"2025-07-14T06:02:58.461Z","dependency_job_id":"ba7f9f19-a056-4e5b-ab2c-9e3402e87787","html_url":"https://github.com/taigrr/teaqlite","commit_stats":null,"previous_names":["taigrr/teaqlite"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/taigrr/teaqlite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fteaqlite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fteaqlite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fteaqlite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fteaqlite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taigrr","download_url":"https://codeload.github.com/taigrr/teaqlite/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fteaqlite/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265375180,"owners_count":23755183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bubbletea","go","sqlite"],"created_at":"2025-07-14T23:55:01.496Z","updated_at":"2026-05-21T05:02:39.821Z","avatar_url":"https://github.com/taigrr.png","language":"Go","funding_links":["https://github.com/sponsors/taigrr"],"categories":[],"sub_categories":[],"readme":"# TeaQLite\n\nA colorful-but-minimal terminal user interface for browsing SQLite databases built with [Bubble Tea](https://github.com/charmbracelet/bubbletea).\n\n## Features\n\n- **Table Browser**: Browse all tables in your SQLite database with pagination\n- **Fuzzy Search**: Search tables by name using `/` key with ranked results\n- **Data Viewer**: View table data with pagination and row highlighting\n- **Row Detail Modal**: View individual rows in a 2-column format (Column | Value)\n- **Cell Editing**: Edit individual cell values with live database updates\n- **SQL Query Interface**: Execute custom SQL queries with parameter support\n- **Vim-style Navigation**: `j`/`k` movement, `gg`/`G` jumps, and more\n- **Responsive Design**: Adapts to terminal size and fits content to screen\n\n## Install\n\n```bash\ngo install github.com/taigrr/teaqlite@latest\n```\n\nOr build from source:\n\n```bash\ngit clone https://github.com/taigrr/teaqlite.git\ncd teaqlite\ngo build -o teaqlite .\n```\n\n## Usage\n\n```bash\nteaqlite \u003cdatabase.db\u003e\n```\n\nExample with the included sample database:\n\n```bash\nteaqlite sample.db\n```\n\n## Keybindings\n\n### Global\n\n| Key      | Action      |\n| -------- | ----------- |\n| `ctrl+c` | Quit        |\n| `ctrl+z` | Suspend     |\n| `ctrl+g` | Toggle help |\n\n### Table List\n\n| Key       | Action         |\n| --------- | -------------- |\n| `↑`/`k`   | Move up        |\n| `↓`/`j`   | Move down      |\n| `←`/`h`   | Previous page  |\n| `→`/`l`   | Next page      |\n| `enter`   | Open table     |\n| `/`       | Search tables  |\n| `gg`      | Jump to start  |\n| `G`       | Jump to end    |\n| `s`       | SQL query mode |\n| `r`       | Refresh        |\n| `esc`     | Clear filter   |\n\n### Table Data\n\n| Key       | Action          |\n| --------- | --------------- |\n| `↑`/`k`   | Move up         |\n| `↓`/`j`   | Move down       |\n| `←`/`h`   | Previous page   |\n| `→`/`l`   | Next page       |\n| `enter`   | View row detail |\n| `/`       | Search data     |\n| `gg`      | Jump to start   |\n| `G`       | Jump to end     |\n| `q`       | Back to tables  |\n| `s`       | SQL query mode  |\n| `r`       | Refresh         |\n\n### Row Detail\n\n| Key     | Action    |\n| ------- | --------- |\n| `↑`/`k` | Move up   |\n| `↓`/`j` | Move down |\n| `e`     | Edit cell |\n| `q`     | Back      |\n| `esc`   | Back      |\n\n### SQL Query Mode\n\n| Key     | Action          |\n| ------- | --------------- |\n| `enter` | Execute query   |\n| `esc`   | Back to tables  |\n| `↑`/`k` | Navigate results |\n| `↓`/`j` | Navigate results |\n| `e`     | Edit query      |\n\n### Edit Cell\n\n| Key     | Action |\n| ------- | ------ |\n| `enter` | Save   |\n| `esc`   | Cancel |\n\n## License\n\n[0BSD](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaigrr%2Fteaqlite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaigrr%2Fteaqlite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaigrr%2Fteaqlite/lists"}