Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
clickhouse avatar

Clickhouse Best Practices

  • 9k installs
  • 510 repo stars
  • Updated August 2, 2026
  • clickhouse/agent-skills

clickhouse-best-practices is an official ClickHouse Inc skill with thirty-one rules agents must check when reviewing schemas, queries, inserts, or agent connectivity.

About

ClickHouse Best Practices is official ClickHouse Inc guidance with thirty-one prioritized rules across schema design, query optimization, data ingestion, and AI agent connectivity. Agents must read applicable rule files before answering and cite them as Per rule-name, because columnar storage, sparse indexes, and MergeTree mechanics differ from general database intuition. Schema reviews check ORDER BY immutability, cardinality ordering, filter column inclusion, native types, LowCardinality strings, Nullable avoidance, and partition lifecycle limits. Query reviews cover JOIN algorithm selection, pre-join filtering, ANY JOIN usage, skipping indices, and ORDER BY filter alignment. Insert reviews enforce ten to one hundred thousand row batches, async inserts for small batches, ReplacingMergeTree over frequent UPDATE, and avoiding OPTIMIZE TABLE abuse. Agent workflows require MCP or CLI connection, seven-step schema discovery, and LIMIT plus timeout safe querying. Responses use a Rules Checked, Findings, and Recommendations structure with violations, compliant notes, and prioritized fixes.

  • Thirty-one ClickHouse-specific rules across schema, query, insert, and agent categories.
  • Agents must read rules/ files and cite Per rule-name before recommendations.
  • Schema review covers ORDER BY planning, types, LowCardinality, partitions, and Nullable avoidance.
  • Query and JOIN guidance includes filter-before-join, algorithm choice, and skipping indices.
  • Agent connectivity workflow covers MCP or CLI setup, schema discovery, and query safety limits.

Clickhouse Best Practices by the numbers

  • 9,022 all-time installs (skills.sh)
  • +1,041 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #17 of 911 Databases skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

clickhouse-best-practices capabilities & compatibility

Capabilities
audit create table and alter table against prima · review select, join, and aggregation queries for · evaluate insert batching, async inserts, and mut · guide seven step agent schema discovery before e · enforce limit, timeouts, and progressive explora · structure findings as rules checked, violations,
Works with
docker
Use cases
database · api development · debugging · code review
Platforms
macOS · Windows · Linux
Runs
Local or remote
Pricing
Free
From the docs

What clickhouse-best-practices says it does

Contains 31 rules across 4 main categories (schema, query, insert, agent), prioritized by impact.
SKILL.md
npx skills add https://github.com/clickhouse/agent-skills --skill clickhouse-best-practices

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs9k
repo stars510
Security audit2 / 3 scanners passed
Last updatedAugust 2, 2026
Repositoryclickhouse/agent-skills

What it does

Review ClickHouse schemas, queries, inserts, and agent connectivity against thirty-one official rules before giving recommendations.

Who is it for?

Developers and agents reviewing CREATE TABLE statements, slow queries, JOIN plans, ingestion batches, or ClickHouse MCP workflows.

Skip if: Skip when the datastore is not ClickHouse or when no rule applies and general documentation search is explicitly sufficient.

When should I use this skill?

User reviews ClickHouse schemas, queries, configurations, ingestion strategy, ReplacingMergeTree usage, or agent connection and discovery steps.

What you get

Reviews return cited rule compliance, violations with fixes, and prioritized recommendations using the documented output format.

  • Optimized DDL patterns
  • Query rewrite guidance
  • Materialized view designs

By the numbers

  • [object Object]
  • [object Object]

Files

SKILL.mdMarkdownGitHub ↗

ClickHouse Best Practices

Comprehensive guidance for ClickHouse covering schema design, query optimization, data ingestion, and AI agent connectivity. Contains 31 rules across 4 main categories (schema, query, insert, agent), prioritized by impact.

Official docs: ClickHouse Best Practices

IMPORTANT: How to Apply This Skill

Before answering ClickHouse questions, follow this priority order:

1. Check for applicable rules in the rules/ directory 2. If rules exist: Apply them and cite them in your response using "Per rule-name..." 3. If no rule exists: Use the LLM's ClickHouse knowledge or search documentation 4. If uncertain: Use web search for current best practices 5. Always cite your source: rule name, "general ClickHouse guidance", or URL

Why rules take priority: ClickHouse has specific behaviors (columnar storage, sparse indexes, merge tree mechanics) where general database intuition can be misleading. The rules encode validated, ClickHouse-specific guidance.

---

Agent Connectivity & Query Workflow

Before querying ClickHouse, agents must establish a connection and follow the discovery workflow:

