Mistral Vibe: Custom Subagent Architecture for Task Delegation

Mistral Vibe

Mistral Vibe 2.0 introduces custom subagents, allowing developers to build specialized AI agents for targeted tasks such as deployment scripts, pull request reviews, and test generation. Subagents run independently with isolated state and custom configurations, preventing the main agent's context from being overloaded. This architectural addition positions Mistral Vibe as a modular, enterprise-grade coding agent that supports delegation-based workflows.


Custom Subagents Land in Mistral Vibe 2.0

Mistral Vibe 2.0, released on January 27, 2026, introduced one of its most significant architectural features: custom subagents. Rather than relying on a single general-purpose assistant, developers can now define specialized AI agents tailored to specific tasks and invoke them on demand.

How Subagents Work

Subagents in Mistral Vibe are specialized agent profiles that operate with isolated state, separate tool instances, and independent context. Each subagent can have its own system prompt, tool availability settings, and model configuration. This isolation means that delegating a complex task to a subagent does not pollute the main agent's context window.

Mistral Vibe ships with a built-in subagent called "explore," a read-only subagent designed for codebase exploration. Developers can create additional subagents by adding agent_type = "subagent" to their agent configuration files.

Use Cases

The subagent system is designed around common development workflows:

  • Script Deployment: Automates the rollout of scripts across environments without requiring manual context switching.
  • Pull Request Review: Flags potential bugs, security issues, and style violations before merging, operating with a focused security-oriented prompt.
  • Test Generation: Produces unit tests based on existing test suites and code changes, working in parallel with other development tasks.

Enterprise Implications

The subagent architecture aligns with Mistral's pivot toward enterprise customers. Vibe 2.0 shifted from a free open-source tool to a paid offering bundled with Le Chat Pro at $14.99 per month and Le Chat Team at $24.99 per seat per month. Organizations can deploy subagents on-premises using open Devstral 2 model weights, maintaining full control over proprietary codebases.

Technical Details

Subagents share tool class definitions with the main agent for Pydantic validation compatibility, while maintaining instance-level isolation for stateful tools. They are incorporated into the universal system prompt, so the LLM is aware of available subagents as delegation targets. Configuration is managed through enabled_agents and disabled_agents settings with pattern matching support.