From linktree-pack
Deploys Node.js integrations to Linktree using Docker. Supplies production Dockerfile with slim Node image, npm ci, dist bundle, and LINKTREE_API_KEY setup.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
```dockerfile
Provides reference architecture for Linktree API integrations with diagram, TypeScript service wrapper, data store, and analytics. Trigger: 'linktree reference architecture'.
Deploys Node.js integrations to MindTickle platform using Docker container and API key. Trigger: 'mindtickle deploy integration'. See mindtickle-webhooks-events next.
Deploys Node.js Lucidchart integrations using Docker. Sets up container with LUCID_API_KEY. Trigger: 'lucidchart deploy integration'. Links API docs.
Share bugs, ideas, or general feedback.
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY dist/ ./dist/
ENV LINKTREE_API_KEY=""
CMD ["node", "dist/index.js"]
See linktree-webhooks-events.