data-engineering

Installation
SKILL.md

Data Engineering & Analytics Skill

Quick Start - SQL Data Pipeline

-- Create staging table
CREATE TABLE staging_events AS
SELECT 
  event_id,
  user_id,
  event_type,
  event_time,
  properties
FROM raw_events
WHERE event_time >= CURRENT_DATE - INTERVAL '1 day'
AND event_type IN ('click', 'purchase', 'view');
Installs
6
GitHub Stars
1
First Seen
Jan 29, 2026
data-engineering — pluginagentmarketplace/custom-plugin-typescript