From mindtickle-pack
Sets up TypeScript webhook handlers for MindTickle events with signature verification and processing. Useful for SaaS backend integrations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mindtickle-pack:mindtickle-webhooks-eventsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```typescript
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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packInstalls 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.