mistral-local-dev-loop
Installation
SKILL.md
Mistral AI Local Dev Loop
Overview
Set up a fast, reproducible local development workflow for Mistral AI integrations: project scaffold, environment config, hot reload with tsx, unit tests with Vitest mocking, and integration tests against the live API.
Prerequisites
- Completed
mistral-install-authsetup - Node.js 18+ with npm/pnpm
MISTRAL_API_KEYset in environment
Instructions
Step 1: Project Structure
my-mistral-project/
├── src/
│ ├── mistral/
│ │ ├── client.ts # Singleton client
│ │ ├── config.ts # Config with Zod validation
Related skills