From linktree-pack
Sets up TypeScript Express handlers for Linktree webhook events with signature verification. Useful for SaaS apps integrating Linktree notifications.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
```typescript
Handles Lucidchart webhook events with TypeScript/Express endpoint, signature verification, and event processing. Useful for SaaS diagramming integrations.
Sets up webhook handlers for OpenEvidence events in TypeScript/Express apps. Includes signature verification and event logging example. Trigger: openevidence webhooks events.
Provides TypeScript patterns for Linktree SDK: singleton client and error wrapper with 429 rate limit retry. Useful for SaaS social link integrations.
Share bugs, ideas, or general feedback.
app.post('/webhooks/linktree', (req, res) => {
// Verify signature
const event = req.body;
console.log(`Event: ${event.type}`);
res.status(200).send('OK');
});
See linktree-performance-tuning.