Skip to content

Commit 36777ba

Browse files
akoclaude
andcommitted
docs: add Mistral Vibe to site docs
Add Vibe to the supported tools table in mxcli-init.md and the other-ai-tools.md tutorial page with a dedicated section. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent dc6f3ea commit 36777ba

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

docs-site/src/ide/mxcli-init.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ mxcli init --list-tools
3131
| **Continue.dev** | `--tool continue` | `.continue/config.json` |
3232
| **Windsurf** | `--tool windsurf` | `.windsurfrules` |
3333
| **Aider** | `--tool aider` | `.aider.conf.yml` |
34+
| **Mistral Vibe** | `--tool vibe` | `.vibe/config.toml`, `.vibe/prompts/`, `.vibe/skills/` |
3435

3536
All tools also receive the universal files (`AGENTS.md`, `.ai-context/`).
3637

docs-site/src/tutorial/other-ai-tools.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Other AI tools
22

3-
Claude Code is the default integration, but mxcli also supports OpenCode, Cursor, Continue.dev, Windsurf, and Aider. Each tool gets its own configuration file that teaches the AI about MDL syntax and mxcli commands.
3+
Claude Code is the default integration, but mxcli also supports OpenCode, Cursor, Continue.dev, Windsurf, Aider, and Mistral Vibe. Each tool gets its own configuration file that teaches the AI about MDL syntax and mxcli commands.
44

55
## Initializing for a specific tool
66

@@ -21,6 +21,9 @@ mxcli init --tool windsurf /path/to/my-mendix-project
2121

2222
# Aider
2323
mxcli init --tool aider /path/to/my-mendix-project
24+
25+
# Mistral Vibe
26+
mxcli init --tool vibe /path/to/my-mendix-project
2427
```
2528

2629
## Setting up multiple tools
@@ -69,6 +72,7 @@ On top of the universal files, each tool gets its own configuration:
6972
| **Continue.dev** | `.continue/config.json` | Custom commands and slash commands |
7073
| **Windsurf** | `.windsurfrules` | MDL rules for Codeium's AI |
7174
| **Aider** | `.aider.conf.yml` | YAML configuration for Aider |
75+
| **Mistral Vibe** | `.vibe/` | Config, system prompt, and SKILL.md skills |
7276

7377
## Tool details
7478

@@ -150,6 +154,25 @@ Created files:
150154

151155
To use: run `aider` in the project directory from the terminal.
152156

157+
### Mistral Vibe
158+
159+
Mistral Vibe is a terminal-based AI coding agent by Mistral AI. It uses `.vibe/config.toml` for configuration, `.vibe/prompts/` for system prompts, and `.vibe/skills/` for SKILL.md-based skills.
160+
161+
```bash
162+
mxcli init --tool vibe /path/to/project
163+
```
164+
165+
Created files:
166+
- `.vibe/config.toml` -- project configuration with system prompt reference
167+
- `.vibe/prompts/mendix-mdl.md` -- system prompt with project context and mxcli commands
168+
- `.vibe/skills/write-microflows/SKILL.md` -- microflow syntax and rules
169+
- `.vibe/skills/create-page/SKILL.md` -- page/widget syntax
170+
- `.vibe/skills/check-syntax/SKILL.md` -- validation workflow
171+
- `.vibe/skills/explore-project/SKILL.md` -- project query commands
172+
- `AGENTS.md` and `.ai-context/skills/` -- universal files
173+
174+
To use: run `vibe` in the project directory from the terminal. Vibe auto-discovers skills in `.vibe/skills/` and loads the system prompt from `.vibe/prompts/`.
175+
153176
## The universal format: AGENTS.md
154177

155178
Regardless of which tool you pick, mxcli always creates `AGENTS.md` and the `.ai-context/` directory. These use a universal format that most AI tools understand:

0 commit comments

Comments
 (0)