Back to Discover

agent-skills

skill

clickhouse

The official Agent Skills for ClickHouse and ClickHouse Cloud

View on GitHub
507 starsApache-2.0Synced Aug 2, 2026

Install to Claude Code

/plugin marketplace add clickhouse/agent-skills

README

ClickHouse Agent Skills

The official Agent Skills for ClickHouse. These skills help LLMs and agents to adopt best practices when working with ClickHouse and chdb (in-process ClickHouse for Python).

You can use these skills with open-source ClickHouse and managed ClickHouse Cloud. Try ClickHouse Cloud with $300 in free credits.

Installation

npx

npx skills add clickhouse/agent-skills

The CLI auto-detects installed agents and prompts you to select where to install.

clickhousectl

Use the ClickHouse CLI clickhousectl to install the agent skills:

clickhousectl skills

What is this?

Agent Skills are packaged instructions that extend AI coding agents (Claude Code, Cursor, Copilot, etc.) with domain-specific expertise. This repository provides skills for ClickHouse databases and chdb — covering schema design, query optimization, data ingestion patterns, and in-process analytics with Python.

When an agent loads these skills, it gains knowledge of ClickHouse best practices and chdb APIs, and can apply them while helping you design tables, write queries, analyze data, or troubleshoot performance issues.

Skills follow the open specification at agentskills.io.

Available Skills

ClickHouse Best Practices

28 rules covering schema design, query optimization, and data ingestion—prioritized by impact.

CategoryRulesImpact
Primary Key Selection4CRITICAL
Data Type Selection5CRITICAL
JOIN Optimization5CRITICAL
Insert Batching1CRITICAL
Mutation Avoidance2CRITICAL
Partitioning Strategy4HIGH
Skipping Indices1HIGH
Materialized Views2HIGH
Async Inserts2HIGH
OPTIMIZE Avoidance1HIGH
JSON Usage1MEDIUM

Location: skills/clickhouse-best-practices/

For humans: Read SKILL.md for an overview, or AGENTS.md for the complete compiled guide.

For agents: The skill activates automatically when you work with ClickHouse—creating tables, writing queries, or designing data pipelines.

ClickHouse Architecture Advisor

5 decision frameworks covering workload-aware architecture decisions for real-time ClickHouse deployments.

Decision AreaImpact
Ingestion StrategyCRITICAL
Join & Enrichment PatternsCRITICAL
Late-Arriving Data & UpsertsCRITICAL
Time-Series PartitioningHIGH
Real-Time Pre-AggregationHIGH

Complements clickhouse-best-practices by answering when, why, and how — not just what. All recommendations are explicitly classified as official, derived, or field guidance.

Location: skills/clickhouse-architecture-advisor/

For humans: Read SKILL.md for an overview, or AGENTS.md for the compiled guide.

For agents: The skill activates during architecture design sessions — when choosing ingestion patterns, designing time-series schemas, selecting enrichment strategies, or handling mutable state.

ClickHouse JS Node Troubleshooting

Troubleshooting guide for the ClickHouse Node.js client (@clickhouse/client). Covers common failure modes including socket hang-up / ECONNRESET, Keep-Alive misconfiguration, data type mismatches, read-only user restrictions, proxy / pathname URL confusion, TLS certificate errors, compression issues, logging setup, and query parameter interpolation.

Location: skills/clickhouse-js-node-troubleshooting/

For agents: The skill activates when users report errors, unexpected behavior, or configuration questions involving the ClickHouse Node.js client — including vague symptoms like "my inserts keep failing" or "connection drops randomly" in a Node.js context. Not used for browser/Web client issues.

chdb DataStore

Pandas-compatible API for chdb — drop-in pandas replacement backed by ClickHouse. Write import chdb.datastore as pd and use the same pandas API, 10-100x faster. Supports 16+ data sources (MySQL, PostgreSQL, S3, MongoDB, Iceberg, Delta Lake, etc.) with cross-source joins.

Location: skills/chdb-datastore/

For agents: The skill activates when you analyze data with pandas-style syntax, speed up slow pandas code, query remote databases as DataFrames, or join data across different sources.

chdb SQL

In-process ClickHouse SQL for Python — run SQL queries on local files, remote databases, and cloud storage without a server. Covers chdb.query(), Session, DB-API 2.0, parametrized queries, UDFs, streaming, and all ClickHouse table functions.

Location: skills/chdb-sql/

For agents: The skill activates when you write SQL queries against files, use ClickHouse table functions, build stateful analytical pipelines, or use advanced ClickHouse SQL features.

Infra ClickHouse

Local and cloud workflows for running ClickHouse with clickhousectl. The top-level SKILL.md is a decision tree that routes to the right reference: ref/local.md for local development (install ClickHouse, start a server, create schemas, seed data) and ref/cloud.md for ClickHouse Cloud (authenticate, create a service, migrate schemas, connect an application). The local workflow hands off to cloud when going to production. Supersedes clickhousectl-local-dev and clickhousectl-cloud-deploy.

Location: skills/infra-clickhouse/

For agents: The skill activates when a user wants to build an application with ClickHouse, set up a local development environment, deploy to production, or manage a ClickHouse Cloud service.

Infra Postgres

Local and cloud workflows for running Postgres with clickhousectl. The top-level SKILL.md is a decision tree that routes to the right reference: ref/local.md for local Docker-backed Postgres development (start, psql client, .env wiring, lifecycle) and ref/cloud.md for managed ClickHouse Cloud Postgres services (beta) — authentication, service creation, connections and TLS, runtime configuration, read replicas, failover, and point-in-time restore. The local workflow hands off to cloud when going to production.

