From mindtickle-pack
Sets up TypeScript webhook handlers for MindTickle events with signature verification and processing. Useful for SaaS backend integrations.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packThis skill is limited to using the following tools:
```typescript
Installs MindTickle SDK and configures API key authentication for Node.js/TypeScript or Python apps. Verifies connections and covers common errors.
Handles Instantly.ai v2 webhook events for email campaigns (sent, opened, clicked, replied, bounced) and lead updates. Use for webhook endpoints or CRM sync pipelines.
Implements SalesLoft webhook handling with HMAC-SHA256 signature verification, replay protection, and event routing for person/email/call activities.
Share bugs, ideas, or general feedback.
app.post('/webhooks/mindtickle', (req, res) => {
// Verify signature
const event = req.body;
console.log(`Event: ${event.type}`);
res.status(200).send('OK');
});
See mindtickle-performance-tuning.