From openevidence-pack
Sets up webhook handlers for OpenEvidence events in TypeScript/Express apps. Includes signature verification and event logging example. Trigger: openevidence webhooks events.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-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/openevidence', (req, res) => {
// Verify signature
const event = req.body;
console.log(`Event: ${event.type}`);
res.status(200).send('OK');
});
See openevidence-performance-tuning.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packProvides TypeScript patterns for OpenEvidence SDK: singleton client and error wrapper with rate-limit retry. Useful for robust API client setup.
Sets up TypeScript Express handlers for Linktree webhook events with signature verification. Useful for SaaS apps integrating Linktree notifications.
Sets up TypeScript webhook handlers for MindTickle events with signature verification and processing. Useful for SaaS backend integrations.