- Introducción a UiPath Maestro™
- Primeros pasos
- Cómo: proceso sencillo
- How to - Complex process
- Página de destino de Maestro
- Modelado de procesos
- Abrir el lienzo de modelado
- Modelar tu proceso
- Alinear y conectar elementos de BPMN
- Implementación del proceso
- Operaciones de proceso
- Supervisión de procesos
- Optimización de procesos
- Licencia
- Información de referencia

Guía del usuario de Maestro
Cómo: proceso sencillo
linkInformación general
linkThis guide demonstrates how to implement a simple process that highlights the core agentic orchestration capabilities: modeling, implementation, debugging, publishing, deployment, and management. The process does not cover integration with other UiPath products. For instructions on setting up and implementing dependencies such as Data Fabric, Integration Service, Studio Web, Agents, and Action Center Action Apps, see How to – Complex Process.
El objetivo es crear el proceso de enrutamiento simple similar al de la siguiente imagen:
Model a process
linkStart by modeling the end-to-end process, then configure the components.
Create an agentic process as a new type of Studio project.
- Navega a tu tenant de Automation Cloud™.
- On the rail on the left side, from the list of products, select Maestro.
- On the Maestro landing page, select Start modeling. Your new agentic process opens.
- Right-click to rename the project to Simple Process, and the process to Simple Process.
- Select the start element and click Add: Text annotation from the toolbox and type Input variable path.
- Select the start element and click Add: Intermediate event from the toolbox.
- Select Change element from the toolbar and select Timer intermediate catch event and type Delay for the intermediate event name.
- Select the timer element and click Add: Exclusive gateway from the toolbox and type Which path? for the gateway name.
- Select the gateway and click Add: Task and type A task for the name.Note: Validation errors are shown in the lower-left corner of the canvas.
- Select the gateway again and click Add: Task and type B task for the name.
- Select the gateway and expand the first condition, it will have a generated name starting with
edge_Gateway_{randomcharacters}
and type A for the Label. Expand the second condition and type B for the Label. - It is a best practice to create an explicit end to your process. To quickly identify which path the process followed, create an explicit end for each one.
Select the A task and click Add: End event from the toolbox and type End A for the name.
- Select the B task and click Add: End event from the toolbox and type End B for the name.
Congratulations! You’ve now created your first BPMN end-to-end process!
Now add some capabilities to the process.
Implement a process
link- Select the start element and in the Properties panel type Manual start for the Name and, in the Arguments section, select Add new to add a variable which we can use when we start the process.
- Configure the variable with these values and click Save. An output variable will automatically be created.
- Name: path
- Type: String
- Value: A
- Select the Delay event and open the properties panel and in the Timer section select Type=Duration and 5 seconds in the value configuration.
- Select the gateway and expand the Conditions to enter the condition for the No and Yes paths, and select the text entry picker to open the Expression editor to enter the conditions.
- Utiliza Insertar variable para encontrar e insertar la variable de salida Inicio manual
path
.
Set the value equal to “A”, and select Save. - Open the Expression editor for condition B and insert the Manual start output variable path and set the value equal to “B” and click Save.Alternatively, you can simply copy/paste the expressions below into expression editor:
- A
vars.path == "A"
vars.path == "A" - B
vars.path == "B"
vars.path == "B"
- A
Congratulations! You’ve now fully configured your first process.
.bpmn
file name.
Debug a process
linkDebug straight through
path
variable to A so you should see it flow through to A task and End A.
- Select Debug to test your process.
- Watch how each step is executed. Navigate the Execution Trail and Global Variables/Incidents sections to view additional details.
- Select Back to design mode to exit Debugging.
Debug step-by-step
path
variable to test route B- Select Debug step-by-step.
- Select Next step to move execution to the timer
- Update the
path
Global variable for the Manual start event source to B. Select Enter or tab to commit the change. - Select Update 1 variable and Update variables in the next dialog to commit the changes.
- Selecciona Continuar para finalizar la ejecución.
- Watch how each step is executed. Navigate the Execution Trail and Global Variables/Incidents sections to view additional details. This time, the process follows the B route.
- Select Back to design mode to exit Debugging.
Publicar, implementar e iniciar un proceso
link- Selecciona Publicar.
- In the Location field, choose the Orchestrator Personal Workspace Feed and select Publish.Note: See How To - Advanced Process > Publish and deploy for the steps to publish to Orchestrator Tenant Processes Feed.(link)
- Navigate to UiPath Orchestrator, go to the Automations tab for the My Workspace folder and find
Simple.Process
in the processes list. - Select Start a Job for the
Simple.Process
entry and choose Start.
Congratulations! You’ve now fully published, deployed and started your first process.
Now it's time to do runtime instance management.
Manage a business process
link- From the Automation Cloud portal, navigate to the Maestro service.
- Select Simple Process in the list of processes to open the All instances view for your process. You can use search to filter the list if needed.
- Select the latest instance to open the instance viewer. You will see the process execute live through each step (assuming the 5 second delay timer is still executing).
You can click on the model background to see Global variables and Action History as well as the Execution trail. You can click on a node in the model or the Execution trail to inspect Details and Variables for that execution step.
Congratulations! You’ve now fully managed your first process.
Now break our process so you can fix it!
Break and fix a process
linkEn este procedimiento, causaremos un fallo en la ejecución para utilizar la gestión de instancias para recuperarla.
- Go to Orchestrator, to the Automations tab for My Workspace folder and find Simple.Process in the Processes list.
- Select Start a Job for the Simple.Process entry but this time edit the Arguments before starting to break it.
- Select the Arguments tab and edit the
path
variable. Set the value to C and select Save. - Selecciona Inicio.
- Navigate to Maestro and select Simple Process in the list of Processes to open the All instances view for your process.
- Select the Which path? gateway step to see the No outgoing flow for gateway error which is to be expected since we have no configuration for
path==”C”
. - Click on the first step container or the model background to view the Global variables.
- Ensure the flow will follow a configured condition by updating the
path
variable for Manual start output (the second one) to A. - Select Update 1 variable to update the variable and add a comment for audit purposes.
- Select Retry, add a comment and choose Retry instance to retry the step with the new variable and watch the instance complete.
Note: You might need to refresh the page to see the instance complete.
- Look at the Action History to see the audit trail for our changes.
Congratulations! You successfully fixed a broken instance.
Migrate between versions of a process
linkpath
does not equal A
, modify the B route to a Not A route.
- Navega a Orchestrator.
- Ve a Mi espacio de trabajo.
- Ve a la pestaña Automatizaciones y busca Simple.Process en la lista de Procesos.
- Select Start a Job for the Simple.Process entry and choose Start.
- Select the Arguments tab and edit the
path
variable. - Set the value to C and choose Save.
- Selecciona Inicio.
Now fix your process so you can migrate this broken instance.
- Open your Simple Process in UiPath Studio.
- Select the Which path? gateway and open the properties panel.
- Change the B label to Not A and change the condition to
vars.path != A
- Change the task B task name to Not A task.
- Change the end event End B name to End Not A.
- Click Publish, select Orchestrator Personal Workspace Feed and click Publish.
Now migrate your broken instance to the new version.
- Navigate to Maestro, select Process instances, and choose Simple Process in the list of Processes to open the All instances view for your process.
- Click on the latest instance to open the instance viewer. You will see the process is in a failed state at the Which path? gateway.
Note: You might need to click refresh button for the list to see the latest instance.
- Select Migrate, choose the Target version for the process you just published (it should be 1.0.1 but might be different for you), provide a comment and select Migrate instance.
- Select Retry, add a comment and click Retry instance to retry the step with the new variable and watch the instance complete.
Note: You might need to refresh the page to see the instance complete.
- Look at the Action History to see the audit trail for your changes.
Congratulations! You successfully migrated a broken instance to a new version of the process!