tabularis-plugin-driver

A guide for building or updating Rust plugins that connect the Tabularis database application to another database. The plugin communicates with Tabularis through JSON messages sent over standard input and output.

In plain words
What is it for?
Use it to create database plugins, implement metadata, queries, data changes, and database-structure operations, and add optional user-interface extensions where supported.
Why use it?
It provides the repository rules, file structure, connection points, tests, and validation steps needed to avoid an incomplete or outdated database driver.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/tabularisdb/tabularis/tabularis-plugin-driver
Any agent
npx skills add TabularisDB/tabularis --skill tabularis-plugin-driver
Clone the repo
git clone --depth 1 https://github.com/TabularisDB/tabularis

Made for: Claude Code, Codex.

Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,005 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00057 $0.02005
Opus 5 $0.00028 $0.01002
Sonnet 5 $0.00011 $0.00401
Haiku 4.5 $0.00006 $0.00200

Measured yesterday against content hash 3d193845d88a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

tabularis-plugin-driver scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/tabularis-plugin-driver/SKILL.md · 259 lines

How it starts

The opening of the file, as written. The whole thing — 259 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Tabularis Plugin Driver

Use this skill when building or updating a database plugin for Tabularis.

The skill is optimized for this repository. Follow AGENTS.md, the files in .rules/, and the current plugin-system behavior in src-tauri/src/plugins/ and src/types/plugins.ts.

Goals

  • Build a Rust plugin that speaks Tabularis JSON-RPC over stdin/stdout
  • Use the modern plugin manifest, not the old minimal format
  • Aim for broad feature coverage comparable to the built-in MySQL driver where the target database supports it
  • Keep the plugin modular instead of concentrating logic in a single main.rs
  • Add unit tests for pure utilities and SQL generation

Default Repo Layout

Prefer this structure for a new plugin repository:

plugin-root/
├── Cargo.toml
├── manifest.json
├── README.md
├── src/
│   ├── main.rs
│   ├── rpc.rs
│   ├── client.rs
│   ├── error.rs
│   ├── models.rs
│   ├── handlers/
│   │   ├── mod.rs
│   │   ├── metadata.rs
│   │   ├── query.rs
│   │   ├── crud.rs
│   │   └── ddl.rs
│   └── utils/
│       ├── mod.rs
│       ├── identifiers.rs
│       ├── values.rs
│       ├── types.rs
│       └── pagination.rs
├── src/bin/
│   └── test_plugin.rs
└── tests/                # only if integration tests are worth the overhead

Keep src/main.rs thin. It should mostly parse requests, dispatch methods, and serialize responses.

Required Research Before Coding

  1. Read the current plugin manifest shape in:
    • plugins/manifest.schema.json
    • src/types/plugins.ts
    • src-tauri/src/plugins/manager.rs
  2. Read the JSON-RPC expectations in:
    • plugins/PLUGIN_GUIDE.md
    • src-tauri/src/plugins/driver.rs
    • src-tauri/src/plugins/rpc.rs
  3. Read a built-in driver with broad coverage to understand expected behaviors:
    • src-tauri/src/drivers/mysql/mod.rs
  4. Read plugin-loading behavior and modern feature flags in:
    • src/hooks/useDrivers.ts
    • src/utils/connectionStringParser.ts
    • src/utils/driverCapabilities.ts

Read the full file on GitHub · 259 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 259 lines · 57 tokens per session scan A 3d193845d88a

Subscribe to this mod's changes

tabularis-plugin-driver is a skill published in the GitHub repository TabularisDB/tabularis (4,583 stars, last pushed today), licensed Apache-2.0. It adds 57 tokens to every session and 2,005 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gonavi-cli

Operate databases through the GoNavi headless CLI — the gonavi executable shipped in verified GitHub Release archives. Covers listing/adding/importing saved connections, running SQL queries against saved connections or ad-hoc connection files, exporting result sets to csv/json/md/html/xlsx, batch-executing SQL files…

Syngnat/GoNavi · 144 tokens

algorithmic-art

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…

ThinkInAIXYZ/deepchat · 62 tokens

deepchat-cli

Use DeepChat's bundled CLI control plane for model inference, image/video/speech generation, transcription, OCR, artifact inspection, public configuration, Skills, and MCP operations. Activate when a user asks to invoke DeepChat capabilities that are not already exposed as a more specific tool, compare models, run a…

ThinkInAIXYZ/deepchat · 80 tokens

add-provider

Add a DeepChat LLM provider through explicit reviewed source changes. Use when a developer asks Codex to add a provider, provider profile, upstream provider config, model catalog mapping, provider auth behavior, or a special provider adapter in this repository.

ThinkInAIXYZ/deepchat · 52 tokens

deepchat-release

Prepare and publish DeepChat releases in this repository. Use when Codex needs to bump the app version, update CHANGELOG.md, keep release notes bilingual from v1.0.1 onward with English bullets first and Chinese bullets second, run release checks, create or update versioned release branches such as release/v1.0.1…

ThinkInAIXYZ/deepchat · 102 tokens

web-artifacts-builder

Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.

ThinkInAIXYZ/deepchat · 64 tokens