From mindtickle-pack
Deploys Node.js integrations to MindTickle platform using Docker container and API key. Trigger: 'mindtickle deploy integration'. See mindtickle-webhooks-events next.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packThis skill is limited to using the following tools:
```dockerfile
Installs MindTickle SDK and configures API key authentication for Node.js/TypeScript or Python apps. Verifies connections and covers common errors.
Deploys MaintainX Node.js integrations to production via Docker on GCP Cloud Run or Kubernetes, with health checks, secret management, and gcloud commands.
Deploys Node.js OpenEvidence integration using Docker. Configures production npm install, dist bundle, and OPENEVIDENCE_API_KEY env var for healthcare SaaS.
Share bugs, ideas, or general feedback.
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY dist/ ./dist/
ENV MINDTICKLE_API_KEY=""
CMD ["node", "dist/index.js"]
See mindtickle-webhooks-events.