원클릭으로
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: