From 500fbece880669ed403769d0e04f9f92731cb3c2 Mon Sep 17 00:00:00 2001 From: simplyRoba Date: Thu, 5 Feb 2026 13:24:49 +0100 Subject: [PATCH] feat: add Mistral Vibe as a supported AI tool Closes #417 --- .changeset/bright-waves-dance.md | 5 +++++ docs/supported-tools.md | 3 ++- src/core/config.ts | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changeset/bright-waves-dance.md diff --git a/.changeset/bright-waves-dance.md b/.changeset/bright-waves-dance.md new file mode 100644 index 000000000..f8a1cabd0 --- /dev/null +++ b/.changeset/bright-waves-dance.md @@ -0,0 +1,5 @@ +--- +"@fission-ai/openspec": patch +--- + +Add Mistral Vibe as a supported AI tool diff --git a/docs/supported-tools.md b/docs/supported-tools.md index 2f9b61526..45386d571 100644 --- a/docs/supported-tools.md +++ b/docs/supported-tools.md @@ -29,6 +29,7 @@ For each tool you select, OpenSpec installs: | GitHub Copilot | `.github/skills/` | `.github/prompts/` | | iFlow | `.iflow/skills/` | `.iflow/commands/` | | Kilo Code | `.kilocode/skills/` | `.kilocode/workflows/` | +| Mistral Vibe | `.vibe/skills/` | — | | OpenCode | `.opencode/skills/` | `.opencode/command/` | | Qoder | `.qoder/skills/` | `.qoder/commands/opsx/` | | Qwen Code | `.qwen/skills/` | `.qwen/commands/` | @@ -53,7 +54,7 @@ openspec init --tools all openspec init --tools none ``` -**Available tool IDs:** `amazon-q`, `antigravity`, `auggie`, `claude`, `cline`, `codebuddy`, `codex`, `continue`, `costrict`, `crush`, `cursor`, `factory`, `gemini`, `github-copilot`, `iflow`, `kilocode`, `opencode`, `qoder`, `qwen`, `roocode`, `trae`, `windsurf` +**Available tool IDs:** `amazon-q`, `antigravity`, `auggie`, `claude`, `cline`, `codebuddy`, `codex`, `continue`, `costrict`, `crush`, `cursor`, `factory`, `gemini`, `github-copilot`, `iflow`, `kilocode`, `mistral-vibe`, `opencode`, `qoder`, `qwen`, `roocode`, `trae`, `windsurf` ## What Gets Installed diff --git a/src/core/config.ts b/src/core/config.ts index 05f1c3cf1..14e59bd97 100644 --- a/src/core/config.ts +++ b/src/core/config.ts @@ -34,6 +34,7 @@ export const AI_TOOLS: AIToolOption[] = [ { name: 'GitHub Copilot', value: 'github-copilot', available: true, successLabel: 'GitHub Copilot', skillsDir: '.github' }, { name: 'iFlow', value: 'iflow', available: true, successLabel: 'iFlow', skillsDir: '.iflow' }, { name: 'Kilo Code', value: 'kilocode', available: true, successLabel: 'Kilo Code', skillsDir: '.kilocode' }, + { name: 'Mistral Vibe', value: 'mistral-vibe', available: true, successLabel: 'Mistral Vibe', skillsDir: '.vibe' }, { name: 'OpenCode', value: 'opencode', available: true, successLabel: 'OpenCode', skillsDir: '.opencode' }, { name: 'Qoder', value: 'qoder', available: true, successLabel: 'Qoder', skillsDir: '.qoder' }, { name: 'Qwen Code', value: 'qwen', available: true, successLabel: 'Qwen Code', skillsDir: '.qwen' },