data-engineer

data-engineer is a skill for Claude Code from k1lgor/virtual-company. It costs 30 tokens per session (3,179 once invoked), scanned A, original, MIT.

A set of instructions for database and data-pipeline work, including schemas, SQL queries, ETL, and data transformations. ETL means extracting data, changing it, and loading it elsewhere.

In plain words
What is it for?
Use it when designing schemas, writing or optimizing SQL, creating migrations, or building and checking Pandas ETL pipelines.
Why use it?
It requires data checks during each pipeline stage, helping expose corruption or invalid results before they spread.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the virtual-company plugin — 27 skills, 1 command, 6 agents, 3 hooks shipped together

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.

agentmods
npx agentmods add skills/k1lgor/virtual-company/11-data-engineer
Any agent
npx skills add k1lgor/virtual-company --skill 11-data-engineer
Clone the repo
git clone --depth 1 https://github.com/k1lgor/virtual-company

Made for: Claude Code.

Or install virtual-company, the plugin that ships this one along with the rest of its 27 skills, 1 command, 6 agents, 3 hooks.

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 data-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/k1lgor/virtual-company/11-data-engineer.svg)](https://agentmods.dev/skills/k1lgor/virtual-company/11-data-engineer)
Your own site
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/11-data-engineer"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/11-data-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,179 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00030 $0.03179
Opus 5 $0.00015 $0.01589
Sonnet 5 $0.00006 $0.00636
Haiku 4.5 $0.00003 $0.00318

Measured 6d ago against content hash 309e20cbed59, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

data-engineer 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 6d 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/11-data-engineer/SKILL.md · 330 lines

How it starts

The opening of the file, as written. The whole thing — 330 lines — stays where its author put it; the contents beside it link to each section on GitHub.

📊 Data Engineer / Architect

You are the Lead Data Engineer. You handle data with precision, focusing on normalization, query performance, and the design of robust data pipelines.

🛑 The Iron Law

NO PIPELINE WITHOUT DATA VALIDATION AT EVERY STAGE

Every ETL pipeline must validate data at extraction, transformation, AND loading. Silent data corruption is worse than a crash — at least a crash is visible.

🛠️ Tool Guidance

  • Context Audit: Use Read to audit existing schemas or model definitions (Prisma, SQLAlchemy).
  • Discovery: Use Grep to find every instance of a table name in query logic.
  • Implementation: Use Edit to generate SQL migrations or ETL scripts.
  • Verification: Use Bash to run migrations and validate schemas.

📍 When to Apply

  • "Write a complex SQL query to find..."
  • "Design the database schema for our new feature."
  • "Optimize this slow dataset transformation."
  • "Set up a Python (Pandas) ETL pipeline."

Decision Tree: Data Engineering Flow

graph TD
    A[Data Task] --> B{Schema change or query/pipeline?}
    B -->|Schema| C{New table or alter existing?}
    B -->|Query/Pipeline| D{Data volume?}
    C -->|New table| E[Design with normalization]
    C -->|Alter| F{Backwards compatible?}
    F -->|Yes| G[Write migration]
    F -->|No| H[Plan zero-downtime migration]
    D -->|< 1M rows| I[Direct query is fine]
    D -->|> 1M rows| J[Add indexes, use CTEs, paginate]
    E --> K[Validate schema: types, constraints, indexes]
    G --> K
    H --> K
    I --> L[Validate query on sample data]
    J --> L
    K --> M{Schema valid?}
    M -->|No| N[Fix schema issues]
    N --> K
    M -->|Yes| O[Write rollback migration]
    L --> P{Results correct?}
    P -->|No| Q[Debug query logic]
    Q --> L
    P -->|Yes| R[✅ Task complete]
    O --> R

Read the full file on GitHub · 330 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 330 lines · 30 tokens per session scan A 309e20cbed59

Subscribe to this mod's changes

data-engineer is a skill published in the GitHub repository k1lgor/virtual-company (3 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 3,179 once invoked, about $0.0002 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

bigquery-ai-ml

Skill for BigQuery AI and Machine Learning queries using standard SQL and AI. functions (preferred over dedicated tools).

google/adk-python · 31 tokens

byted-bytehouse-hybrid-search

ByteHouse 混合检索 Skill,支持全文检索 + 向量检索,结合 RRF 重排算法实现更精准的检索结果。当用户需要在ByteHouse数据库中进行全文检索 + 向量检索,结合 RRF 重排算法实现更精准的检索结果时,使用此Skill。.

bytedance/agentkit-samples · 79 tokens

byted-milvus

Manages Milvus on Volcano Engine (Volcengine): provision/inspect/scale/delete clusters and run collection + CRUD/search operations via bundled CLIs. Use when the user mentions Milvus + Volcengine/Volcano Engine or asks to operate Milvus there.

bytedance/agentkit-samples · 60 tokens

cloudflare-vectorize

Cloudflare Vectorize vector database for semantic search and RAG. Use for vector indexes, embeddings, similarity search, or encountering dimension mismatches, filter errors.

secondsky/claude-skills · 37 tokens

byted-bytehouse-ai-query

ByteHouse AI 查询技能,提供自然语言转 SQL(Text2SQL)、SQL 执行、库表结构查询、多模态向量化和向量检索等能力,覆盖 ByteHouse 云数仓的日常查询、SQL 生成与执行场景。当用户提到 "ByteHouse"、"查表"、"查数据"、"Text2SQL"、"自然语言查询"、"列出数据库"、"列出表"、"执行 SQL"、"生成 SQL"、"多模态检索" 等诉求,或者需要基于 ByteHouse 完成上述任务时,应使用本 Skill。.

bytedance/agentkit-samples · 144 tokens

byted-bytehouse-multimodal-search

ByteHouse 多模态检索 Skill,支持文本、图片、视频的向量化存储与多模态混合检索(向量检索、以文搜图、以图搜文、混合关键词 + 向量检索)。当用户提到 "ByteHouse 向量检索"、"多模态检索"、"混合检索"、"以文搜图"、"以图搜图"、"文搜视频"、"多模态知识库"、"HNSW / 向量索引" 等诉求时使用本 Skill。.

bytedance/agentkit-samples · 141 tokens