.claude/skills/ts-airbyte/SKILL.md
You are an expert in Airbyte, the open-source data integration platform with 300+ pre-built connectors. You help developers sync data from SaaS tools, databases, and APIs into data warehouses and lakes — handling incremental syncs, CDC (Change Data Capture), schema evolution, and error recovery for production data pipelines.
npx skillsauth add eliferjunior/Claude airbyteInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an expert in Airbyte, the open-source data integration platform with 300+ pre-built connectors. You help developers sync data from SaaS tools, databases, and APIs into data warehouses and lakes — handling incremental syncs, CDC (Change Data Capture), schema evolution, and error recovery for production data pipelines.
# Docker Compose (recommended for small-medium)
git clone https://github.com/airbytehq/airbyte.git
cd airbyte && ./run-ab-platform.sh
# UI at http://localhost:8000
# Kubernetes (production)
helm repo add airbyte https://airbytehq.github.io/helm-charts
helm install airbyte airbyte/airbyte -n airbyte --create-namespace
# Cloud: https://cloud.airbyte.com (managed)
# Create connections programmatically via Airbyte API
import requests
AIRBYTE_API = "http://localhost:8000/api/v1"
# Create a Stripe source
source = requests.post(f"{AIRBYTE_API}/sources/create", json={
"workspaceId": workspace_id,
"name": "Stripe Production",
"sourceDefinitionId": "e094cb9a-26de-4645-8761-65c0c425d1de", # Stripe
"connectionConfiguration": {
"account_id": "acct_xxx",
"client_secret": os.environ["STRIPE_SECRET_KEY"],
"start_date": "2025-01-01T00:00:00Z",
},
}).json()
# Create a BigQuery destination
destination = requests.post(f"{AIRBYTE_API}/destinations/create", json={
"workspaceId": workspace_id,
"name": "BigQuery Warehouse",
"destinationDefinitionId": "22f6c74f-5699-40ff-833c-4a879ea40133",
"connectionConfiguration": {
"project_id": "my-project",
"dataset_id": "raw_stripe",
"credentials_json": os.environ["GCP_CREDENTIALS"],
"loading_method": {"method": "GCS Staging", "gcs_bucket_name": "airbyte-staging"},
},
}).json()
# Create connection (source → destination)
connection = requests.post(f"{AIRBYTE_API}/connections/create", json={
"sourceId": source["sourceId"],
"destinationId": destination["destinationId"],
"syncCatalog": {
"streams": [
{
"stream": {"name": "subscriptions", "namespace": "stripe"},
"config": {
"syncMode": "incremental",
"destinationSyncMode": "append_dedup",
"cursorField": ["created"],
"primaryKey": [["id"]],
},
},
],
},
"schedule": {"scheduleType": "cron", "cronExpression": "0 */2 * * * ?"},
"namespaceFormat": "raw_${SOURCE_NAMESPACE}",
}).json()
# Build a custom source connector with Airbyte CDK
from airbyte_cdk.sources import AbstractSource
from airbyte_cdk.sources.streams import Stream
from airbyte_cdk.sources.streams.http import HttpStream
class InternalAPIStream(HttpStream):
url_base = "https://api.internal.company.com/v1/"
primary_key = "id"
cursor_field = "updated_at"
def path(self, **kwargs) -> str:
return "events"
def parse_response(self, response, **kwargs):
for record in response.json()["data"]:
yield record
class Source(AbstractSource):
def check_connection(self, logger, config):
# Verify API credentials work
return True, None
def streams(self, config):
return [InternalAPIStream(authenticator=self.get_auth(config))]
# Docker Compose
curl -o docker-compose.yaml https://raw.githubusercontent.com/airbytehq/airbyte/master/docker-compose.yaml
docker compose up -d
# Python CDK for custom connectors
pip install airbyte-cdk
auto_propagation in connection settingsraw_${SOURCE} namespace pattern; keeps raw data organized before dbt transformsdevelopment
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.