> 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/best-practices/naming-conventions/groups.md).

# Groups

If an app has over 10 modules, the modules should be put into groups. These groups should be named after the entity with which the modules work or the type of job the modules are executing.

Consider the following when you decide the order of groups and modules in your app:

* Triggers
  * All instant triggers
  * All polling triggers
* Generic modules
  * Sorted in groups, if possible
  * Example of a group: RECORDS
* Typical modules divided by business logic
  * Sorted in groups (examples: TASKS, DEALS, CONTACTS)
  * Sorted from the most important to the least important
  * Ordered by RCUD logic (read, create, update, delete)
* Other
  * Examples: Make an API call, Execute a GraphQL query

<table><thead><tr><th valign="top">Example of the order of groups</th><th valign="top">Example of the order of modules in a group</th></tr></thead><tbody><tr><td valign="top"><ul><li>TRIGGERS</li><li>FORMS</li><li>TASKS</li><li>DEALS</li><li>OTHER</li></ul></td><td valign="top"><p>FORMS</p><ul><li>List forms</li><li>Get a form</li><li>Create a form</li><li>Update a form</li><li>Delete a form</li></ul></td></tr></tbody></table>

When dividing modules into groups by business logic, if every group only has one module, do not apply custom grouping. Instead, use the default groups: ACTIONS and OTHER.

<table><thead><tr><th valign="top">Correct group structure</th><th valign="top">Incorrect group structure</th></tr></thead><tbody><tr><td valign="top"><img src="/files/qK7aSA6OUl2ZgCeqfMRR" alt=""></td><td valign="top"><img src="/files/JyUbicMOdgQXjAnhAyuO" alt=""></td></tr></tbody></table>


---

# 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/best-practices/naming-conventions/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.
