بنقرة واحدة
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: