# APM Installation Guide

#### Prerequisites

Before running the installation commands, ensure you have the following installed:

* **Node.js** (LTS version recommended)
* **Git**
* **PowerShell** (for Windows users) or **Terminal** (for Linux/Unix users)

#### 1. Environment Setup

1. Go to the Mantis directory you downloaded and navigate to full-version or seed
2. Download and initialize the APM executable on your system. This set up the core logic required to manage AI agent configurations and skills.

{% tabs %}
{% tab title="Windows" %}
Run the following command in your terminal:

```
npm run setup:apm:windows
```

{% endtab %}

{% tab title="Linux/macOs" %}
Run the following command in your terminal:

```
npm run setup:apm:linux
```

{% endtab %}
{% endtabs %}

#### Verification

You can verify the installation by running:

```
apm --version
```

#### 2. Package Installation

> **Note:** The authentication token is pre-configured within these scripts, so no manual PAT handling is required.

{% tabs %}
{% tab title="Windows" %}
Run the following command in your terminal:

```
npm run install:apm:windows
```

{% endtab %}

{% tab title="Linux/macOs" %}
Run the following command in your terminal:

```
npm run install:apm:linux
```

{% endtab %}
{% endtabs %}


---

# 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://codedthemes.gitbook.io/mantis/internationalization.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.
