# Installation Guide

{% stepper %}
{% step %}
**Sign up with Highflame**

* Go to <https://studio.highflame.ai/> and sign up using your work email
* **Administrators:** When prompted, create a new organization.
* **Developers:** To join an existing organization, please request the organization administrator to send an invite link.
  {% endstep %}

{% step %}
**Installation**

After signing up, you’ll be taken to the Getting Started page. The required steps to install the *Code Agent Integration Package* called *Overwatch* on your local machine are below:

* Open the terminal on your system
* Install the Overwatch package globally

```
npm install -g @highflame/overwatch
```

> *Note: when you run the above command it will try to open a web browser and redirect you to highflame for authentication.*

* Start Overwatch

```
overwatch start
```

Voilá! Now you have successfully installed the Overwatch package, and you don't need to configure anything else; you can continue with your development workflow as usual.
{% endstep %}

{% step %}
**Accessing Local Dashboard**

* To view the key stats locally on your system, please run:

```
overwatch status
```

> Click on the url shown in the terminal output to see the key stats. The url will look like this: `http://localhost:<port>/dashboard`

The local dashboard will look something like this:

<figure><img src="/files/Njrs2TLmaxhan0TOJzKH" alt=""><figcaption><p>local dasbord</p></figcaption></figure>

The dashboard shows:

* **Sessions:** IDE sessions with event counts and threat counts.
* **Threats:** Blocked or flagged events (e.g., command injection, secrets).
* **Commands:** Shell and tool executions.
* **Events:** Full event stream.
* **MCP Scans:** Results of `overwatch scan` (servers, issues, severity).

> *Note: If you are the admin of the organization, please refer to* [*Discovery & Metrics*](/code-agents/discovery-and-metrics.md)
> {% endstep %}
> {% endstepper %}


---

# 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.highflame.ai/code-agents/installation-guide.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.
