Claude Skill
ClickHouse/agent-skills
ClickHouse 与 ClickHouse Cloud 的官方 Claude Skill 仓库。使用基于 JavaScript 的工具构建与数据库交互的 AI 代理。
概览
仓库信息
安装这个 Skill
npx skills add clickhouse/agent-skillsRegistry 信息
项目简介
ClickHouse 与 ClickHouse Cloud 的官方 Claude Skill 仓库,提供与这些数据库平台交互的代理能力。
The official Agent Skills for ClickHouse and ClickHouse Cloud
要点
- 官方 ClickHouse 集成
- 专为 ClickHouse Cloud 设计
- 代理框架实现
- 基于 JavaScript 开发
使用场景
- 构建 ClickHouse AI 代理
- 云数据库自动化
- 查询执行与管理
- 数据库监控代理
README 摘要
# ClickHouse Agent Skills The official Agent Skills for [ClickHouse](https://clickhouse.com/). These skills help LLMs and agents to adopt best practices when working with ClickHouse and [chdb](https://clickhouse.com/docs/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](https://clickhouse.com/cloud?utm_medium=github&utm_source=github&utm_ref=agent-skills). ## Installation ### npx ```bash 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`](https://github.com/ClickHouse/clickhousectl) to install the agent skills: ```bash 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](https://agentskills.io). ## Available Skills ### ClickHouse Best Practices **28 rules** covering schema design, query optimization, and data ingestion—prioritized by impact. | Category | Rules | Impact | |----------|-------|--------| | Primary Key Selection | 4 | CRITICAL | | Data Type Selection | 5 | CRITICAL | | JOIN Optimization | 5 | CRITICAL | | Insert Batching | 1 | CRI