UiPath Documentation
getting-started
latest
false
Guía del desarrollador de introducción
  • Introducción
    • Información general
    • Environment set up
  • Primeros pasos con los agentes de UiPath
  • Primeros pasos con los agentes de UiPath utilizando LangGraph
  • Crear un agente de código bajo en Studio Web
  • Añadir herramientas a tu agente de UiPath
  • Getting Started with UiPath Maestro Flow
Importante :
Este contenido se ha traducido mediante traducción automática. La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.

Environment set up

Install the UiPath CLI and log into your UiPath Cloud account, configure your coding agent with UiPath skills, and install the UiPath VS Code extensions.

Información general​

The tutorials in this Getting Started developer guide use a combination of the following:

This page centralizes the required installation steps for the list above, with validation steps to confirm successful installation.

Step 1 - Install the UiPath CLI and Tools​

The UiPath CLI (uip) is a cross-platform tool for UiPath authentication, project scaffolding, and deployment. It uses a plugin system: the base CLI handles auth, and you install tools for the project types you build. See the allowlist for tools installed automatically when you use them the first time. Each tutorial will include instructions for those that need to be manually installed.

  1. Instala la CLI base globalmente:

    npm install -g @uipath/cli
    npm install -g @uipath/cli
    
  2. Verifica la instalación:

    uip --version
    uip --version
    

    Debería ver 1.200.0 o posterior.

  3. Verify installed tools:

    uip tools list
    uip tools list
    

    Confirm you see a list of tools with their versions installed.

    {
       "Result": "Success",
       "Code": "ToolList",
       "Data": [
          {
             "Name": "solution-tool",
             "Version": "1.200.0",
             "Description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
             "CommandPrefix": "solution"
          },
          {
             "Name": "agent-tool",
             "Version": "1.200.0",
             "Description": "cli plugin for creating and managing UiPath low-code agents",
             "CommandPrefix": "agent"
          },
          {
             "Name": "codedagent-tool",
             "Version": "1.200.0",
             "Description": "Build, run, deploy, and manage AI Agents.",
             "CommandPrefix": "codedagent"
          },
          {
             "Name": "rpa-tool",
             "Version": "1.200.1",
             "Description": "Tool for creating and managing UiPath RPA projects",
             "CommandPrefix": "rpa"
          },
          {
             "Name": "maestro-tool",
             "Version": "1.200.0",
             "Description": "Create, debug, and run Maestro projects and jobs.",
             "CommandPrefix": "maestro"
          }
       ]
    }
    {
       "Result": "Success",
       "Code": "ToolList",
       "Data": [
          {
             "Name": "solution-tool",
             "Version": "1.200.0",
             "Description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
             "CommandPrefix": "solution"
          },
          {
             "Name": "agent-tool",
             "Version": "1.200.0",
             "Description": "cli plugin for creating and managing UiPath low-code agents",
             "CommandPrefix": "agent"
          },
          {
             "Name": "codedagent-tool",
             "Version": "1.200.0",
             "Description": "Build, run, deploy, and manage AI Agents.",
             "CommandPrefix": "codedagent"
          },
          {
             "Name": "rpa-tool",
             "Version": "1.200.1",
             "Description": "Tool for creating and managing UiPath RPA projects",
             "CommandPrefix": "rpa"
          },
          {
             "Name": "maestro-tool",
             "Version": "1.200.0",
             "Description": "Create, debug, and run Maestro projects and jobs.",
             "CommandPrefix": "maestro"
          }
       ]
    }
    

Paso 2: instala las habilidades de UiPath para tu agente de codificación (opcional)​

If you are using a coding agent (Claude Code, Cursor, Copilot, Gemini, or Codex) alongside the CLI, installing the UiPath skills gives it knowledge of agent project structure, CLI commands, and best practices. Before running the command to install the skills for your preferred coding agent, first make sure you have it installed. The example below installs the skills for Claude Code:

uip skills install --agent claude
uip skills install --agent claude

Replace claude with your agent if you are using a different one. You can run uip skills install --help and look at the --agent <agent> option for the list of supported coding agents.

Skills install globally to your home directory (~/.uipath/.skills/) and are available in every project from this point forward.

Step 3 - Install the UiPath Maestro extension for VS Code (optional)​

Tutorials that build a Maestro Flow, a BPMN diagram, or a case plan use this extension to open those files on a visual canvas instead of as raw text. It also signs in to your tenant and packages and deploys from the local workspace.

  1. Install UiPath Maestro from the VS Code Marketplace or the Open VSX Registry.

    The extension requires VS Code 1.110.0 or higher. Check your version in Code > About Visual Studio Code, or run code --version.

  2. Vuelva a cargar VS Code cuando se le solicite.

  3. Selecciona el icono de UiPath en la barra de actividad para abrir la vista de UiPath.

  4. En la sección Conectar , selecciona Iniciar sesión.

  5. Complete the sign-in in the browser window that opens.

    If the CLI is not installed yet, accept the prompt and the extension installs it for you with npm. Sign-in uses an OAuth browser flow with a callback on localhost port 8104; if it fails, a stale process may be holding that port.

  6. Run UiPath: Select Environment from the Command Palette (Ctrl/Cmd+Shift+P) and confirm your environment. The default is Cloud.

  7. Run UiPath: Select Tenant and choose the tenant you want to build in.

The extension will now populate the Resources section with folders and Orchestrator resources for that tenant.

The extension manages its own copy of the CLI. The version it installs need not match the one you installed in Step 1. Run uip --version after signing in, and if it moved backwards, npm install -g @uipath/cli returns you to the current release.

Consejo:

Working in a remote workspace? In Windows Subsystem for Linux (WSL), Secure Shell (SSH), Codespaces, and dev container workspaces, the extension runs on the remote host, so the UiPath CLI must be installed there rather than on your local machine.

Step 4 - Authenticate to UiPath​

After installing the CLI, use the steps below to authenticate it, and select the tenant to use.

  1. Autentica el CLI en tu cuenta de UiPath:

    uip login
    uip login
    

    Esto abre una ventana del navegador donde inicias sesión y seleccionas tu tenant. Una vez completado, el terminal confirma que has iniciado sesión.

  2. Verify your login status by confirming you see "Status": "Logged in" by running:

    uip login status
    uip login status
    

You are now ready to follow the tutorials.

¿Te ha resultado útil esta página?

Conectar

¿Necesita ayuda? Soporte

¿Quiere aprender? UiPath Academy

¿Tiene alguna pregunta? Foro de UiPath

Manténgase actualizado