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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linktree-pack:linktree-deploy-integrationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```dockerfile
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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packProvides 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.