From salesloft-pack
Provides production readiness checklist for SalesLoft API integrations: auth, error handling, rate limits, monitoring, data integrity, rollback. For deploy/launch validation.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin salesloft-packThis skill is limited to using the following tools:
Go-live checklist for SalesLoft API integrations covering auth, error handling, monitoring, rate limits, and rollback procedures.
Runs Salesforce production deployment checklist: sandbox validation via sf CLI, API limit checks, code quality review, config verification, and rollback planning.
Sets up GitHub Actions workflows for SalesLoft API integration testing: unit tests with Vitest, live API integration tests, OAuth validation, and cadence checks. Triggers on 'salesloft CI'.
Runs automated production checklist for Apollo.io integrations, validating API auth, key management, rate limiting, gitignore, and API health via TypeScript scripts.
Share bugs, ideas, or general feedback.
Go-live checklist for SalesLoft API integrations covering auth, error handling, monitoring, rate limits, and rollback procedures.
Retry-After headerp-queue or similar throttle// Health check endpoint
app.get('/health', async (req, res) => {
try {
const start = Date.now();
await api.get('/me.json');
res.json({
status: 'healthy',
salesloft: { connected: true, latencyMs: Date.now() - start },
});
} catch {
res.status(503).json({ status: 'degraded', salesloft: { connected: false } });
}
});
# 1. Revert deployment
kubectl rollout undo deployment/salesloft-integration
# or: git revert HEAD && git push
# 2. Verify old version healthy
curl -f https://app.example.com/health
# 3. Pause any running cadence syncs
# 4. Notify sales team of rollback
# Smoke test production endpoints
curl -s -H "Authorization: Bearer $PROD_TOKEN" \
https://api.salesloft.com/v2/me.json | jq '.data.email'
curl -s -H "Authorization: Bearer $PROD_TOKEN" \
'https://api.salesloft.com/v2/people.json?per_page=1' | jq '.metadata.paging.total_count'
| Alert | Condition | Severity | Runbook |
|---|---|---|---|
| Auth Down | 401 errors > 0 | P1 | Rotate token, check OAuth app |
| Rate Limited | 429 errors > 10/min | P2 | Reduce request volume |
| API Errors | 5xx > 5/min | P1 | Check status.salesloft.com |
| High Latency | p99 > 2000ms | P3 | Check SalesLoft status |
For version upgrades, see salesloft-upgrade-migration.