electric-schema-shapes
Installation
SKILL.md
This skill builds on electric-shapes. Read it first for ShapeStream configuration.
Electric — Schema and Shapes
Setup
Design tables knowing each shape syncs one table. For cross-table data, use multiple shapes with client-side joins.
-- Schema designed for Electric shapes
CREATE TABLE todos (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
org_id UUID NOT NULL,
text TEXT NOT NULL,
completed BOOLEAN DEFAULT false,
created_at TIMESTAMPTZ DEFAULT now()
);
Related skills