From salesloft-pack
Creates minimal SalesLoft API v2 examples in TypeScript: list people, create person, add to cadence. Use for integrations, setup testing, or learning People/Cadences patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/salesloft-pack:salesloft-hello-worldThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
List people and create a new person — the two fundamental SalesLoft API operations. Uses the REST API v2 at `https://api.salesloft.com/v2/`. All endpoints return JSON with a `data` wrapper and support pagination via `page` and `per_page` params.
List people and create a new person — the two fundamental SalesLoft API operations. Uses the REST API v2 at https://api.salesloft.com/v2/. All endpoints return JSON with a data wrapper and support pagination via page and per_page params.
salesloft-install-auth)SALESLOFT_API_KEY environment variable setimport axios from 'axios';
const api = axios.create({
baseURL: 'https://api.salesloft.com/v2',
headers: { Authorization: `Bearer ${process.env.SALESLOFT_API_KEY}` },
});
// List people — returns paginated results
const { data } = await api.get('/people.json', {
params: { per_page: 25, page: 1 },
});
console.log(`Total people: ${data.metadata.paging.total_count}`);
data.data.forEach((person: any) => {
console.log(` ${person.display_name} <${person.email_address}>`);
});
// Create a new person record
const { data: created } = await api.post('/people.json', {
email_address: '[email protected]',
first_name: 'Alex',
last_name: 'Johnson',
title: 'VP Engineering',
company_name: 'Acme Corp',
phone: '+1-555-0100',
city: 'Austin',
state: 'TX',
custom_fields: {
lead_source: 'website',
},
});
console.log(`Created person: ${created.data.id} — ${created.data.display_name}`);
// First, list available cadences
const { data: cadences } = await api.get('/cadences.json', {
params: { per_page: 10 },
});
const cadenceId = cadences.data[0].id;
// Add person to cadence
const { data: membership } = await api.post('/cadence_memberships.json', {
person_id: created.data.id,
cadence_id: cadenceId,
});
console.log(`Added to cadence: ${membership.data.cadence.name}`);
Total people: 1,247
Alex Johnson <[email protected]>
Created person: 98765 — Alex Johnson
Added to cadence: Q1 Outbound Sequence
| Error | Cause | Solution |
|---|---|---|
422 Unprocessable Entity | Missing required field (email) | Ensure email_address is provided |
409 Conflict | Duplicate email address | Search existing people first with ?email_addresses[]= |
401 Unauthorized | Invalid/expired token | Refresh OAuth token |
429 Too Many Requests | Rate limit exceeded (600 cost/min) | Back off and retry after Retry-After header |
const { data } = await api.get('/people.json', {
params: { email_addresses: ['[email protected]'] },
});
await api.put(`/people/${personId}.json`, {
title: 'CTO',
company_name: 'New Corp',
});
const { data: activities } = await api.get('/activities/emails.json', {
params: { person_id: personId, per_page: 50 },
});
Proceed to salesloft-local-dev-loop for development workflow setup.
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin salesloft-pack5plugins reuse this skill
First indexed Jul 10, 2026
Creates a minimal SalesLoft example: list people, create a person, and add to a cadence. Use when starting a new integration or testing the API.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.