| name | workflows |
| description | Framework for building durable workflows with orchestrated activities, used for background jobs, multi-step pipelines, scheduled tasks, LLM agents, or any process requiring fault tolerance, retries, and long-running execution. This skill provides comprehensive documentation and guidance for working with the Mistral Workflows framework. |
| license | Complete terms in LICENSE.txt |
Workflows Documentation
This skill provides comprehensive documentation and guidance for the Mistral Workflows framework, which is designed for building durable, fault-tolerant workflows with orchestrated activities.
About Workflows
Mistral Workflows is a durable-execution orchestration platform that accelerates the development and reliable execution of complex, AI-driven workflows. It combines a user-friendly API with a rich Python framework (mistralai.workflows) optimized for Mistral's AI services, providing fault-tolerant execution, automatic retries, and durable state that survives crashes — from simple sequences to long-running, stateful processes (seconds to years).
SDK Version and Imports
This skill targets the mistralai-workflows SDK v3.4.0 and higher:
uv add "mistralai-workflows>=3.4.0,<4.0.0"
Canonical import style used throughout this skill:
import mistralai.workflows as workflows
@workflows.workflow.define(name="my_workflow")
:
() -> :
...