> For the complete documentation index, see [llms.txt](https://docs.blixaozric.online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.blixaozric.online/kit-harbor/configuration/config.yml.md).

# config.yml

The main configuration file. It contains KitHarbor's core settings — your license key, inventory handling, cooldown behavior, command toggles, and integration hooks.

{% hint style="warning" %}
Your license key goes in the `LICENSE` section. See the [License Activation](file:///0473461/license-activation.md) page for details.
{% endhint %}

```yaml
# KitHarbor Configuration

# Author: blixaozric | Version: 1.6.0

GENERAL:
  LANGUAGE: "en"
  DEBUG: false
  CHECK-FOR-UPDATES: true

LICENSE:
  KEY: "XXXX-XXXX-XXXX-XXXX"

INVENTORY:
  DROP-ON-FULL: false       # drop overflow items on ground
  QUEUE-UNCLAIMED: true     # store items, deliver on next join

COOLDOWNS:
  STORE-ON-RESTART: true    # persist cooldowns through restarts
  DEFAULT: 86400            # seconds (86400 = 24 hours)

COMMANDS:
  KIT: true                 # /kit
  MENU: true                # /kh menu
  STARTERKIT: true          # /kh starterkit
  HISTORY: true             # /kit history
  SETTINGS: true            # /kh settings
  HELP: true                # /kit help
  PREVIEW: true             # /kit preview

HOOKS:
  LUCKPERMS: true           # per-kit permission nodes
  VAULT: true               # economy cost to claim kits
  PLACEHOLDERAPI: true      # %kitharbor_cooldown_<kit>%

MESSAGES:
  PREFIX: "&8[&#0099FBKitHarbor&8]&r "
  NO-PERMISSION: "&cYou don't have permission to use this kit."
  KIT-NOT-FOUND: "&cKit not found."
  COOLDOWN: "&cYou must wait &#66C2FF{time} &cbefore claiming this kit again."
  INVENTORY-FULL: "&cYour inventory is full. Items will be delivered when you have space."
  CLAIM-SUCCESS: "&aYou claimed the &#66C2FF{kit} &akit!"
```


---

# 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://docs.blixaozric.online/kit-harbor/configuration/config.yml.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.
