Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thanks for assigning this issue to me. I'm starting to work on it and will keep this PR's description up to date as I form a plan and make progress.
Original prompt
This section details on the original issue you should resolve
<issue_title>Add Mistral Vibe as coding agent</issue_title>
<issue_description>After talking with Pini Wietchner at Mistral we will take a look at adding support for Mistral Vibe
@pelikhan is tidying up the internal engineering to make sure adding new coding agents is reasonably straight-forward.
I asked Opus to take a look at the coding agent features needed, download Mistral Vibe CLI and analyze what's what according what's needed. Here's what it came up with
Technical Requirements for Coding Agent CLI Integration with gh-aw
Support Comparison Table
--prompt--printexecsubcommand-p(programmatic mode)--prompt "..."exec "..."-p "..."@github/copilot@anthropic-ai/claude-code@openai/codexCOPILOT_GITHUB_TOKENANTHROPIC_API_KEYOPENAI_API_KEYMISTRAL_API_KEY--mcp-config--mcp-config--allow-tool--allowed-tools--enabled-tools²server(tool)mcp__server__tool--debug-file--output json|streaming--log-dir--debug-file--log-level all--verbose--model--model-c model=--max-turns--max-turns--max-price--add-dir--dangerously-skip-permissions--dangerously-bypass...-pauto-approves--accept--disable-slash-commands-pmode--agent--agent NAME⁴--searchcopilot plugin install--continue,--resume--workdir(planned)--workdirLegend: ✅ Full support |⚠️ Partial/limited | ❌ Not supported
Footnotes
¹ Mistral Vibe MCP: MCP servers configured via
~/.vibe/config.toml[[mcp_servers]]section, not CLI flag. Supports stdio, http, streamable-http transports.² Vibe tool patterns:
--enabled-toolssupports exact names, glob patterns (bash*), and regex (re:^pattern$).³ Vibe logging: Session logs stored in
~/.vibe/logs/. JSON output via--output jsononly in programmatic mode.⁴ Vibe agents: References TOML files in
~/.vibe/agents/NAME.toml, not markdown files.Requirements for gh-aw Integration
1. Core CLI Interface
Essential:
--prompt "instruction"or positional argument)--prompt-file /path/to/prompt.txt)npm install -g @mistral/vibe-cli) or provide equivalent installation method2. Authentication
Essential:
MISTRAL_API_KEY)3. MCP (Model Context Protocol) Integration
Highly Recommended:
--mcp-config /path/to/config.json)✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.