Content Preview
# senior-data-engineer reference
## Workflows
### Workflow 1: Building a Batch ETL Pipeline
**Scenario:** Extract data from PostgreSQL, transform with dbt, load to Snowflake.
#### Step 1: Define Source Schema
```sql
-- Document source tables
SELECT
table_name,
column_name,
data_type,
is_nullable
FROM information_schema.columns
WHERE table_schema = 'source_schema'
ORDER BY table_name, ordinal_position;
```
#### Step 2: Generate Extraction Config
```bash
python scripts/pipelHow to Use
Recommended: Install to project (local)
mkdir -p .claude/skills
curl -o .claude/skills/workflows.md \
https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-data-engineer/references/workflows.mdSkill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.
Alternative: Clone full repo
git clone https://github.com/alirezarezvani/claude-skillsThen reference at engineering-team/senior-data-engineer/references/workflows.md
Related Skills
Building GitOps Workflows
This skill enables Claude to construct GitOps workflows using ArgoCD and Flux. It is designed to generate production-ready configurations, implement best practices, and ensure a security-first approach for Kubernetes deployments. Use this skill when the user explicitly requests "GitOps workflow", "A
skill-adapterbuilding gitops workflows
by jeremylongshore · plugins-plus-skills
Orchestrating Test Workflows
This skill enables Claude to orchestrate complex test workflows using the test-orchestrator plugin. It allows Claude to define test execution graphs with dependencies, execute tests in parallel, and intelligently select tests to run based on code changes. Use this skill when a user requests test orc
skill-adapterorchestrating test workflows
by jeremylongshore · plugins-plus-skills
system_design_workflows
Step-by-step workflows for common system design tasks.
engineering-teamsystemdesignworkflows
by alirezarezvani · alirezarezvani-claude-skills
development_workflows
Fullstack Development Workflows
engineering-teamdevelopmentworkflows
by alirezarezvani · alirezarezvani-claude-skills