klaviyo-core-workflow-a

Featured

Execute Klaviyo primary workflow: profiles, lists, and subscriptions. Use when creating/updating profiles, managing lists, subscribing contacts, or syncing customer data to Klaviyo for email/SMS marketing. Trigger with phrases like "klaviyo profiles", "klaviyo lists", "klaviyo subscribe", "add contacts to klaviyo", "klaviyo customer data".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Klaviyo Core Workflow A -- Profiles, Lists & Subscriptions ## Overview Primary money-path workflow: create/update profiles, manage lists, and subscribe contacts for email and SMS marketing via the `klaviyo-api` SDK. ## Prerequisites - Completed `klaviyo-install-auth` setup - API key with scopes: `profiles:read`, `profiles:write`, `lists:read`, `lists:write` ## Instructions ### Step 1: Create or Update a Profile ```typescript import { ApiKeySession, ProfilesApi, ProfileEnum } from 'klaviyo-api'; const session = new ApiKeySession(process.env.KLAVIYO_PRIVATE_KEY!); const profilesApi = new ProfilesApi(session); // Create a new profile (409 if email already exists) const newProfile = await profilesApi.createProfile({ data: { type: ProfileEnum.Profile, attributes: { email: 'customer@example.com', firstName: 'Jane', lastName: 'Doe', phoneNumber: '+15551234567', location: { city: 'Atlanta', region: 'GA', country: 'US', zip: '30309', }, properties: { plan: 'pro', signupSource: 'website', lifetime_value: 250.00, }, }, }, }); console.log('Profile ID:', newProfile.body.data.id); // Create OR update (upsert) -- preferred for syncing const upserted = await profilesApi.createOrUpdateProfile({ data: { type: ProfileEnum.Profile, attributes: { email: 'customer@example.com', firstName: 'Jane', lastName: 'Doe-Smith', // Updated last name...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

klaviyo-core-workflow-b

Execute Klaviyo secondary workflow: event tracking, segments, and campaigns. Use when tracking customer events, creating segments, building campaigns, or triggering flows via the Klaviyo API. Trigger with phrases like "klaviyo events", "klaviyo segments", "klaviyo campaigns", "track klaviyo event", "klaviyo flow trigger".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-hello-world

Create a minimal working Klaviyo example with real API calls. Use when starting a new Klaviyo integration, testing your setup, or learning basic profile creation and event tracking patterns. Trigger with phrases like "klaviyo hello world", "klaviyo example", "klaviyo quick start", "simple klaviyo code", "first klaviyo call".

2,266 Updated today
jeremylongshore
AI & Automation Featured

linktree-core-workflow-a

Execute Linktree primary workflow: Profile & Links Management. Trigger: "linktree profile & links management", "primary linktree workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-core-workflow-b

Build HubSpot marketing automation with emails, forms, lists, and tickets. Use when implementing marketing email campaigns, form submissions, contact list management, or support ticket workflows. Trigger with phrases like "hubspot marketing", "hubspot email campaign", "hubspot forms", "hubspot lists", "hubspot tickets", "hubspot automation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-core-workflow-b

Implement Apollo.io email sequences and outreach workflow. Use when building automated email campaigns, creating sequences, or managing outreach through Apollo. Trigger with phrases like "apollo email sequence", "apollo outreach", "apollo campaign", "apollo sequences", "apollo automated emails".

2,266 Updated today
jeremylongshore