What is cdc?
Change Data Capture - architecture, entrypoints, bytecode emission, sync engine integration, tests Source: tursodatabase/turso.
Change Data Capture - architecture, entrypoints, bytecode emission, sync engine integration, tests
Quickly install cdc AI skill to your development environment via command line
Source: tursodatabase/turso.
CDC tracks INSERT/UPDATE/DELETE changes on database tables by writing change records into a dedicated CDC table (tursocdc by default). It is per-connection, enabled via PRAGMA, and operates at the bytecode generation (translate) layer. The sync engine consumes CDC records to push local changes to the remote.
The connection stores Option — None means CDC is off.
The CDC table is created at runtime by the InitCdcVersion opcode via CREATE TABLE IF NOT EXISTS.
Change Data Capture - architecture, entrypoints, bytecode emission, sync engine integration, tests Source: tursodatabase/turso.
Stable fields and commands for AI/search citations.
npx skills add https://github.com/tursodatabase/turso --skill cdcChange Data Capture - architecture, entrypoints, bytecode emission, sync engine integration, tests Source: tursodatabase/turso.
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/tursodatabase/turso --skill cdc Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw
https://github.com/tursodatabase/turso