> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.veiseule.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Comenzando

# Comenzando

Objetivo: pasar de cero a un primer chat funcional con una configuración mínima.

<Info>
  Chat más rápido: abra la Control UI (no se requiere configuración de canal). Ejecute `openclaw dashboard`
  y chatee en el navegador, o abra `http://127.0.0.1:18789/` en el
  <Tooltip headline="Gateway host" tip="The machine running the OpenClaw gateway service.">host del Gateway</Tooltip>.
  Documentación: [Dashboard](/web/dashboard) y [Control UI](/web/control-ui).
</Info>

## Prereqs

* Node 22 o posterior

<Tip>
  Verifique su versión de Node con `node --version` si no está seguro.
</Tip>

## Configuración rápida (CLI)

<Steps>
  <Step title="Install OpenClaw (recommended)">
    <Tabs>
      <Tab title="macOS/Linux">
        ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
        curl -fsSL https://openclaw.ai/install.sh | bash
        ```

        <img src="https://mintcdn.com/veiseuleai/24AKr3LwoEceqr8Z/assets/install-script.svg?fit=max&auto=format&n=24AKr3LwoEceqr8Z&q=85&s=d1c8efb00167ca918bd206e558373c8e" alt="Install Script Process" className="rounded-lg" width="1370" height="581" data-path="assets/install-script.svg" />
      </Tab>

      <Tab title="Windows (PowerShell)">
        ```powershell theme={"theme":{"light":"min-light","dark":"min-dark"}}
        iwr -useb https://openclaw.ai/install.ps1 | iex
        ```
      </Tab>
    </Tabs>

    ````
    ```
    <Note>
    Otros métodos de instalación y requisitos: [Instalar](/install).

    </Note>
    ```
    ````
  </Step>

  <Step title="Run the onboarding wizard">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    openclaw onboard --install-daemon
    ```

    ````
    ```
    El asistente configura la autenticación, los ajustes del Gateway y los canales opcionales.
    Consulte [Asistente de incorporación](/start/wizard) para más detalles.
    ```
    ````
  </Step>

  <Step title="Check the Gateway">
    Si instaló el servicio, ya debería estar en ejecución:

    `````
    ````
    ```bash
    openclaw gateway status
    ```
    ````
    `````
  </Step>

  <Step title="Open the Control UI">
    ```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
    openclaw dashboard
    ```
  </Step>
</Steps>

<Check>
  Si la Control UI carga, su Gateway está listo para usarse.
</Check>

## Comprobaciones opcionales y extras

<AccordionGroup>
  <Accordion title="Run the Gateway in the foreground">
    Útil para pruebas rápidas o solución de problemas.

    `````
    ````
    ```bash
    openclaw gateway --port 18789
    ```
    ````
    `````
  </Accordion>

  <Accordion title="Send a test message">
    Requiere un canal configurado.

    `````
    ````
    ```bash
    openclaw message send --target +15555550123 --message "Hello from OpenClaw"
    ```
    ````
    `````
  </Accordion>
</AccordionGroup>

## Variables de entorno útiles

If you run OpenClaw as a service account or want custom config/state locations:

* `OPENCLAW_HOME` establece el directorio raíz utilizado para la resolución interna de rutas.
* `OPENCLAW_STATE_DIR` reemplaza el directorio de estado.
* `OPENCLAW_CONFIG_PATH` reemplaza la ruta del archivo de configuración.

Referencia completa de variables de entorno: [Environment vars](/help/environment).

## Más profundo

<Columns>
  <Card title="Onboarding Wizard (details)" href="/start/wizard">
    Referencia completa del asistente de la CLI y opciones avanzadas.
  </Card>

  <Card title="macOS app onboarding" href="/start/onboarding">
    Flujo de primera ejecución para la app de macOS.
  </Card>
</Columns>

## Lo que tendrá

* Un Gateway en ejecución
* Autenticación configurada
* Acceso a la Control UI o un canal conectado

## Siguientes pasos

* Seguridad y aprobaciones de mensajes directos: [Emparejamiento](/channels/pairing)
* Conectar más canales: [Canales](/channels)
* Flujos de trabajo avanzados y desde el código fuente: [Configuración](/start/setup)
