Mistral Vibe: Claude Opus 1M Context Window and Maximum Thinking Budget

Mistral VibeView original changelog

Mistral Vibe v2.7.6 configures support for Claude Opus 4.6's 1M context window and enables the maximum thinking budget for Opus, allowing developers to run dramatically longer and more reasoning-intensive terminal sessions without hitting context limits. The release also adds an "Other" task type in the CLI prompt for non-code requests, introduces a MergeStrategy enum for cleaner layered configuration handling, and resolves a streaming bug where markdown fence context was lost during rendering.

Key Takeaways

  • Claude Opus 4.6's 1M context window is now available in Mistral Vibe, enabling developers to load entire large codebases or long conversation histories into a single terminal session without truncation.
  • The maximum thinking budget for Opus is configured, allowing the model to perform deeper extended reasoning across the full 1M token context β€” a natural pairing for complex multi-file refactors.
  • A new "Other" task type in the CLI prompt signals to the agent that a request is non-code in nature, improving response quality for general queries, documentation lookups, and architecture questions.
  • Git subprocess calls are now parallelized at startup, providing faster initialization in repositories with significant git history.
  • A markdown fence rendering bug is fixed: streaming responses containing code blocks no longer lose their fence context, eliminating malformed output during streamed replies.
  • The MergeStrategy enum formalizes configuration conflict resolution, giving teams with layered configs (user-level + project-level) a more predictable and principled merge behavior.

Claude Opus 1M Context Window Now Available in Mistral Vibe

Mistral Vibe v2.7.6, released on April 16, 2026, unlocks Claude Opus 4.6's 1 million token context window and configures the maximum thinking budget for Opus β€” enabling developers to load entire large codebases, long conversation histories, or extensive documentation sets into a single Mistral Vibe session without hitting context truncation.

Opus 1M Context and Maximum Thinking Budget

Anthropic made the 1M context window generally available for Claude Opus 4.6 and Sonnet 4.6 in March 2026, and Mistral Vibe v2.7.6 is among the first CLI coding agents to expose this capability directly to users. With this update, Mistral Vibe sets a 1M context window and maximum thinking budget for the Opus model, making extended reasoning across large bodies of code and documentation far more accessible from the terminal.

The thinking budget maximum pairs naturally with the extended context: longer context windows benefit most from deep reasoning, allowing Opus to reason across a much larger body of information before producing its response. For developers working on large monorepos, multi-service codebases, or complex refactors, this is a meaningful unlock.

New "Other" Task Type for Non-Code Requests

Mistral Vibe v2.7.6 adds an "Other" task type in the CLI prompt for requests that fall outside the typical code generation or editing workflow β€” such as research queries, documentation lookups, or general Q&A. Previously, all requests were implicitly treated as code tasks. This addition helps the agent calibrate its response style to non-coding use cases, improving the quality of replies for tasks like explaining architecture, summarizing documentation, or answering general technical questions.

Configuration Improvements with MergeStrategy

The release introduces a MergeStrategy enum with corresponding merge logic for configuration handling. This gives Mistral Vibe's configuration system a more principled approach to resolving conflicts when multiple config sources are combined β€” for example, when user-level settings and project-level settings define overlapping keys. The call_source=vibe_code metadata field is also added to LLM request headers, improving telemetry tracking for Vibe Code sessions.

Performance and Stability Fixes

Startup performance receives another incremental improvement: git subprocess calls are now parallelized during initialization, reducing the time Mistral Vibe takes to become ready in large repositories.

On the stability side, a bug causing markdown fence context loss during streaming rendering is resolved. This issue caused streaming responses containing fenced code blocks to lose their rendering context mid-stream, producing malformed output. The fix ensures consistent markdown rendering throughout streamed responses β€” a fix that will be immediately noticeable to anyone who regularly reviews code suggestions from Mistral Vibe.

Additionally, proxy chain URL parsing in api_base configuration is corrected. The Alt+Left/Alt+Right key bindings β€” added in v2.7.2 for word-wise cursor movement β€” have also been removed in this release.