# Getting Started

1\. Select your package manager and run the command to create your new project

{% tabs %}
{% tab title="NPM" %}

```bash
npx ult <project>
```

{% endtab %}

{% tab title="Yarn" %}

```bash
yarn dlx ult <project>
```

{% endtab %}
{% endtabs %}

2\. Choose a task from the table below to run with your selected package manager

{% tabs %}
{% tab title="NPM" %}

```bash
npm run <task>
```

{% endtab %}

{% tab title="Yarn" %}

```bash
yarn run <task>
```

{% endtab %}
{% endtabs %}

| Task          | Description                    |
| ------------- | ------------------------------ |
| web           | Start development on Web       |
| android       | Start development on Android   |
| ios           | Start development on iOS       |
| macos         | Start development on MacOS     |
| windows       | Start development on Windows   |
| build-web     | Build a production Web bundle  |
| build-android | Build a production Android app |
| build-ios     | Build a production iOS app     |
| build-macos   | Build a production MacOS app   |
| build-windows | Build a production Windows app |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ult.dev/master.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
