From lucidchart-pack
Handles Lucidchart webhook events with TypeScript/Express endpoint, signature verification, and event processing. Useful for SaaS diagramming integrations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucidchart-pack:lucidchart-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/lucidchart', (req, res) => {
// Verify signature
const event = req.body;
console.log(`Event: ${event.type}`);
res.status(200).send('OK');
});
See lucidchart-performance-tuning.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packCreates minimal Lucidchart diagram via API: new document, import shapes/lines in .lucid format, export PNG. For testing Lucidchart integrations in TypeScript/Node apps.
Sets up TypeScript Express handlers for Linktree webhook events with signature verification. Useful for SaaS apps integrating Linktree notifications.
Implements Canva Connect API webhook handling with JWK signature verification using jose. Sets up Express endpoints to process design collaboration events like comments and shares.