Klaviyo Reference Architecture
Overview
Production-ready architecture for Klaviyo integrations: a layered project structure, service patterns, event-driven sync, and the klaviyo-api SDK wired into a real application. SKILL.md gives you the four-layer contract and the skeleton you scaffold from; the deep material lives in references/ so you pull code only when you reach that layer.
- Layout & layering (full directory tree, layer contract, data flow): architecture.md
- Working code for every layer (config, profile sync, event tracker): implementation.md
Prerequisites
- TypeScript project with
klaviyo-api installed
- Understanding of layered architecture
- Redis (for caching/queuing) and database (for audit/sync state)
Instructions
Use Write to scaffold the directory tree, then fill each layer bottom-up. The four layers and their one-way call rule:
API / Webhook Layer → routes + webhook handlers (calls Service only)
Service Layer → profile-sync, event-tracker, campaigns (calls SDK + Infra)
Klaviyo SDK Layer → ApiKeySession, ProfilesApi, EventsApi (never calls upward)
Infrastructure Layer → Redis cache, BullMQ queue, Prisma DB, OTel monitoring
- Scaffold the tree. Create the
src/{klaviyo,services,webhooks,jobs,middleware,config,health} layout. Full annotated tree: architecture.md.
- Config layer first. A single
loadConfig() returns environment-specific keys, rate limits, and cache TTLs — every other layer reads from it. Code: implementation.md Step 1.
- Service layer. Build
ProfileSyncService (bidirectional upsert) and EventTracker (server-side Placed Order / custom events). Both route Klaviyo calls through withRateLimitRetry. Code: implementation.md Steps 2–3.
- Wire the data flow. Signup →
syncToKlaviyo(), purchase → trackPurchase(), inbound profile.updated webhook → WebhookRouter.routeEvent() → local DB. Diagram: architecture.md.
When reviewing an existing project, Read its src/ tree and Grep for cross-layer imports that break the one-way rule (SDK importing a service, a route importing the SDK directly).
Output
Applying this skill produces:
- A scaffolded
src/ tree matching the four-layer contract, with SDK, service, webhook, job, middleware, config, and health directories.
- A working
config/klaviyo.ts plus ProfileSyncService and EventTracker service classes ready to call from routes and jobs.
- For a review pass: a list of layering violations (upward SDK calls, direct SDK use from routes) and sync-safety gaps to fix.
Error Handling
| Issue |
Cause |
Solution |
| Circular deps |
Wrong layering |
Services call SDK, never the reverse |
| Sync conflicts |
Both sides update |
Last-write-wins with sync timestamp |
| Queue backlog |
Klaviyo slow/down |
Circuit breaker + dead letter queue |
| Type mismatches |
SDK version mismatch |
Pin SDK version, run tsc --noEmit in CI |
Examples
Scaffold a new integration — "Set up a Klaviyo integration for our Node app." Create the layered tree, drop in loadConfig(), then ProfileSyncService and EventTracker. Full code per step: implementation.md.
Track a purchase from your backend:
await new EventTracker().trackPurchase({
email: order.email,
orderId: order.id,
total: order.total,
items: order.lineItems,
});
Review project structure — "Is our Klaviyo code layered correctly?" Grep for imports that violate the one-way call rule and check webhook handlers verify HMAC signatures. Layer contract: architecture.md.
Resources
Next Steps
For multi-environment configuration and per-stage key management, see the klaviyo-multi-env-setup skill in this pack.
1---2name: klaviyo-reference-architecture3description: Implement Klaviyo reference architecture with best-practice project layout. Use when designing new Klaviyo integrations, reviewing project structure, or establishing architecture standards for email/SMS marketing applications. Trigger with phrases like "klaviyo architecture", "klaviyo project structure", "klaviyo design", "how to organize klaviyo", "klaviyo layout".4license: MIT5---6# Klaviyo Reference Architecture
7
8## Overview
9
10Production-ready architecture for Klaviyo integrations: a layered project structure, service patterns, event-driven sync, and the `klaviyo-api` SDK wired into a real application. SKILL.md gives you the four-layer contract and the skeleton you scaffold from; the deep material lives in `references/` so you pull code only when you reach that layer.
11
12- **Layout & layering** (full directory tree, layer contract, data flow): [architecture.md](references/architecture.md)
13- **Working code for every layer** (config, profile sync, event tracker): [implementation.md](references/implementation.md)
14
15## Prerequisites
16
17- TypeScript project with `klaviyo-api` installed
18- Understanding of layered architecture
19- Redis (for caching/queuing) and database (for audit/sync state)
20
21## Instructions
22
23Use **Write** to scaffold the directory tree, then fill each layer bottom-up. The four layers and their one-way call rule:
24
25```
26API / Webhook Layer → routes + webhook handlers (calls Service only)
27Service Layer → profile-sync, event-tracker, campaigns (calls SDK + Infra)
28Klaviyo SDK Layer → ApiKeySession, ProfilesApi, EventsApi (never calls upward)
29Infrastructure Layer → Redis cache, BullMQ queue, Prisma DB, OTel monitoring
30```
31
321. **Scaffold the tree.** Create the `src/{klaviyo,services,webhooks,jobs,middleware,config,health}` layout. Full annotated tree: [architecture.md](references/architecture.md).
332. **Config layer first.** A single `loadConfig()` returns environment-specific keys, rate limits, and cache TTLs — every other layer reads from it. Code: [implementation.md](references/implementation.md) Step 1.
343. **Service layer.** Build `ProfileSyncService` (bidirectional upsert) and `EventTracker` (server-side `Placed Order` / custom events). Both route Klaviyo calls through `withRateLimitRetry`. Code: [implementation.md](references/implementation.md) Steps 2–3.
354. **Wire the data flow.** Signup → `syncToKlaviyo()`, purchase → `trackPurchase()`, inbound `profile.updated` webhook → `WebhookRouter.routeEvent()` → local DB. Diagram: [architecture.md](references/architecture.md).
36
37When reviewing an existing project, **Read** its `src/` tree and **Grep** for cross-layer imports that break the one-way rule (SDK importing a service, a route importing the SDK directly).
38
39## Output
40
41Applying this skill produces:
42
43- A scaffolded `src/` tree matching the four-layer contract, with SDK, service, webhook, job, middleware, config, and health directories.
44- A working `config/klaviyo.ts` plus `ProfileSyncService` and `EventTracker` service classes ready to call from routes and jobs.
45- For a review pass: a list of layering violations (upward SDK calls, direct SDK use from routes) and sync-safety gaps to fix.
46
47## Error Handling
48
49| Issue | Cause | Solution |
50|-------|-------|----------|
51| Circular deps | Wrong layering | Services call SDK, never the reverse |
52| Sync conflicts | Both sides update | Last-write-wins with sync timestamp |
53| Queue backlog | Klaviyo slow/down | Circuit breaker + dead letter queue |
54| Type mismatches | SDK version mismatch | Pin SDK version, run `tsc --noEmit` in CI |
55
56## Examples
57
58**Scaffold a new integration** — "Set up a Klaviyo integration for our Node app." Create the layered tree, drop in `loadConfig()`, then `ProfileSyncService` and `EventTracker`. Full code per step: [implementation.md](references/implementation.md).
59
60**Track a purchase from your backend:**
61
62```typescript
63await new EventTracker().trackPurchase({
64 email: order.email,
65 orderId: order.id,
66 total: order.total,
67 items: order.lineItems,
68});
69```
70
71**Review project structure** — "Is our Klaviyo code layered correctly?" Grep for imports that violate the one-way call rule and check webhook handlers verify HMAC signatures. Layer contract: [architecture.md](references/architecture.md).
72
73## Resources
74
75- [Klaviyo API Reference](https://developers.klaviyo.com/en/reference/api_overview)
76- [Custom Integration Guide](https://developers.klaviyo.com/en/docs/guide_to_integrating_a_platform_without_a_pre_built_klaviyo_integration)
77- [Ecommerce Integration Guide](https://developers.klaviyo.com/en/docs/guide_to_integrating_a_platform_without_a_pre_built_klaviyo_integration)
78
79## Next Steps
80
81For multi-environment configuration and per-stage key management, see the `klaviyo-multi-env-setup` skill in this pack.