Agent skill

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

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.12.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(gcloud:*)Bash(vault:*)
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: plugins/saas-packs/mistral-pack/skills/mistral-multi-env-setup/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Environment Strategy
  4. Instructions
  5. Step 1: Configuration Structure
  6. Step 2: Per-Environment Configs
  7. Step 3: Environment Detection
  8. Step 4: Secret Management
  9. Step 5: Environment Isolation Guards
  10. Step 6: Feature Flags by Environment
  11. Error Handling
  12. Resources
  13. Output
More from claude-code-plugins-plus-skills
All skills →
About this skill
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.

Keep going