1. rules/agent-connect-mcp.md - Connection setup (MCP + CLI), credential discovery, output format selection 2. rules/agent-discovery-schema.md - CRITICAL: 7-step schema discovery workflow 3. rules/agent-query-safety.md - CRITICAL: LIMIT, timeouts, progressive exploration

Every agent session should follow this sequence:

1. Connect — establish connection via MCP or CLI (see agent-connect-mcp) 2. Discover — databases → tables → columns + comments → sort keys → skip indexes → sample → EXPLAIN 3. Plan — use sort key and skip index knowledge to write efficient WHERE clauses 4. Execute — run queries with LIMIT and timeouts 5. Recover — on timeout/memory errors, narrow filters and retry (see agent-query-safety)

Subagent architecture notes

If your system dispatches ClickHouse tasks to specialized subagents:

  • Schema discovery + query execution: any model — the steps are procedural
  • EXPLAIN analysis + query optimization: benefits from mid-tier reasoning
  • Schema design review against all 28 rules: benefits from mid-tier reasoning

---

Review Procedures

For Schema Reviews (CREATE TABLE, ALTER TABLE)

Read these rule files in order:

1. rules/schema-pk-plan-before-creation.md - ORDER BY is immutable 2. rules/schema-pk-cardinality-order.md - Column ordering in keys 3. rules/schema-pk-prioritize-filters.md - Filter column inclusion 4. rules/schema-types-native-types.md - Proper type selection 5. rules/schema-types-minimize-bitwidth.md - Numeric type sizing 6. rules/schema-types-lowcardinality.md - LowCardinality usage 7. rules/schema-types-avoid-nullable.md - Nullable vs DEFAULT 8. rules/schema-partition-low-cardinality.md - Partition count limits 9. rules/schema-partition-lifecycle.md - Partitioning purpose

Check for:

  • [ ] PRIMARY KEY / ORDER BY column order (low-to-high cardinality)
  • [ ] Data types match actual data ranges
  • [ ] LowCardinality applied to appropriate string columns
  • [ ] Partition key cardinality bounded (100-1,000 values)
  • [ ] ReplacingMergeTree has version column if used

For Query Reviews (SELECT, JOIN, aggregations)

Read these rule files:

1. rules/query-join-choose-algorithm.md - Algorithm selection 2. rules/query-join-filter-before.md - Pre-join filtering 3. rules/query-join-use-any.md - ANY vs regular JOIN 4. rules/query-index-skipping-indices.md - Secondary index usage 5. rules/schema-pk-filter-on-orderby.md - Filter alignment with ORDER BY

Check for:

  • [ ] Filters use ORDER BY prefix columns
  • [ ] JOINs filter tables before joining (not after)
  • [ ] Correct JOIN algorithm for table sizes
  • [ ] Skipping indices for non-ORDER BY filter columns

For Insert Strategy Reviews (data ingestion, updates, deletes)

Read these rule files:

1. rules/insert-batch-size.md - Batch sizing requirements 2. rules/insert-mutation-avoid-update.md - UPDATE alternatives 3. rules/insert-mutation-avoid-delete.md - DELETE alternatives 4. rules/insert-async-small-batches.md - Async insert usage 5. rules/insert-optimize-avoid-final.md - OPTIMIZE TABLE risks

Check for:

  • [ ] Batch size 10K-100K rows per INSERT
  • [ ] No ALTER TABLE UPDATE for frequent changes
  • [ ] ReplacingMergeTree or CollapsingMergeTree for update patterns
  • [ ] Async inserts enabled for high-frequency small batches

---

Output Format

Structure your response as follows:

## Rules Checked
- `rule-name-1` - Compliant / Violation found
- `rule-name-2` - Compliant / Violation found
...

## Findings

### Violations
- **`rule-name`**: Description of the issue
  - Current: [what the code does]
  - Required: [what it should do]
  - Fix: [specific correction]

### Compliant
- `rule-name`: Brief note on why it's correct

## Recommendations
[Prioritized list of changes, citing rules]

---

Rule Categories by Priority

PriorityCategoryImpactPrefixRule Count
1Primary Key SelectionCRITICALschema-pk-4
2Data Type SelectionCRITICALschema-types-5
3JOIN OptimizationCRITICALquery-join-5
4Insert BatchingCRITICALinsert-batch-1
5Mutation AvoidanceCRITICALinsert-mutation-2
6Partitioning StrategyHIGHschema-partition-4
7Skipping IndicesHIGHquery-index-1
8Materialized ViewsHIGHquery-mv-2
9Async InsertsHIGHinsert-async-2
10OPTIMIZE AvoidanceHIGHinsert-optimize-1
11JSON UsageMEDIUMschema-json-1
12Agent Schema DiscoveryCRITICALagent-discovery-1
13Agent Query SafetyCRITICALagent-query-1
14Agent Connectivity + FormatsHIGHagent-connect-1

---

Quick Reference

