# Menu configuration

![](/files/-Lb4SfmqFrkdnAyofLYl)

In order to show the item on the **/ia** menu you must open **menu.yml** and add the item name to the category you want (in this example I added it to the **hoes** category):

```yaml
hoes:
  enabled: true
  icon: ruby_hoe
  name: '&3&lHoes'
  #permission to allow user to see this category
  permission: 'custom.permission'
  items:
    - ruby_hoe
    - crystal_hoe
    - spinel_hoe
    - turquoise_hoe
    - aqua_hoe
    - amethyst_hoe
    - my_new_custom_hoe
```

You can notice there is a special category named **all**, it has a special property **show\_all\_items** which allows you to show all the items you created adding them to this category.\
If you want to hide some items from this GUI just use **hide\_items** property.

```yaml
all:
  enabled: true
  icon: ruby_block
  name: '&3&lAll'
  show_all_items: true
  # special tag to hide some items from the GUI
  hide_items:
      - icon_left_grey
      - icon_left_blue
      - icon_right_grey
```


---

# 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://lonedev.gitbook.io/itemsadder/menu-configuration.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.
