mistral-multi-env-setup

Featured

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".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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: 'mistral-small-latest', timeoutMs: 30_000, maxRetries: 3, debug: false, cache: { enabled: true, ttlMs: 300_000 }, rateLimits: { rpm: 60, tpm: 500_000 }, }; ``` ### Step 2: Per-Environment Configs ```typescript // config/mistral/environments.ts import { baseConfig, typ...

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

DevOps & Infrastructure Featured

mistral-deploy-integration

Deploy Mistral AI integrations to Vercel, Docker, and Cloud Run platforms. Use when deploying Mistral AI-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy mistral", "mistral Vercel", "mistral production deploy", "mistral Cloud Run", "mistral Docker".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-local-dev-loop

Configure Mistral AI local development with hot reload, testing, and mocking. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Mistral AI. Trigger with phrases like "mistral dev setup", "mistral local development", "mistral dev environment", "develop with mistral".

2,266 Updated today
jeremylongshore
AI & Automation Featured

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clade-multi-env-setup

Configure Claude across dev, staging, and production with different Use when working with multi-env-setup patterns. models, keys, and rate limits per environment. Trigger with "anthropic environments", "claude staging", "anthropic dev vs prod", "claude multi-environment".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-enterprise-rbac

Configure Mistral AI enterprise access control and workspace management. Use when implementing role-based API key scoping, managing team access, or setting up organization-level controls for Mistral AI. Trigger with phrases like "mistral access control", "mistral RBAC", "mistral enterprise", "mistral roles", "mistral team".

2,266 Updated today
jeremylongshore