# LEU File

The `loademup.yml` file defines which **actions** are officially supported by a plugin when managed through LoadEmUp. This helps LoadEmUp determine which operations (like load, reload, enable) are safe and compatible for that specific plugin.

### ❓How to use

To declare which actions your plugin safely supports when managed by **LoadEmUp**, simply include a `loademup.yml` file in your plugin’s resources folder — right alongside your `plugin.yml`.

This helps server admins and LoadEmUp itself understand what operations (like reload or enable) are safe to perform on your plugin.

📁 **File Location**

Place it in: `src/main/resources/loademup.yml`

### 📄 Example

{% code title="loademup.yml" %}

```yaml
version: 0.1.0
supported: false

supported-actions:
  - LOAD
  - UNLOAD
  - RELOAD
  - ENABLE
  - DISABLE
  - ALL
```

{% endcode %}

### 🔍 Fields

* `version`: The schema version of the `loademup.yml` file.
* `supported`: Whether the plugin supports LoadEmUp's dynamic management system.
* `supported-actions`: A list of allowed actions (`LOAD`, `UNLOAD`, `RELOAD`, `ENABLE`, `DISABLE`, `ALL`) that are considered safe for this plugin.


---

# 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://gurwiworks.gitbook.io/loademup-wiki/developer/leu-file.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.
