> For the complete documentation index, see [llms.txt](https://kite-loader.gitbook.io/kite-loader-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kite-loader.gitbook.io/kite-loader-documentation/getting-started.md).

# Getting Started

## Prerequisites

* **Steam** installed on Windows
* [**Millennium**](https://steambrew.app/) client mod installed
* [**LuaTools**](https://github.com/madoiscool/ltsteamplugin) plugin installed via Millennium

## Installation

### Option 1: One-Line PowerShell Install

```powershell
irm https://getkite.tech/install.ps1 | iex
```

This installs the `luatools` CLI globally. Then install the mod loader:

```powershell
kiteloader install
```

### Option 2: Manual Install

1. Download the [latest release](https://github.com/nitaybl/kite/releases)
2. Copy `mod_loader.js` to `Steam/plugins/luatools/public/`
3. Copy `mod_loader.py` and `mod_auto_update.py` to `Steam/plugins/luatools/backend/`
4. Create a `mods/` folder in `Steam/plugins/luatools/`
5. Restart Steam

## Verify Installation

Run the built-in diagnostic:

```powershell
luatools doctor
```

You should see all green checkmarks:

```
  LuaTools installed:      YES
  Mods directory:           YES
  Mod Loader (JS):          YES
  Mod Loader (Backend):     YES
```

## Installing Your First Mod

```powershell
# Install the credits mod that ships with the mod loader
luatools mod install https://github.com/nitaybl/kite
```

Or manually copy a mod folder into `Steam/plugins/luatools/mods/`.

## Uninstalling

The mod loader can be cleanly removed without affecting LuaTools:

```powershell
luatools uninstall
```

This removes only the mod loader files (`mod_loader.js`, `mod_loader.py`). You'll be asked if you want to also remove installed mods.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://kite-loader.gitbook.io/kite-loader-documentation/getting-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
