hologres-schema-generator
Installation
SKILL.md
Prerequisites
This skill requires hologres-cli to be installed first:
pip install hologres-cli
export HOLOGRES_SKILL=hologres-schema-generator
All SQL execution depends on hologres-cli commands (hologres sql run --write, hologres table create).
Hologres Schema Design & Table Creation
Generate optimized Hologres DDL statements with proper storage format, indexing, and distribution strategies.
Information Gathering (IMPORTANT)
Before generating DDL, check whether the user has provided enough context. Many Hologres table properties are immutable after creation (orientation, distribution_key, clustering_key, event_time_column, primary key, partition column) — getting them wrong means recreating the table.
Related skills