Location: skills/infra-postgres/

For agents: The skill activates when a user wants to set up a local Postgres for development, connect an application to Postgres, or create and manage a managed Postgres service in ClickHouse Cloud.

ClickStack OTel Collector

Step-by-step workflow for wiring an OpenTelemetry collector into a Managed ClickStack service on ClickHouse Cloud. Covers deploying a new local collector (Docker run or Docker Compose) or configuring an existing collector, creating a dedicated ingest SQL user, sending rich synthetic telemetry, and verifying the data is visible in ClickStack.

Location: skills/clickstack-otel-collector/

For agents: The skill activates when a user wants to connect an OpenTelemetry collector to a Managed ClickStack service, send telemetry (logs, traces, metrics) into ClickStack, or verify their observability data pipeline end-to-end.

Quick Start

After installation, your AI agent will reference these skills when:

  • Creating new tables with CREATE TABLE
  • Choosing ORDER BY / PRIMARY KEY columns
  • Selecting data types for columns
  • Optimizing slow queries
  • Writing or tuning JOINs
  • Designing data ingestion pipelines
  • Handling updates or deletes
  • Analyzing data with pandas-style DataStore API
  • Querying files or databases with chdb SQL
  • Joining data across different sources (MySQL + S3 + local files)
  • Setting up a local ClickHouse development environment or deploying to ClickHouse Cloud with clickhousectl
  • Setting up a local Postgres or a managed ClickHouse Cloud Postgres service with clickhousectl
  • Wiring an OpenTelemetry collector into Managed ClickStack

Example prompts:

"Create a table for storing user events with fields for user_id, event_type, properties (JSON), and timestamp"

The agent will apply relevant ClickHouse best practices rules.

"Load this Parquet file and group by country, show top 10 by revenue"

The agent will use chdb DataStore or SQL to query the file directly.

"Join my MySQL customers table with this local orders.parquet file"

The agent will use chdb's cross-source join capabilities.

Supported Agents

Skills are agent-agnostic—the same skill works across all supported AI coding assistants:

AgentConfig Directory
Claude Code.claude/skills/
Cursor.cursor/skills/
Windsurf.windsurf/skills/
GitHub Copilot.github/skills/
Gemini CLI.gemini/skills/
Cline.cline/skills/
Codex.codex/skills/
Goose.goose/skills/
Roo Code.roo/skills/
OpenHands.openhands/skills/

And 13 more including Amp, Kiro CLI, Trae, Zencoder, and others.

The installer detects which agents you have by checking for their configuration directories. If an agent isn't listed, either install it first or create its config directory manually (e.g., mkdir -p ~/.cursor).

License

Apache 2.0 — see LICENSE for details.

Rendered live from clickhouse/agent-skills's GitHub README — not stored, always reflects the source repo.

8 Plugins

NameDescriptionCategorySource
clickhouse-best-practices28 best practice rules for ClickHouse schema design, query optimization, and data ingestion — prioritized by impactdatabase./
clickhouse-architecture-advisorWorkload-aware architecture decision skill for ClickHouse — ingestion strategies, partitioning, enrichment, upsert patterns, and pre-aggregation with explicit official/derived/field provenancedatabase./skills/clickhouse-architecture-advisor/
clickhouse-js-node-troubleshootingTroubleshooting guide for the ClickHouse Node.js client (@clickhouse/client) — socket hang-up/ECONNRESET, Keep-Alive, data type mismatches, read-only users, proxy/pathname URLs, TLS, compression, logging, and query parametersdatabase./skills/clickhouse-js-node-troubleshooting/
chdb-datastorePandas-compatible DataStore API for chDB — same pandas API backed by ClickHouse for 10-100x faster filter/group/aggregate/join, with built-in readers for S3, MySQL, PostgreSQL, MongoDB, ClickHouse Cloud, Iceberg, and Delta Lake and cross-source DataFrame joinsdatabase./skills/chdb-datastore/
chdb-sqlEmbedded ClickHouse SQL engine for Python via chDB — run analytical SQL on parquet/csv/json files, URLs, S3, and remote databases (Postgres, MySQL, MongoDB, ClickHouse Cloud, Iceberg, Delta Lake) with Session for stateful pipelines, parametrized queries, UDFs, and cross-source joinsdatabase./skills/chdb-sql/
infra-clickhouseLocal and cloud workflows for running ClickHouse with clickhousectl — local development (install ClickHouse, start a server, create schemas, seed data) and ClickHouse Cloud deployment (authenticate, create a service, migrate schemas, connect an application), with a decision tree routing between themdatabase./skills/infra-clickhouse/
infra-postgresLocal and cloud workflows for running Postgres with clickhousectl — local Docker-backed Postgres for development (start, psql client, .env wiring, lifecycle) and managed ClickHouse Cloud Postgres services, beta (authentication, service creation, connections and TLS, runtime config, read replicas, failover, point-in-time restore), with a decision tree routing between themdatabase./skills/infra-postgres/
clickstack-otel-collectorStep-by-step workflow for wiring an OpenTelemetry collector into a Managed ClickStack service on ClickHouse Cloud — deploying a new local collector or configuring an existing one, creating a dedicated ingest user, sending synthetic telemetry, and verifying it in ClickStackdatabase./skills/clickstack-otel-collector/

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.