tabularis
A lightweight, cross-platform database client for developers. Supports MySQL, PostgreSQL and SQLite. Hackable with plugins. Built for speed, security, and aesthetics.
Source#
- Repository: debba/tabularis
- Last source update: 2026-04-05
- Last verified: 2026-04-05
Tags#
Integration notes#
Repository is focused on tool/server interoperability; wrap in bounded worker contracts for production use.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: tabularis-repo-derived-worker
name: tabularis Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/tabularis/
source_repository: https://github.com/debba/tabularis
repository_default_branch: main
repository_language: TypeScript
repository_license: Apache-2.0
repository_updated_at: 2026-04-05
worker_mode: ui-copilot-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.9
derived_on: 2026-04-05
tags:
- ai-agent
- ai-assistant
- cross-platform
- database-client
- database-gui
- database-management
---
# tabularis Repo-Derived Worker
## Repo-derived summary
- Registry summary: A lightweight, cross-platform database client for developers. Supports MySQL, PostgreSQL and SQLite. Hackable with plugins. Built for speed, security, and aesthetics.
- Repository description: A lightweight, cross-platform database client for developers. Supports MySQL, PostgreSQL and SQLite. Hackable with plugins. Built for speed, security, and aesthetics.
- Stars (snapshot): 945
- Primary language: TypeScript
- Worker mode classification: ui-copilot-worker
## Extracted from
- https://github.com/debba/tabularis
- https://github.com/debba/tabularis/blob/main/README.md
- https://github.com/debba/tabularis/workflows/Release/badge.svg
- https://snyk.io//test/github/debba/tabularis/badge.svg?targetFile=package.json
- https://www.serversmtp.com/?utm_source=tabularis&utm_medium=referral&utm_campaign=sponsor
## Evidence notes (from repository text)
- README summary paragraph: A lightweight, cross-platform database client for developers, built with Tauri and React.
- !https://github.com/debba/tabularis/workflows/Release/badge.svg
- > 💡 **Origin Story:** This project began as an AI-assisted development experiment, exploring how far intelligent agents could accelerate building a fully functional tool from scratch..
- - **https://www.kilo.ai/?utm_source=tabularis&utm_medium=referral&utm_campaign=sponsor** — Open source AI coding agent — build, ship, and iterate faster with 500+ models
- - [MCP Server — AI Agent Integration](#mcp-server--ai-agent-integration)
- - **In-memory Buffer:** Configurable retention.
## Installation hints found in README
- No explicit package installation command detected in README text.
## worker.md contract (derived starter)
Purpose: Run bounded assistant tasks for UI copilots using patterns documented in this repository.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"session_id",
"user_prompt",
"app_context"
],
"properties": {
"session_id": {
"type": "string"
},
"user_prompt": {
"type": "string"
},
"app_context": {
"type": "object"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"session_id",
"response",
"status"
],
"properties": {
"session_id": {
"type": "string"
},
"response": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: session_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
tabularis-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/tabularis/
Source URL: https://github.com/debba/tabularis