From lucidchart-pack
Deploys Node.js Lucidchart integrations using Docker. Sets up container with LUCID_API_KEY. Trigger: 'lucidchart deploy integration'. Links API docs.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packThis skill is limited to using the following tools:
```dockerfile
Sets up GitHub Actions CI workflows for Lucidchart integration, with npm test example. Invoke via 'lucidchart ci integration' or auto-activates on relevance.
Deploys Node.js integrations to Linktree using Docker. Supplies production Dockerfile with slim Node image, npm ci, dist bundle, and LINKTREE_API_KEY setup.
Deploys Node.js integrations to MindTickle platform using Docker container and API key. Trigger: 'mindtickle deploy integration'. See mindtickle-webhooks-events next.
Share bugs, ideas, or general feedback.
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY dist/ ./dist/
ENV LUCID_API_KEY=""
CMD ["node", "dist/index.js"]
See lucidchart-webhooks-events.