Help us improve
Share bugs, ideas, or general feedback.
From openevidence-pack
Deploys Node.js OpenEvidence integration using Docker. Configures production npm install, dist bundle, and OPENEVIDENCE_API_KEY env var for healthcare SaaS.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packHow this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-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
Sets up GitHub Actions CI for OpenEvidence with workflow to run npm tests on push/PR. Useful for SaaS/healthcare projects using OpenEvidence.
Deploys Node.js integrations to MindTickle platform using Docker container and API key. Trigger: 'mindtickle deploy integration'. See mindtickle-webhooks-events next.
Deploys Documenso-integrated apps and self-hosted instances using Docker, Docker Compose with Postgres, Kubernetes, and cloud platforms like AWS, GCP, Azure.
Share bugs, ideas, or general feedback.
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY dist/ ./dist/
ENV OPENEVIDENCE_API_KEY=""
CMD ["node", "dist/index.js"]
See openevidence-webhooks-events.