salesloft-reference-architecture

Featured

Production architecture for SalesLoft API integrations with service layer, webhook processing, and CRM sync patterns. Use when designing new SalesLoft integrations or reviewing project structure. Trigger: "salesloft architecture", "salesloft project structure", "salesloft design".

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

# SalesLoft Reference Architecture ## Overview Production architecture for SalesLoft API integrations: typed API client, service layer with caching, webhook processor, and background sync. Designed around SalesLoft's REST API v2 with cost-based rate limiting. ## Project Structure ``` salesloft-integration/ ├── src/ │ ├── salesloft/ │ │ ├── client.ts # Axios wrapper with rate-limit handling │ │ ├── types.ts # Person, Cadence, Activity types │ │ ├── paginator.ts # AsyncGenerator pagination │ │ └── errors.ts # SalesloftApiError class │ ├── services/ │ │ ├── people-sync.ts # Bidirectional people sync │ │ ├── cadence-manager.ts # Cadence CRUD + enrollment │ │ └── activity-tracker.ts # Email/call activity aggregation │ ├── webhooks/ │ │ ├── handler.ts # Signature verification + routing │ │ └── processors/ # Per-event-type processors │ ├── jobs/ │ │ ├── incremental-sync.ts # Cron: sync changed records │ │ └── engagement-report.ts# Cron: aggregate daily metrics │ └── api/ │ ├── health.ts # /health endpoint │ └── webhooks.ts # /webhooks/salesloft endpoint ├── config/ │ ├── default.json │ ├── production.json │ └── test.json └── tests/ ├── unit/ └── integration/ ``` ## Architecture Diagram ``` ┌─────────────────────────────────┐ │ API Layer │ │ /health /webhooks/salesloft │ ├─────────────────────────...

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-reference-architecture

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-reference-architecture

Implement Salesforce integration reference architecture with jsforce, SFDX, and event-driven patterns. Use when designing new Salesforce integrations, reviewing project structure, or establishing architecture standards for Salesforce-connected applications. Trigger with phrases like "salesforce architecture", "salesforce project structure", "salesforce integration design", "how to organize salesforce code", "salesforce layout".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-prod-checklist

Production readiness checklist for SalesLoft API integrations. Use when deploying SalesLoft integrations to production, preparing for launch, or validating go-live requirements. Trigger: "salesloft production", "deploy salesloft", "salesloft go-live checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-reference-architecture

Implement Apollo.io reference architecture. Use when designing Apollo integrations, establishing patterns, or building production-grade sales intelligence systems. Trigger with phrases like "apollo architecture", "apollo system design", "apollo integration patterns", "apollo best practices architecture".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-reference-architecture

Implement a production-ready HubSpot integration architecture with layered design. Use when designing new HubSpot integrations, reviewing project structure, or establishing architecture standards for HubSpot CRM applications. Trigger with phrases like "hubspot architecture", "hubspot project structure", "hubspot integration design", "hubspot best practices layout", "hubspot layers".

2,266 Updated today
jeremylongshore