mindtickle-deploy-integration
FeaturedDeploy Integration for MindTickle. Trigger: "mindtickle deploy integration".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# MindTickle Deploy Integration
## Overview
Deploy a containerized MindTickle integration service that manages sales readiness courses, tracks learner progress across quizzes and certifications, and synchronizes enablement data through the MindTickle API. This skill covers Docker multi-stage builds for the MindTickle SDK, API token configuration, health checks that verify course catalog access, and rolling deployments with zero disruption to active training sessions and learner progress tracking.
## Prerequisites
- Docker 24+ and Docker Compose v2 installed
- Valid `MINDTICKLE_API_KEY` from the MindTickle admin console (Settings > API)
- Node.js 20 LTS (build stage)
- Network access to `api.mindtickle.com` on port 443
- Target deployment host with at least 256MB available memory
## Docker Configuration
```dockerfile
FROM node:20-slim AS builder
WORKDIR /build
COPY package*.json tsconfig.json ./
RUN npm ci
COPY src/ ./src/
RUN npm run build
FROM node:20-slim
RUN groupadd -r mindtickle && useradd -r -g mindtickle -m appuser
WORKDIR /app
COPY --from=builder /build/dist ./dist/
COPY --from=builder /build/node_modules ./node_modules/
COPY package*.json ./
RUN npm prune --production
USER appuser
EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD curl -f http://localhost:3000/health || exit 1
CMD ["node", "dist/index.js"]
```
## Environment Variables
```bash
MINDTICKLE_API_KEY="mt_xxxxxxxxxxxxxxxx" # API key from admin console
MINDTICKLE_BASE_URL...
Details
- Author
- jeremylongshore
- Repository
- jeremylongshore/claude-code-plugins-plus-skills
- Created
- 7 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
mindtickle-ci-integration
Ci Integration for MindTickle. Trigger: "mindtickle ci integration".
2,266 Updated today
jeremylongshore AI & Automation Solid
mindtickle-install-auth
Install and configure MindTickle SDK/API authentication. Use when setting up a new MindTickle integration. Trigger: "install mindtickle", "setup mindtickle", "mindtickle auth".
2,266 Updated today
jeremylongshore AI & Automation Featured
mindtickle-prod-checklist
Prod Checklist for MindTickle. Trigger: "mindtickle prod checklist".
2,266 Updated today
jeremylongshore DevOps & Infrastructure Featured
lucidchart-deploy-integration
Deploy Integration for Lucidchart. Trigger: "lucidchart deploy integration".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-deploy-integration
Deploy Integration for Linktree. Trigger: "linktree deploy integration".
2,266 Updated today
jeremylongshore