一键导入
data-pipeline-engineering
Guide for designing, building, and maintaining reliable data pipelines
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for designing, building, and maintaining reliable data pipelines
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Schedule reminders and recurring tasks.
Two-layer memory system with grep-based recall.
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
Business process analysis and improvement. Use when mapping, analyzing, or optimizing processes.
Requirements gathering and documentation. Use when eliciting, documenting, or validating requirements.
| name | Data Pipeline Engineering |
| description | Guide for designing, building, and maintaining reliable data pipelines |
| emoji | 🔄 |
| tags | ["etl","pipelines","data-engineering","data-modeling"] |
Structure:
When to use:
Example:
Fact: sales
- sale_id
- date_id (FK)
- product_id (FK)
- customer_id (FK)
- amount
- quantity
Dimensions:
- dim_date (date_id, date, month, year, quarter)
- dim_product (product_id, name, category, price)
- dim_customer (customer_id, name, region, segment)
Structure:
When to use:
Example:
Fact: sales
- sale_id
- date_id (FK)
- product_id (FK)
- customer_id (FK)
- amount
Dimensions:
- dim_date (date_id, date, month_id)
- dim_month (month_id, month, quarter_id)
- dim_quarter (quarter_id, quarter, year)
- dim_product (product_id, name, category_id)
- dim_category (category_id, category, department_id)
Structure:
When to use:
Trade-offs:
Description: [What this table contains]
Schema: [schema_name]
Update Frequency: [How often updated]
Source: [Where data comes from]
Columns:
| Column Name | Data Type | Nullable | Description | Example | Notes |
|---|---|---|---|---|---|
| column1 | VARCHAR(255) | No | [Description] | [Example] | [Notes] |
| column2 | INTEGER | Yes | [Description] | [Example] | [Notes] |
Primary Key: [column_name(s)]
Foreign Keys:
Indexes:
Business Rules:
Data Quality Checks:
Related Tables:
Planning:
Preparation:
Steps:
Validation:
Verification:
Cleanup:
If Migration Fails: