> For the complete documentation index, see [llms.txt](https://developers.make.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.make.com/custom-apps-documentation/app-components/groups.md).

# Groups

## Default groups

When creating a new app, new modules are automatically added to the `Other` group. If you've never used this feature in your app before, all of your modules will be placed in this group by default and displayed in categories based on their function.

{% tabs %}
{% tab title="Occurrence in the module" %}

<div align="left"><img src="/files/voQ56PafrlaPjF7uixZg" alt="" width="323"></div>
{% endtab %}

{% tab title="Source" %}

```json
[
    {
        "label": "Other",
        "modules": [
            "createTask", 
            "updateTask", 
            "getTask", 
            "listTasks",
            "listNotes",
            "watchTasks",
            "watchNotes"
         ]
     }
 ]
            
```

{% hint style="info" %}
When there's only a single `Other` group, the modules are grouped according to their type.
{% endhint %}
{% endtab %}
{% endtabs %}

## Change the groups and order

By changing the **Groups** file, you can set up as many groups as you want and group the modules into logical blocks. Once you create a new group and put a single module there, your app will no longer use the default grouping.

{% tabs %}
{% tab title="Occurrence in a module" %}

<div align="left"><img src="/files/jxJcvR1MNErG7YMyLD1H" alt="" width="323"></div>
{% endtab %}

{% tab title="Source" %}

```json
[
  {
    "label": "Notes",
    "modules": [
      "watchNotes",
      "listNotes"
    ]
  },
  {
        "label": "Tasks",
        "modules": [
            "watchTasks",
            "createTask",
            "updateTask",
            "getTask",
            "listTask"
         ]
     }
]
            
```

{% hint style="info" %}
The modules are displayed **in the same order** as they are specified in the Groups section.
{% endhint %}
{% endtab %}
{% endtabs %}

One module can belong to one or more groups, but it has to belong to at least one. You won't be allowed to save the group's configuration otherwise.

{% tabs %}
{% tab title="Source" %}

```json
[
    {
        "label": "Notes",
        "modules": [
            "watchNotes",
            "listNotes",
           ]
    },
    {
        "label": "Tasks",
        "modules": [
            "watchTasks",
            "createTask", 
            "updateTask", 
            "listTask"
         ]
     }
 ]
            
```

{% hint style="info" %}
This code produces the error: `Not categorized module(s): getTask`
{% endhint %}
{% endtab %}
{% endtabs %}


---

# 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://developers.make.com/custom-apps-documentation/app-components/groups.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.
