coral
Coral CLI Skill
Use this skill to answer data questions by querying connected sources with coral sql.
Discovery-First Workflow
Before writing any query, follow these steps:
- List available regular tables:
SELECT schema_name, table_name, description, required_filters, guide FROM coral.tables;
-
Read the
guidecolumn — it contains per-table query patterns and gotchas. Use it. -
List available table functions. Table functions expose API endpoints that require arguments. They are listed in
coral.table_functions, notcoral.tables, and their result columns are listed inresult_columns_json, notcoral.columns.
More from withcoral/skills
coral-create-source-spec
Create or update a Coral source spec YAML for a custom HTTP API or local dataset. Use when authoring a standalone source for `coral source add --file`, or when adapting that spec into a bundled source in the Coral repo.
36coral-review-source-spec
Review new or updated Coral source manifests and source PRs for content, style, product fit, query ergonomics, documentation quality, and consistency with existing Coral sources. Use when Codex is asked to review a sources/core/name or sources/community/name source directory, a manifest.yaml, or a GitHub PR that adds or changes a Coral source.
20