Schema Design - Primary Key (CRITICAL)

  • schema-pk-plan-before-creation - Plan ORDER BY before table creation (immutable)
  • schema-pk-cardinality-order - Order columns low-to-high cardinality
  • schema-pk-prioritize-filters - Include frequently filtered columns
  • schema-pk-filter-on-orderby - Query filters must use ORDER BY prefix

Schema Design - Data Types (CRITICAL)

  • schema-types-native-types - Use native types, not String for everything
  • schema-types-minimize-bitwidth - Use smallest numeric type that fits
  • schema-types-lowcardinality - LowCardinality for <10K unique strings
  • schema-types-enum - Enum for finite value sets with validation
  • schema-types-avoid-nullable - Avoid Nullable; use DEFAULT instead

Schema Design - Partitioning (HIGH)

  • schema-partition-low-cardinality - Keep partition count 100-1,000
  • schema-partition-lifecycle - Use partitioning for data lifecycle, not queries
  • schema-partition-query-tradeoffs - Understand partition pruning trade-offs
  • schema-partition-start-without - Consider starting without partitioning

Schema Design - JSON (MEDIUM)

  • schema-json-when-to-use - JSON for dynamic schemas; typed columns for known

Query Optimization - JOINs (CRITICAL)

  • query-join-choose-algorithm - Select algorithm based on table sizes
  • query-join-use-any - ANY JOIN when only one match needed
  • query-join-filter-before - Filter tables before joining
  • query-join-consider-alternatives - Dictionaries/denormalization vs JOIN
  • query-join-null-handling - join_use_nulls=0 for default values

Query Optimization - Indices (HIGH)

  • query-index-skipping-indices - Skipping indices for non-ORDER BY filters

Query Optimization - Materialized Views (HIGH)

  • query-mv-incremental - Incremental MVs for real-time aggregations
  • query-mv-refreshable - Refreshable MVs for complex joins

Insert Strategy - Batching (CRITICAL)

  • insert-batch-size - Batch 10K-100K rows per INSERT

Insert Strategy - Async (HIGH)

  • insert-async-small-batches - Async inserts for high-frequency small batches
  • insert-format-native - Native format for best performance

Insert Strategy - Mutations (CRITICAL)

  • insert-mutation-avoid-update - ReplacingMergeTree instead of ALTER UPDATE
  • insert-mutation-avoid-delete - Lightweight DELETE or DROP PARTITION

Insert Strategy - Optimization (HIGH)

  • insert-optimize-avoid-final - Let background merges work

Agent Integration - Discovery (CRITICAL)

  • agent-discovery-schema - Always discover schema before querying

Agent Integration - Safety (CRITICAL)

  • agent-query-safety - LIMIT, timeouts, progressive exploration

Agent Integration - Connectivity + Formats (HIGH)

  • agent-connect-mcp - MCP + CLI setup, credential discovery, output format selection

---

When to Apply

This skill activates when you encounter:

  • AI agent connecting to ClickHouse (MCP, CLI, HTTP)
  • Agent workflow design for ClickHouse
  • Schema discovery or exploration requests
  • CREATE TABLE statements
  • ALTER TABLE modifications
  • ORDER BY or PRIMARY KEY discussions
  • Data type selection questions
  • Slow query troubleshooting
  • JOIN optimization requests
  • Data ingestion pipeline design
  • Update/delete strategy questions
  • ReplacingMergeTree or other specialized engine usage
  • Partitioning strategy decisions

---

Rule File Structure

Each rule file in rules/ contains:

  • YAML frontmatter: title, impact level, tags
  • Brief explanation: Why this rule matters
  • Incorrect example: Anti-pattern with explanation
  • Correct example: Best practice with explanation
  • Additional context: Trade-offs, when to apply, references

---

Full Compiled Document

For the complete guide with all rules expanded inline: AGENTS.md

Use AGENTS.md when you need to check multiple rules quickly without reading individual files.

Related skills

Forks & variants (1)

Clickhouse Best Practices has 1 known copy in the catalog totaling 4 installs. They canonicalize to this original listing.

How it compares

Use clickhouse-best-practices for ClickHouse-specific OLAP rules; use generic SQL skills for portable relational design only.

FAQ

How many rules does this skill contain?

Comprehensive guidance covers schema design, query optimization, data ingestion, and AI agent connectivity with thirty-one rules across four main categories.

Must agents cite rules in responses?

Yes. Before answering ClickHouse questions, check applicable rules in rules/ and cite them in responses using Per rule-name when rules exist.

What agent workflow should run before querying?

Connect via MCP or CLI, discover databases tables columns and sort keys, plan filters on ORDER BY prefixes, execute with LIMIT and timeouts, then recover on errors.

Is Clickhouse Best Practices safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Databasesdatabasesanalytics

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.