Mistral Vibe CLI Agent

2.7.5 · active · verified Thu Apr 16

Mistral Vibe is a minimal command-line interface (CLI) coding agent developed by Mistral AI, currently at version 2.7.5. It provides a conversational interface to interact with a codebase, allowing developers to use natural language for tasks like exploring, modifying, and interacting with projects through a powerful set of integrated tools. The library maintains an active development pace with frequent updates, often multiple releases within a month, focusing on new features, performance improvements, and bug fixes.

Common errors

Warnings

Install

Quickstart

To quickly start using Mistral Vibe, navigate to your project's root directory and run the `vibe` command. Ensure your Mistral API key is set as an environment variable or configured via `vibe --setup`. The first run will set up configuration and prompt for the API key if missing.

export MISTRAL_API_KEY="$MISTRAL_API_KEY"
cd /path/to/your/project
vibe
# Interact with the agent, e.g., type: > Can you find all instances of 'TODO'?

view raw JSON →