From lucidchart-pack
Handles Lucidchart webhook events with TypeScript/Express endpoint, signature verification, and event processing. Useful for SaaS diagramming integrations.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packThis skill is limited to using the following tools:
```typescript
Creates 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.
Share bugs, ideas, or general feedback.
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.