mistral-multi-env-setup
Configure Mistral AI across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment secrets, or implementing environment-specific Mistral AI configurations. Trigger with phrases like "mistral environments", "mistral staging", "mistral dev prod", "mistral environment setup". '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill mistral-multi-env-setup --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 Multi-Environment Setup ## Overview Configure Mistral AI across development, staging, and production with per-environment API keys, model selection, rate limits, and secret management via GCP Secret Manager, AWS Secrets Manager, or Vault. ## Prerequisites - Separate Mistral API keys per environment (from [console.mistral.ai](https://console.mistral.ai/)) - Secret management solution configured - CI/CD pipeline with environment variables ## Environment Strategy | Environment | API Key | Default Model | Rate Limit | Cache | |-------------|---------|---------------|------------|-------| | Development | Dev key (low quota) | mistral-small-latest | 10 RPM | Off | | Staging | Staging key | Same as prod | 60 RPM | On | | Production | Prod key (full quota) | Optimized per task | Full RPM | On | ## Instructions ### Step 1: Configuration Structure ```typescript // config/mistral/base.ts export interface MistralEnvConfig { apiKey: string; defaultModel: string; timeoutMs: number; maxRetries: number; debug: boolean; cache: { enabled: boolean; ttlMs: number }; rateLimits: { rpm: number; tpm: number }; } export const baseConfig: Omit<MistralEnvConfig, 'apiKey'> = { defaultModel: 'mis
- Overview
- Prerequisites
- Environment Strategy
- Instructions
- Step 1: Configuration Structure
- Step 2: Per-Environment Configs
- Step 3: Environment Detection
- Step 4: Secret Management
- Step 5: Environment Isolation Guards
- Step 6: Feature Flags by Environment
- Error Handling
- Resources
- Output
What does the mistral-multi-env-setup skill do?
Configure Mistral AI across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment secrets, or implementing environment-specific Mistral AI configurations. Trigger with phrases like "mistral environments", "mistral staging", "mistral dev prod", "mistral environment setup". '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill mistral-multi-env-setup --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 jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 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.