mistral-prod-checklist
Execute Mistral AI production deployment checklist and rollback procedures. Use when deploying Mistral AI integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "mistral production", "deploy mistral", "mistral go-live", "mistral launch checklist".
npx skills add majiayu000/claude-skill-registry --skill mistral-prod-checklist --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Mistral AI Production Checklist ## Overview Complete checklist for deploying Mistral AI integrations to production. ## Prerequisites - Staging environment tested and verified - Production API keys available - Deployment pipeline configured - Monitoring and alerting ready ## Instructions ### Step 1: Pre-Deployment Configuration **Secrets & Configuration** - [ ] Production API key in secure vault (AWS Secrets Manager, GCP Secret Manager, etc.) - [ ] Environment variables set in deployment platform - [ ] API key validated with test request - [ ] Fallback configuration ready (if Mistral unavailable) **Verify API Key:** ```bash # Test production key curl -H "Authorization: Bearer ${MISTRAL_API_KEY_PROD}" \ https://api.mistral.ai/v1/models | jq '.data[].id' ``` ### Step 2: Code Quality Verification **Code Review** - [ ] All tests passing (`npm test`) - [ ] No hardcoded credentials (`grep -r "MISTRAL_API_KEY" src/`) - [ ] Error handling covers all error types (401, 429, 500, etc.) - [ ] Rate limiting/backoff implemented - [ ] Logging is production-appropriate (no sensitive data) - [ ] TypeScript types are strict **Run Verification:** ```bash # Full test suite npm test # Type checking np
- Overview
- Prerequisites
- Instructions
- Step 1: Pre-Deployment Configuration
- Step 2: Code Quality Verification
- Step 3: Infrastructure Setup
- Step 4: Resilience Patterns
- Step 5: Documentation Requirements
- Step 6: Deploy with Gradual Rollout
- Step 7: Post-Deployment Verification
- Output
- Alert Configuration
- Rollback Procedure
- Resources
Test production key
curl -H "Authorization: Bearer ${MISTRAL_API_KEY_PROD}" \
Full test suite
npm test
Type checking
npm run typecheck
Check for hardcoded secrets
grep -r "sk-" src/ --include="*.ts" --include="*.js"
Lint
npm run lintWhat does the mistral-prod-checklist skill do?
Execute Mistral AI production deployment checklist and rollback procedures. Use when deploying Mistral AI integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "mistral production", "deploy mistral", "mistral go-live", "mistral launch checklist".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill mistral-prod-checklist --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
