analytical-data-ops

analytical-data-ops is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 19 tokens per session (479 once invoked), scanned A, original, Apache-2.0.

A set of patterns for storing and querying analytics data in ClickHouse, a column-oriented database designed for large-scale analysis. It also covers data-ingestion pipelines and precomputed summaries.

In plain words
What is it for?
Use it to design ClickHouse tables, choose partitioning and ordering, optimize filters and aggregates, batch inserts, and create materialized views for ongoing summaries.
Why use it?
It helps avoid slow queries, excessive database work, and inefficient row-by-row data loading.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to design ClickHouse tables, choose partitioning and ordering, optimize filters and aggregates, batch inserts, and create materialized views for ongoing summaries.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jxoesneon/ciel/analytical-data-ops
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jxoesneon/Ciel --skill analytical-data-ops
Clone the repo
git clone --depth 1 https://github.com/jxoesneon/Ciel

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for analytical-data-ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/jxoesneon/ciel/analytical-data-ops.svg)](https://agentmods.dev/skills/jxoesneon/ciel/analytical-data-ops)
Your own site
<a href="https://agentmods.dev/skills/jxoesneon/ciel/analytical-data-ops"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/analytical-data-ops.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 479 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00019 $0.00479
Opus 5 $0.00010 $0.00239
Sonnet 5 $0.00004 $0.00096
Haiku 4.5 $0.00002 $0.00048

Measured 7d ago against content hash 51770065db39, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

analytical-data-ops scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/analytical-data-ops/SKILL.md · 49 lines

What it actually says

CIEL ADAPTATION: Analytical Data Ops (ClickHouse & Pipelines)

This skill formalizes high-performance analytics. it prioritizes column-oriented efficiency and real-time pre-aggregation.

Table Design (MergeTree)

  1. Engines: Default to MergeTree. Use ReplacingMergeTree for deduplication; AggregatingMergeTree for pre-computed stats.
  2. Partitioning: Partition by time (e.g., toYYYYMM(date)). Avoid excessive partitions (> 1000).
  3. Ordering Key: Put frequently filtered, high-cardinality columns first.

Query Optimization

  • Indexed Filter: Use primary key columns first in WHERE clauses.
  • Aggregate Merge: Use sumMerge, countMerge, etc., when querying AggregatingMergeTree tables.
  • Quantiles: Use quantile(0.95)(value) for efficient percentile calculation.

Ingestion Pipelines

  • Batch Mandate: NEVER perform individual INSERT in a loop. Batch 1000+ rows per request.
  • Materialized Views: Use CREATE MATERIALIZED VIEW ... TO table for real-time aggregation.

Anti-Patterns

  • SELECT *: Reading every column in an OLAP database (causes massive I/O bloat).
  • Too Many Joins: Performing complex joins on large tables. Denormalize early for analytics.
  • Small Inserts: Frequent, low-row inserts causing background merge overload.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 49 lines · 19 tokens per session scan A 51770065db39

Subscribe to this mod's changes

analytical-data-ops is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed today), licensed Apache-2.0. It adds 19 tokens to every session and 479 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

backend-patterns

Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.

Kacper0199/Opencode-Ultrathinker · 31 tokens

clickhouse-io

ClickHouse database patterns, query optimization, analytics, and data engineering best practices for high-performance analytical workloads.

Kacper0199/Opencode-Ultrathinker · 26 tokens

mongodb-schema-design

MongoDB schema design patterns and anti-patterns. Use when designing data models, reviewing schemas, migrating from SQL, or troubleshooting performance issues caused by schema problems. Triggers on "design schema", "embed vs reference", "MongoDB data model", "schema review", "unbounded arrays", "one-to-many", "tree…

fcakyon/claude-codex-settings · 127 tokens

neo4j-snowflake-graph-analytics-skill

Run Neo4j Graph Analytics algorithms (PageRank, Louvain, WCC, Dijkstra, KNN, Node2Vec, FastRP, GraphSAGE) directly inside Snowflake without moving data. Use when running graph algorithms against Snowflake tables via the Neo4j Snowflake Native App ("GDS Snowflake", "graph algorithms in Snowflake", "Neo4j Graph…

neo4j-contrib/neo4j-skills · 222 tokens

neo4j-aura-graph-analytics-skill

Serverless Aura Graph Analytics (AGA) GDS Sessions — covers GdsSessions, AuraGraphDataScience, AuraAPICredentials, DbmsConnectionInfo, SessionMemory, getorcreate, remote graph projection with gds.v2.graph.project and gds.graph.project.remote, gds.v2 session endpoints, gds.v2.graph.construct, AuraDB Cypher API…

neo4j-contrib/neo4j-skills · 189 tokens

neo4j-driver-python-skill

Neo4j Python Driver v6 — driver lifecycle, executequery, managed and explicit transactions, async (AsyncGraphDatabase), result handling, data type mapping, error handling, UNWIND batching, connection pool tuning, and causal consistency. Use when writing Python code that connects to Neo4j via GraphDatabase.driver…

neo4j-contrib/neo4j-skills · 186 tokens