hvac-marketing-skills/tools/clis/klaviyo.js
Corey Haines 3a85964305 feat: add 23 new CLI tools and integration guides
New tools across 13 categories:
- Email/Newsletter: beehiiv, klaviyo, postmark, brevo, activecampaign
- Data Enrichment: clearbit, apollo
- CRO/Testing: hotjar, optimizely
- Analytics: plausible
- Scheduling: calendly, savvycal
- Forms: typeform
- Messaging: intercom
- Social: buffer
- Video: wistia
- Payments: paddle
- Affiliate: partnerstack
- Reviews: trustpilot, g2
- Push: onesignal
- Webinar: demio, livestorm

Each tool includes a zero-dependency CLI and integration guide.
Registry and CLI README updated with all new entries.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 11:28:41 -08:00

344 lines
12 KiB
JavaScript
Executable file

#!/usr/bin/env node
const API_KEY = process.env.KLAVIYO_API_KEY
const BASE_URL = 'https://a.klaviyo.com/api'
const REVISION = '2024-10-15'
if (!API_KEY) {
console.error(JSON.stringify({ error: 'KLAVIYO_API_KEY environment variable required' }))
process.exit(1)
}
async function api(method, path, body) {
const res = await fetch(`${BASE_URL}${path}`, {
method,
headers: {
'Authorization': `Klaviyo-API-Key ${API_KEY}`,
'Content-Type': 'application/json',
'Accept': 'application/json',
'revision': REVISION,
},
body: body ? JSON.stringify(body) : undefined,
})
const text = await res.text()
try {
return JSON.parse(text)
} catch {
return { status: res.status, body: text }
}
}
function parseArgs(args) {
const result = { _: [] }
for (let i = 0; i < args.length; i++) {
const arg = args[i]
if (arg.startsWith('--')) {
const key = arg.slice(2)
const next = args[i + 1]
if (next && !next.startsWith('--')) {
result[key] = next
i++
} else {
result[key] = true
}
} else {
result._.push(arg)
}
}
return result
}
const args = parseArgs(process.argv.slice(2))
const [cmd, sub, ...rest] = args._
async function main() {
let result
switch (cmd) {
case 'profiles':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.filter) params.set('filter', args.filter)
if (args.sort) params.set('sort', args.sort)
if (args['page-size']) params.set('page[size]', args['page-size'])
if (args['page-cursor']) params.set('page[cursor]', args['page-cursor'])
const qs = params.toString()
result = await api('GET', `/profiles/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/profiles/${id}/`)
break
}
case 'create': {
const email = args.email
if (!email) { result = { error: '--email required' }; break }
const attributes = { email }
if (args['first-name']) attributes.first_name = args['first-name']
if (args['last-name']) attributes.last_name = args['last-name']
if (args.phone) attributes.phone_number = args.phone
result = await api('POST', '/profiles/', {
data: { type: 'profile', attributes }
})
break
}
case 'update': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
const attributes = {}
if (args.email) attributes.email = args.email
if (args['first-name']) attributes.first_name = args['first-name']
if (args['last-name']) attributes.last_name = args['last-name']
if (args.phone) attributes.phone_number = args.phone
result = await api('PATCH', `/profiles/${id}/`, {
data: { type: 'profile', id, attributes }
})
break
}
default:
result = { error: 'Unknown profiles subcommand. Use: list, get, create, update' }
}
break
case 'lists':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/lists/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/lists/${id}/`)
break
}
case 'create': {
const name = args.name
if (!name) { result = { error: '--name required' }; break }
result = await api('POST', '/lists/', {
data: { type: 'list', attributes: { name } }
})
break
}
case 'delete': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('DELETE', `/lists/${id}/`)
break
}
case 'add-profiles': {
const id = args.id
if (!id) { result = { error: '--id required (list ID)' }; break }
const profileIds = args.profiles?.split(',')
if (!profileIds) { result = { error: '--profiles required (comma-separated profile IDs)' }; break }
result = await api('POST', `/lists/${id}/relationships/profiles/`, {
data: profileIds.map(pid => ({ type: 'profile', id: pid }))
})
break
}
case 'remove-profiles': {
const id = args.id
if (!id) { result = { error: '--id required (list ID)' }; break }
const profileIds = args.profiles?.split(',')
if (!profileIds) { result = { error: '--profiles required (comma-separated profile IDs)' }; break }
result = await api('DELETE', `/lists/${id}/relationships/profiles/`, {
data: profileIds.map(pid => ({ type: 'profile', id: pid }))
})
break
}
default:
result = { error: 'Unknown lists subcommand. Use: list, get, create, delete, add-profiles, remove-profiles' }
}
break
case 'events':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.filter) params.set('filter', args.filter)
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/events/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/events/${id}/`)
break
}
case 'create': {
const metric = args.metric
const email = args.email
if (!metric) { result = { error: '--metric required (metric name)' }; break }
if (!email) { result = { error: '--email required' }; break }
const properties = {}
if (args.value) properties.value = Number(args.value)
if (args.property) {
const pairs = args.property.split(',')
for (const pair of pairs) {
const [k, v] = pair.split(':')
if (k && v) properties[k] = v
}
}
result = await api('POST', '/events/', {
data: {
type: 'event',
attributes: {
metric: { data: { type: 'metric', attributes: { name: metric } } },
profile: { data: { type: 'profile', attributes: { email } } },
properties,
time: new Date().toISOString(),
}
}
})
break
}
default:
result = { error: 'Unknown events subcommand. Use: list, get, create' }
}
break
case 'campaigns':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.filter) params.set('filter', args.filter)
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/campaigns/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/campaigns/${id}/`)
break
}
default:
result = { error: 'Unknown campaigns subcommand. Use: list, get' }
}
break
case 'flows':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.filter) params.set('filter', args.filter)
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/flows/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/flows/${id}/`)
break
}
case 'update': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
const attributes = {}
if (args.status) attributes.status = args.status
result = await api('PATCH', `/flows/${id}/`, {
data: { type: 'flow', id, attributes }
})
break
}
default:
result = { error: 'Unknown flows subcommand. Use: list, get, update' }
}
break
case 'metrics':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/metrics/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/metrics/${id}/`)
break
}
default:
result = { error: 'Unknown metrics subcommand. Use: list, get' }
}
break
case 'segments':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/segments/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/segments/${id}/`)
break
}
default:
result = { error: 'Unknown segments subcommand. Use: list, get' }
}
break
case 'templates':
switch (sub) {
case 'list': {
const params = new URLSearchParams()
if (args.filter) params.set('filter', args.filter)
if (args['page-size']) params.set('page[size]', args['page-size'])
const qs = params.toString()
result = await api('GET', `/templates/${qs ? '?' + qs : ''}`)
break
}
case 'get': {
const id = args.id
if (!id) { result = { error: '--id required' }; break }
result = await api('GET', `/templates/${id}/`)
break
}
default:
result = { error: 'Unknown templates subcommand. Use: list, get' }
}
break
default:
result = {
error: 'Unknown command',
usage: {
profiles: 'profiles [list | get --id <id> | create --email <email> | update --id <id>]',
lists: 'lists [list | get --id <id> | create --name <name> | delete --id <id> | add-profiles --id <list-id> --profiles <id1,id2> | remove-profiles --id <list-id> --profiles <id1,id2>]',
events: 'events [list | get --id <id> | create --metric <name> --email <email>]',
campaigns: 'campaigns [list | get --id <id>]',
flows: 'flows [list | get --id <id> | update --id <id> --status <status>]',
metrics: 'metrics [list | get --id <id>]',
segments: 'segments [list | get --id <id>]',
templates: 'templates [list | get --id <id>]',
options: '--filter <filter> --page-size <n> --page-cursor <cursor>',
}
}
}
console.log(JSON.stringify(result, null, 2))
}
main().catch(err => {
console.error(JSON.stringify({ error: err.message }))
process.exit(1)
})