From 930025df4289e62cb4722de399b51e2734adc9bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Soko=C5=82owski?= Date: Mon, 18 May 2026 10:20:24 +0200 Subject: [PATCH 1/6] Add Maia Agent Skills documentation --- .../refguide/mendix-ai-assistance/_index.md | 1 + .../mendix-ai-assistance/maia-make/_index.md | 1 + .../maia-make/maia-agent-skills.md | 103 ++++++++++++++++++ 3 files changed, 105 insertions(+) create mode 100644 content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md diff --git a/content/en/docs/refguide/mendix-ai-assistance/_index.md b/content/en/docs/refguide/mendix-ai-assistance/_index.md index ca4b2a654f8..385db8b96dc 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/_index.md @@ -52,6 +52,7 @@ Guidance: * **Maia Chat** – a built-in chat interface powered by Generative AI in Studio Pro. It answers questions about app development in Mendix, including how to apply concepts, best practices, and development patterns. For more information, see [Maia Chat](/refguide/maia-chat/). * **Maia Learn** – helps you to quickly learn Mendix core concepts and get started with Studio Pro. For more information, see [Maia Learn](/refguide/maia-learn/). * **Maia Explain** – helps you easily understand a microflow or a nanoflow. It explains the general purpose of the logic and highlights specific technical details to help you understand the logic further. For more information, see [Maia Explain](/refguide/maia-explain/). +* **Maia Agent Skills** – lets you define modular, reusable instructions that extend Maia with domain-specific knowledge. Maia applies them automatically whenever relevant, eliminating the need to repeat the same context across conversations. For more information, see [Maia Agent Skills](/refguide/maia-agent-skills/). Recommenders: diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md index ef1778aefef..76f6cbc2d3e 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md @@ -87,6 +87,7 @@ For more information on how each Maia Make capability work, refer to the followi * [Maia MCP Client](/refguide/maia-mcp/) * [Studio Pro MCP Server](/refguide/studio-pro-mcp-server/) * [Maia Web Fetch](/refguide/maia-web-fetch/) +* [Maia Agent Skills](/refguide/maia-agent-skills/) In Studio Pro 11.8 and above, most of the features described in the documents above are available only through the chat interface. There are no separate entry points to these features in their respective editors. [Maia Explain](/refguide/maia-explain/) is an exception. You can still access this feature by right-clicking the documents (for example, microflows or pages) in the **App Explorer** and the **Maia Explain** option is in the context menu. diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md new file mode 100644 index 00000000000..36a25f27143 --- /dev/null +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md @@ -0,0 +1,103 @@ +--- +title: "Maia Agent Skills" +linktitle: "Agent Skills" +url: /refguide/maia-agent-skills/ +weight: 88 +description: "Describes how to create and manage agent skills that equip Maia with domain-specific knowledge, applied automatically whenever relevant." +#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details. +--- + +## Introduction + +{{% alert color="info" %}} +This feature is released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.11 and above. + +To use agent skills, an internet connection and signing in to Studio Pro are required. +{{% /alert %}} + +Agent skills are modular, reusable instructions that extend Maia's capabilities with domain-specific knowledge—giving it the context, workflows, and guidance it needs to work the way your team works. + +Instead of typing the same context into every chat, you define agent skills once and Maia applies them automatically whenever relevant, eliminating the need to repeat the same guidance across conversations. + +Use agent skills to equip Maia with the domain knowledge and conventions it needs—whether that is company-wide standards or team-specific workflows. For example, a skill capturing your company's Mendix naming conventions means Maia applies them consistently whenever it generates entities, attributes, or microflows—without you having to mention them each time. + +For guidance on writing effective skills, see [Best Practices](https://agentskills.io/skill-creation/best-practices) and [Optimizing Descriptions](https://agentskills.io/skill-creation/optimizing-descriptions) in the [Agent Skills documentation](https://agentskills.io/). + +## How Agent Skills Work + +At the start of each chat session, Maia becomes aware of all agent skills in your project. As you work, Maia picks up the relevant skill content automatically—you do not need to reference or invoke skills explicitly. + +If you add or edit a skill while a session is active, those changes take effect the next time you start a chat. + +For more on how skills load and when they apply, see the [Agent Skills specification](https://agentskills.io/specification). + +## Directory Structure {#directory-structure} + +Skills are stored in a `skillssource/` directory at the root of your app directory. You can also manage skills directly in the file system—for example, to copy in skills from another project. After making changes in the file system, go to **App** > **Synchronize App Directory** (shortcut: F4) to make the changes visible in Studio Pro. + +``` +skillssource/ + your-skill/ + SKILL.md + references/ + GLOSSARY.md + NOTES.md +``` + +### SKILL.md Format {#skill-md-format} + +Each `SKILL.md` file must include YAML frontmatter at the top, followed by the skill content in Markdown: + +```yaml +--- +name: your-skill +description: Applies company-wide naming conventions for entities, attributes, and microflows. +--- + +Write your skill instructions here in plain Markdown. Use the `references/` subdirectory +to add supplementary content and refer to it from here as needed. + +See [my-reference](references/my-reference.md) for details. +``` + +| Field | Required | Description | +| --- | --- | --- | +| `name` | Yes | Must match the skill's parent directory name exactly. See the [Agent Skills specification](https://agentskills.io/specification#name-field) for full naming rules. | +| `description` | Yes | See the [Agent Skills specification](https://agentskills.io/specification#description-field). | + +The `name` field must match the skill's parent directory name exactly—a mismatch prevents the skill from loading. For example, if the skill directory is `skillssource/your-skill/`, the `name` field must be `your-skill`. + +## Creating a Skill {#creating-a-skill} + +To create a new agent skill: + +1. In the **App Explorer**, expand **Maia** > **skills**. +2. Right-click **skills** and click **Add** > **Skill**. +3. Enter a name for the skill. + +Studio Pro creates the new skill. Open the skill from the **App Explorer** to add your content. + +## Adding Reference Files {#reference-files} + +Reference files let you keep your skill focused by moving supplementary content into separate documents—a glossary of domain terms, a data dictionary, or detailed architecture notes, for example. Maia accesses reference file content on demand, only when relevant to your request. + +To add a reference file to a skill: + +1. In the **App Explorer**, under **Maia** > **skills**, right-click the skill you want to add a reference to. +2. Click **Add** > **Reference**. +3. Enter a name for the reference file. + +For more on how skills and reference files load, see the [Agent Skills specification](https://agentskills.io/specification#progressive-disclosure). + +## Limitations {#limitations} + +* Only Markdown files are supported as reference files. Files in other formats are ignored. +* Changes you make to skills take effect the next time you start a chat. + +## Read More + +* [Maia Make Capabilities](/refguide/maia-make/) +* [Mendix AI Assistance (Maia)](/refguide/mendix-ai-assistance/) +* [Maia Chat](/refguide/maia-chat/) +* [Agent Skills Best Practices](https://agentskills.io/skill-creation/best-practices) – guidance on writing effective skill content +* [Agent Skills Specification](https://agentskills.io/specification) – the full specification for the agent skills format From d6f75345f92cb8ed034a8e740e9970c31445b96b Mon Sep 17 00:00:00 2001 From: Yiyun Liao Date: Tue, 19 May 2026 17:11:32 +0200 Subject: [PATCH 2/6] Language and structure review --- .../maia-make/maia-agent-skills.md | 70 +++++++++---------- 1 file changed, 34 insertions(+), 36 deletions(-) diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md index 36a25f27143..0eb9ae00ab6 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md @@ -12,37 +12,26 @@ description: "Describes how to create and manage agent skills that equip Maia wi {{% alert color="info" %}} This feature is released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.11 and above. -To use agent skills, an internet connection and signing in to Studio Pro are required. +To use Maia Agent Skills, an internet connection and signing in to Studio Pro are required. {{% /alert %}} -Agent skills are modular, reusable instructions that extend Maia's capabilities with domain-specific knowledge—giving it the context, workflows, and guidance it needs to work the way your team works. +Maia Agent Skills are modular, reusable instructions that extend Maia's capabilities with domain-specific knowledge, giving it the context, workflows, and guidance it needs to work the way your team works. -Instead of typing the same context into every chat, you define agent skills once and Maia applies them automatically whenever relevant, eliminating the need to repeat the same guidance across conversations. +Instead of typing the same context into every chat, you define agent skills once, and Maia applies them automatically whenever relevant. This eliminates the need to repeat the same guidance across conversations. -Use agent skills to equip Maia with the domain knowledge and conventions it needs—whether that is company-wide standards or team-specific workflows. For example, a skill capturing your company's Mendix naming conventions means Maia applies them consistently whenever it generates entities, attributes, or microflows—without you having to mention them each time. +Use agent skills to equip Maia with the domain knowledge and conventions it needs, whether those are company-wide standards or team-specific workflows. For example, a skill capturing your company's Mendix naming conventions means Maia applies them consistently whenever it generates entities, attributes, or microflows without you having to mention them each time. -For guidance on writing effective skills, see [Best Practices](https://agentskills.io/skill-creation/best-practices) and [Optimizing Descriptions](https://agentskills.io/skill-creation/optimizing-descriptions) in the [Agent Skills documentation](https://agentskills.io/). +For guidance on writing effective skills, see [Best Practices for Skill Creators](https://agentskills.io/skill-creation/best-practices) and [Optimizing Skill Descriptions](https://agentskills.io/skill-creation/optimizing-descriptions) in the [Agent Skills documentation](https://agentskills.io/). -## How Agent Skills Work - -At the start of each chat session, Maia becomes aware of all agent skills in your project. As you work, Maia picks up the relevant skill content automatically—you do not need to reference or invoke skills explicitly. +## Creating an Agent Skill {#creating-a-skill} -If you add or edit a skill while a session is active, those changes take effect the next time you start a chat. +To create a new agent skill in Studio Pro, follow these steps: -For more on how skills load and when they apply, see the [Agent Skills specification](https://agentskills.io/specification). - -## Directory Structure {#directory-structure} +1. In the **App Explorer**, expand **Maia** > **skills**. +2. Right-click **skills** and click **Add** > **Skill**. +3. Enter a name for the skill. -Skills are stored in a `skillssource/` directory at the root of your app directory. You can also manage skills directly in the file system—for example, to copy in skills from another project. After making changes in the file system, go to **App** > **Synchronize App Directory** (shortcut: F4) to make the changes visible in Studio Pro. - -``` -skillssource/ - your-skill/ - SKILL.md - references/ - GLOSSARY.md - NOTES.md -``` +Studio Pro creates the `SKILL.md` file. You can continue adding the skill content. ### SKILL.md Format {#skill-md-format} @@ -62,32 +51,41 @@ See [my-reference](references/my-reference.md) for details. | Field | Required | Description | | --- | --- | --- | -| `name` | Yes | Must match the skill's parent directory name exactly. See the [Agent Skills specification](https://agentskills.io/specification#name-field) for full naming rules. | -| `description` | Yes | See the [Agent Skills specification](https://agentskills.io/specification#description-field). | +| `name` | Yes | Must match the skill's parent directory name exactly. For full naming rules, see [Agent Skills Specification](https://agentskills.io/specification#name-field). | +| `description` | Yes | See [Agent Skills Specification](https://agentskills.io/specification#description-field). | -The `name` field must match the skill's parent directory name exactly—a mismatch prevents the skill from loading. For example, if the skill directory is `skillssource/your-skill/`, the `name` field must be `your-skill`. +The `name` field must match the skill's parent directory name exactly. A mismatch prevents the skill from loading. For example, if the skill directory is `skillssource/your-skill/`, the `name` field must be `your-skill`. -## Creating a Skill {#creating-a-skill} +### Directory Structure {#directory-structure} -To create a new agent skill: +Skills are stored in the `skillssource/` directory at the root of your application directory. You can also manage skills directly in the file system, for example, to copy in skills from another project. After making changes in the file system, go to **App** > **Synchronize App Directory** (keyboard shortcut: F4) to make the changes visible in Studio Pro. -1. In the **App Explorer**, expand **Maia** > **skills**. -2. Right-click **skills** and click **Add** > **Skill**. -3. Enter a name for the skill. - -Studio Pro creates the new skill. Open the skill from the **App Explorer** to add your content. +``` +skillssource/ + your-skill/ + SKILL.md + references/ + GLOSSARY.md + NOTES.md +``` ## Adding Reference Files {#reference-files} -Reference files let you keep your skill focused by moving supplementary content into separate documents—a glossary of domain terms, a data dictionary, or detailed architecture notes, for example. Maia accesses reference file content on demand, only when relevant to your request. +Reference files let you keep your skill focused by moving supplementary content into separate documents, such as a glossary of domain terms, a data dictionary, or detailed architecture notes. Maia accesses reference file content on demand, only when relevant to your request. -To add a reference file to a skill: +To add a reference file to a skill, follow these steps: 1. In the **App Explorer**, under **Maia** > **skills**, right-click the skill you want to add a reference to. 2. Click **Add** > **Reference**. 3. Enter a name for the reference file. -For more on how skills and reference files load, see the [Agent Skills specification](https://agentskills.io/specification#progressive-disclosure). +For more information on how skills and reference files load, and when they apply, see [Agent Skills Specification](https://agentskills.io/specification#progressive-disclosure). + +## How Agent Skills Work + +At the start of each chat session, Maia becomes aware of all agent skills in your project. As you work, Maia picks up the relevant skill content automatically. You do not need to reference or invoke skills explicitly. + +If you add or edit a skill while a session is active, those changes take effect the next time you start a chat. ## Limitations {#limitations} @@ -99,5 +97,5 @@ For more on how skills and reference files load, see the [Agent Skills specifica * [Maia Make Capabilities](/refguide/maia-make/) * [Mendix AI Assistance (Maia)](/refguide/mendix-ai-assistance/) * [Maia Chat](/refguide/maia-chat/) -* [Agent Skills Best Practices](https://agentskills.io/skill-creation/best-practices) – guidance on writing effective skill content +* [Best Practices for Skill Creators](https://agentskills.io/skill-creation/best-practices) – guidance on writing effective skill content * [Agent Skills Specification](https://agentskills.io/specification) – the full specification for the agent skills format From e5e3131e5c3ba4449863e467e2e1a328a1d795d0 Mon Sep 17 00:00:00 2001 From: Yiyun Liao Date: Wed, 20 May 2026 13:55:57 +0200 Subject: [PATCH 3/6] Review the "Maia Make Capabilities" index page and consistency check overall --- .../refguide/mendix-ai-assistance/_index.md | 2 +- .../mendix-ai-assistance/maia-make/_index.md | 80 +++++++++---------- .../maia-make/maia-agent-skills.md | 4 +- .../maia-make/maia-for-microflows.md | 4 +- .../maia-make/maia-for-oql.md | 2 +- .../maia-make/maia-mcp.md | 2 +- .../maia-make/maia-web-fetch.md | 2 +- .../maia-make/studio-pro-mcp-server.md | 2 +- 8 files changed, 50 insertions(+), 48 deletions(-) diff --git a/content/en/docs/refguide/mendix-ai-assistance/_index.md b/content/en/docs/refguide/mendix-ai-assistance/_index.md index 385db8b96dc..4702718b52c 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/_index.md @@ -45,7 +45,7 @@ Starting point for app creation: * **Start with Maia** - a starting point in Studio Pro that helps you to start the app development process. Based on a required text description and an optional image or PDF, it generates an app that includes a domain model, data management overview pages, test data, and a tailored homepage. For more information, see [Start with Maia](/refguide/start-with-maia/). * **Maia Make** - a unified conversational interface in Studio Pro that groups all AI-assisted development capabilities into a single chat experience. With this interface, everything happens in one place. Start a conversation, describe what you need, and Maia generates the necessary app artifacts, such as a new domain model, pages, and microflows. You can also ask it to explain documents for you, including your app logic and pages. - This unified conversational interface is released in Studio Pro 11.8. For more information, see [Maia Make](/refguide/maia-make/). + This unified conversational interface was released in Studio Pro 11.8. For more information, see [Maia Make](/refguide/maia-make/). Guidance: diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md index 76f6cbc2d3e..7cac57fcb38 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md @@ -10,33 +10,57 @@ description_list: true ## Introduction {{% alert color="info" %}} -Maia Make capabilities are grouped into a conversational interface, which is available in Studio Pro 11.8 and above. +Maia Make capabilities are available in Studio Pro 11.8 and above. -To use this interface and Maia Make capabilities, an internet connection and signing in to Studio Pro are required. +To use Maia Make capabilities, an internet connection and signing in to Studio Pro are required. {{% /alert %}} Maia Make is a set of AI-assisted development capabilities in Studio Pro that are available through a unified conversational interface. Describe your requirements in natural language, and Maia generates development artifacts such as data structures, pages, and microflows. You can also ask Maia to provide explanations of your existing documents, such as microflows, workflows, and pages. Moreover, this interface allows you to integrate with external tools, such as Playwright and Figma, via MCP Servers, and it supports story-based development by generating app artifacts based on existing user stories. -The key Maia Make capabilities are as follows: +## Maia Capabilities Overview -* Conversational assistance for general Mendix development queries -* Explanations of documents to clarify existing implementation details -* Generation of documents from natural language descriptions, such as domain model, pages, and microflows -* Integration with external tools, such as Playwright and Figma, via compatible MCP Servers -* Story-based development to help realize existing user stories -* Support for PDF and image inputs to help Maia better understand your requirements -* Adding relevant documents, such as microflows and pages, to the interface to give Maia a more desired context -* Editing existing documents, including renaming elements inside of documents such as entities, attributes, and microflow parameters -* Removing elements from documents, enabling more advanced refactoring (in Studio Pro 11.9 and above) -* Undoing changes generated on a per-document basis (in Studio Pro 11.9 and above) +The following table lists the major Maia Make capabilities, their descriptions, and the Studio Pro versions in which they were introduced as part of Maia Make: -{{% alert color="info" %}} -Support for workflows, view entities, enumerations, constants, modules, Java actions, and JavaScript actions was introduced in Studio Pro 11.9. In this version, Java actions are read-only; they can be used in microflows and explained. JavaScript actions can only be explained. +| Capability | Description | Available in Maia Make from | +| --- | --- | --- | +| [Maia Chat](/refguide/maia-chat/) | Answers questions about all aspects of Mendix development. | Studio Pro 11.8 | +| [Maia Explain](/refguide/maia-explain/) | Explains the purpose and logic of existing documents such as microflows and pages. | Studio Pro 11.8 | +| [Maia for Domain Model](/refguide/maia-for-domain-model/) | Generates and explains domain models. | Studio Pro 11.8 | +| [Maia for Pages](/refguide/maia-for-pages/) | Generates pages and widgets from text or image input. | Studio Pro 11.8 | +| [Maia for Microflows](/refguide/maia-for-microflows/) | Generates microflow logic from natural language descriptions. | Studio Pro 11.8 | +| [Maia for Workflows](/refguide/maia-for-workflows/) | Generates workflows from natural language or image input. | Studio Pro 11.9 | +| [Maia for OQL](/refguide/maia-for-oql/) | Generates and manages OQL queries. | Studio Pro 11.9 | +| [Maia MCP Client](/refguide/maia-mcp/) | Connects Maia to external MCP servers, giving it access to third-party tools during chat. | Studio Pro 11.8 | +| [Studio Pro MCP Server](/refguide/studio-pro-mcp-server/) | Exposes Studio Pro as an MCP server for use by external AI tools. | Studio Pro 11.10 | +| [Maia Web Fetch](/refguide/maia-web-fetch/) | Fetches and reads content from public websites and APIs during chat. | Studio Pro 11.10 | +| [Maia Agent Skills](/refguide/maia-agent-skills/) | Extends Maia with reusable, domain-specific knowledge that applies automatically when relevant. | Studio Pro 11.11 | + +In addition to the core capabilities listed above, Maia Make includes the following features: + +| Capability | Description | Available in Maia Make from | +| --- | --- | --- | +| Story-based development | Generates app artifacts based on existing user stories to support story-driven development workflows. | Studio Pro 11.8 | +| PDF/image support | Allows you to provide PDFs and images as input to help Maia better understand your requirements. | Studio Pro 11.8 | +| Adding documents as context | Lets you add relevant documents, such as microflows and pages, to provide Maia with additional context during chat. | Studio Pro 11.8 | +| Editing existing documents | Enables Maia to modify existing documents, including renaming elements such as entities, attributes, and microflow parameters. | Studio Pro 11.8 | +| Removing elements | Allows Maia to remove elements from documents to support more advanced refactoring tasks. | Studio Pro 11.9 | +| Undo support | Allows you to undo Maia-generated changes on a per-document basis. | Studio Pro 11.9 | + +### Other Supported Document Types + +In Studio Pro 11.9, support for enumerations, constants, modules, Java actions, and JavaScript actions was added. In this version, Java actions are read-only; they can be used in microflows and explained. JavaScript actions can only be explained. Starting with Studio Pro 11.10, Maia can generate JavaScript actions, add parameters to existing ones, and create or update the JavaScript file associated with a JavaScript action. -{{% /alert %}} + +### Support for Folder Structure + +In Studio Pro 11.10 and above, Maia understands and leverages the existing folder structure within your Mendix applications for all documents except for pages. This enables Maia to: + +* Organize documents into folders: When creating new documents, Maia can place them directly into relevant folders, respecting your project's organization. +* Follow existing folder structures: Maia works within your established folder hierarchy, making it easier to maintain consistency. +* Adhere to Mendix best practices: Maia can help organize documents according to the standard Mendix best practices for folder structure. For detailed guidance on optimal organization of folders, refer to the [Folder Structure](/refguide/naming-convention-best-practices/#folder-structure) section in *Naming Convention Best Practices*. ## Using Maia Make Capabilities @@ -67,30 +91,6 @@ The conversational interface includes the following options: * **{{% icon name="paperclip" %}} Add** (Image, Story, PDF) - With this option, you can attach images, PDFs, or user stories to help Maia understand your requirements better. * **Add file to Maia Chat** (@ icon) - It allows you to add certain logic or pages to Maia as context. You can also access this option by right-clicking the documents (microflows or pages) in the **App Explorer** and it appears in the context menu. -#### Support for Folder Structure - -In Studio Pro 11.10 and above, Maia understands and leverages the existing folder structure within your Mendix applications for all documents except for pages. This enables Maia to: - -* Organize documents into folders: When creating new documents, Maia can place them directly into relevant folders, respecting your project's organization. -* Follow existing folder structures: Maia works within your established folder hierarchy, making it easier to maintain consistency. -* Adhere to Mendix best practices: Maia can help organize documents according to the standard Mendix best practices for folder structure. For detailed guidance on optimal organization of folders, refer to the [Folder Structure](/refguide/naming-convention-best-practices/#folder-structure) section in *Naming Convention Best Practices*. - -For more information on how each Maia Make capability work, refer to the following documents: - -* [Maia Chat](/refguide/maia-chat/) -* [Maia Explain](/refguide/maia-explain/) -* [Maia for Domain Model](/refguide/maia-for-domain-model/) -* [Maia for Pages](/refguide/maia-for-pages/) -* [Maia for Microflows](/refguide/maia-for-microflows/) -* [Maia for Workflows](/refguide/maia-for-workflows/) (in Studio Pro 11.9 and above) -* [Maia for OQL](/refguide/maia-for-oql/) (in Studio Pro 11.9 and above) -* [Maia MCP Client](/refguide/maia-mcp/) -* [Studio Pro MCP Server](/refguide/studio-pro-mcp-server/) -* [Maia Web Fetch](/refguide/maia-web-fetch/) -* [Maia Agent Skills](/refguide/maia-agent-skills/) - -In Studio Pro 11.8 and above, most of the features described in the documents above are available only through the chat interface. There are no separate entry points to these features in their respective editors. [Maia Explain](/refguide/maia-explain/) is an exception. You can still access this feature by right-clicking the documents (for example, microflows or pages) in the **App Explorer** and the **Maia Explain** option is in the context menu. - ## Read More * [Mendix AI Assistance (Maia)](/refguide/mendix-ai-assistance/) diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md index 0eb9ae00ab6..785e84a2243 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-agent-skills.md @@ -2,7 +2,7 @@ title: "Maia Agent Skills" linktitle: "Agent Skills" url: /refguide/maia-agent-skills/ -weight: 88 +weight: 95 description: "Describes how to create and manage agent skills that equip Maia with domain-specific knowledge, applied automatically whenever relevant." #If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details. --- @@ -10,7 +10,7 @@ description: "Describes how to create and manage agent skills that equip Maia wi ## Introduction {{% alert color="info" %}} -This feature is released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.11 and above. +This feature was released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.11. To use Maia Agent Skills, an internet connection and signing in to Studio Pro are required. {{% /alert %}} diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-microflows.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-microflows.md index 4dcc78daaf2..2688da0bb3a 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-microflows.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-microflows.md @@ -7,7 +7,9 @@ description: "Describes the features in Maia for Microflows." ## Introduction {{% alert color="info" %}} -This feature is released as part of [Make Make](/refguide/maia-make/) capabilities in Studio Pro 11.8. +This feature was released as part of [Make Make](/refguide/maia-make/) capabilities in Studio Pro 11.8. + +To use Maia for Microflows, an internet connection and signing in to Studio Pro are required. {{% /alert %}} Maia for Microflows is an AI-powered capability that is available when using [Maia Make](/refguide/maia-make/) in Studio Pro. Maia Make is a unified conversational interface within Studio Pro that consolidates all AI-assisted development capabilities into a single chat experience. diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-oql.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-oql.md index b174c5b4311..776f833d907 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-oql.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-for-oql.md @@ -8,7 +8,7 @@ description: "Describes the features in Maia for OQL Generation." ## Introduction {{% alert color="info" %}} -An internet connection and signing in to Studio Pro are required to use Maia for OQL. +To use Maia for OQL, an internet connection and signing in to Studio Pro are required. {{% /alert %}} Maia for OQL is a powerful feature that enables you to generate and manage OQL (Object Query Language) queries through an intuitive interface. It is designed to simplify query creation and reduce manual effort. Currently it has some limitations. For more details, see the [Limitations](#limitations) section below. diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-mcp.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-mcp.md index b8838a7265f..52fa90d35d2 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-mcp.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-mcp.md @@ -10,7 +10,7 @@ description: "Describes the features in Maia MCP Client." ## Introduction {{% alert color="info" %}} -This feature is released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.8. +This feature was released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.8. To use Maia MCP Client, an internet connection and signing in to Studio Pro are required. {{% /alert %}} diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-web-fetch.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-web-fetch.md index 293a9a48bcf..bbfc8722f66 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-web-fetch.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/maia-web-fetch.md @@ -10,7 +10,7 @@ description: "Describes Maia's web fetch capability for retrieving content from ## Introduction {{% alert color="info" %}} -This feature is available in Studio Pro 11.10 and above. +This feature was released as part of [Maia Make](/refguide/maia-make/) capabilities in Studio Pro 11.10. To use Maia Web Fetch, an internet connection and signing in to Studio Pro are required. {{% /alert %}} diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/studio-pro-mcp-server.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/studio-pro-mcp-server.md index f328b60b9dd..09861bfe770 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/studio-pro-mcp-server.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/studio-pro-mcp-server.md @@ -10,7 +10,7 @@ description: "Describes the features in Studio Pro MCP Server." ## Introduction {{% alert color="info" %}} -This feature is available in Studio Pro 11.10 and above. +This feature was released in Studio Pro 11.10. To use Studio Pro MCP Server, an internet connection and signing in to Studio Pro are required. {{% /alert %}} From d38c5a08f0a8fddb82dc5f1b811b3d1af95a8de1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Soko=C5=82owski?= Date: Thu, 21 May 2026 13:47:52 +0200 Subject: [PATCH 4/6] Reorganize Maia Make capabilities documentation Restructure the capabilities overview into three separate tables: one for supported document types, one for standalone Maia features, and one for general capabilities. This improves clarity by grouping related functionality and making version support easier to track. - Rename section to "Maia Make Capabilities Overview" for consistency - Create "Supported Document Types" subsection with comprehensive table - Create "Maia Features" subsection for standalone features - Consolidate general capabilities into a unified table - Incorporate folder structure support as a capability row - Add "Remarks" column for version-specific notes and limitations --- .../mendix-ai-assistance/maia-make/_index.md | 88 ++++++++++--------- 1 file changed, 46 insertions(+), 42 deletions(-) diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md index 7cac57fcb38..905dcb828c5 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md @@ -19,48 +19,52 @@ Maia Make is a set of AI-assisted development capabilities in Studio Pro that ar You can also ask Maia to provide explanations of your existing documents, such as microflows, workflows, and pages. Moreover, this interface allows you to integrate with external tools, such as Playwright and Figma, via MCP Servers, and it supports story-based development by generating app artifacts based on existing user stories. -## Maia Capabilities Overview - -The following table lists the major Maia Make capabilities, their descriptions, and the Studio Pro versions in which they were introduced as part of Maia Make: - -| Capability | Description | Available in Maia Make from | -| --- | --- | --- | -| [Maia Chat](/refguide/maia-chat/) | Answers questions about all aspects of Mendix development. | Studio Pro 11.8 | -| [Maia Explain](/refguide/maia-explain/) | Explains the purpose and logic of existing documents such as microflows and pages. | Studio Pro 11.8 | -| [Maia for Domain Model](/refguide/maia-for-domain-model/) | Generates and explains domain models. | Studio Pro 11.8 | -| [Maia for Pages](/refguide/maia-for-pages/) | Generates pages and widgets from text or image input. | Studio Pro 11.8 | -| [Maia for Microflows](/refguide/maia-for-microflows/) | Generates microflow logic from natural language descriptions. | Studio Pro 11.8 | -| [Maia for Workflows](/refguide/maia-for-workflows/) | Generates workflows from natural language or image input. | Studio Pro 11.9 | -| [Maia for OQL](/refguide/maia-for-oql/) | Generates and manages OQL queries. | Studio Pro 11.9 | -| [Maia MCP Client](/refguide/maia-mcp/) | Connects Maia to external MCP servers, giving it access to third-party tools during chat. | Studio Pro 11.8 | -| [Studio Pro MCP Server](/refguide/studio-pro-mcp-server/) | Exposes Studio Pro as an MCP server for use by external AI tools. | Studio Pro 11.10 | -| [Maia Web Fetch](/refguide/maia-web-fetch/) | Fetches and reads content from public websites and APIs during chat. | Studio Pro 11.10 | -| [Maia Agent Skills](/refguide/maia-agent-skills/) | Extends Maia with reusable, domain-specific knowledge that applies automatically when relevant. | Studio Pro 11.11 | - -In addition to the core capabilities listed above, Maia Make includes the following features: - -| Capability | Description | Available in Maia Make from | -| --- | --- | --- | -| Story-based development | Generates app artifacts based on existing user stories to support story-driven development workflows. | Studio Pro 11.8 | -| PDF/image support | Allows you to provide PDFs and images as input to help Maia better understand your requirements. | Studio Pro 11.8 | -| Adding documents as context | Lets you add relevant documents, such as microflows and pages, to provide Maia with additional context during chat. | Studio Pro 11.8 | -| Editing existing documents | Enables Maia to modify existing documents, including renaming elements such as entities, attributes, and microflow parameters. | Studio Pro 11.8 | -| Removing elements | Allows Maia to remove elements from documents to support more advanced refactoring tasks. | Studio Pro 11.9 | -| Undo support | Allows you to undo Maia-generated changes on a per-document basis. | Studio Pro 11.9 | - -### Other Supported Document Types - -In Studio Pro 11.9, support for enumerations, constants, modules, Java actions, and JavaScript actions was added. In this version, Java actions are read-only; they can be used in microflows and explained. JavaScript actions can only be explained. - -Starting with Studio Pro 11.10, Maia can generate JavaScript actions, add parameters to existing ones, and create or update the JavaScript file associated with a JavaScript action. - -### Support for Folder Structure - -In Studio Pro 11.10 and above, Maia understands and leverages the existing folder structure within your Mendix applications for all documents except for pages. This enables Maia to: - -* Organize documents into folders: When creating new documents, Maia can place them directly into relevant folders, respecting your project's organization. -* Follow existing folder structures: Maia works within your established folder hierarchy, making it easier to maintain consistency. -* Adhere to Mendix best practices: Maia can help organize documents according to the standard Mendix best practices for folder structure. For detailed guidance on optimal organization of folders, refer to the [Folder Structure](/refguide/naming-convention-best-practices/#folder-structure) section in *Naming Convention Best Practices*. +## Maia Make Capabilities Overview + +### Supported Document Types + +The following table lists all document types that Maia can work with, and the Studio Pro version in which support was introduced: + +| Document Type | Description | Available from | Remarks | +| --- | --- | --- | --- | +| [Domain model](/refguide/maia-for-domain-model/) | Generates and explains domain models. | Studio Pro 11.8 | | +| [Pages](/refguide/maia-for-pages/) | Generates pages and widgets from text or image input. | Studio Pro 11.8 | | +| [Microflows](/refguide/maia-for-microflows/) | Generates microflow logic from natural language descriptions. | Studio Pro 11.8 | | +| [Workflows](/refguide/maia-for-workflows/) | Generates workflows from natural language descriptions. | Studio Pro 11.9 | | +| [OQL](/refguide/maia-for-oql/) | Generates OQL queries from natural language descriptions. | Studio Pro 11.9 | | +| View entities | Generates view entities. | Studio Pro 11.9 | | +| Enumerations | Generates enumerations. | Studio Pro 11.9 | | +| Constants | Generates and manages constants. | Studio Pro 11.9 | | +| Modules | Creates and structures modules. | Studio Pro 11.9 | | +| Java actions | Uses Java actions in microflows and explains them. | Studio Pro 11.9 | Read-only; Java actions cannot be generated. | +| JavaScript actions | Explains and generates JavaScript actions. | Studio Pro 11.9 | Explain-only in Studio Pro 11.9. Generation, adding parameters, and updating the associated JavaScript file available from Studio Pro 11.10. | +| Navigation | Generates and updates app-level navigation. | Studio Pro 11.11 | | +| Menu | Generates and updates menu documents. | Studio Pro 11.11 | | + +### Maia Features + +The following table lists the standalone Maia features available as part of Maia Make: + +| Feature | Description | Available from | Remarks | +| --- | --- | --- | --- | +| [Maia Chat](/refguide/maia-chat/) | Answers questions about all aspects of Mendix development. | Studio Pro 11.8 | | +| [Maia Explain](/refguide/maia-explain/) | Explains the purpose and logic of existing documents. | Studio Pro 11.8 | | +| [Maia MCP Client](/refguide/maia-mcp/) | Connects Maia to external MCP servers, giving it access to third-party tools. | Studio Pro 11.8 | | +| [Studio Pro MCP Server](/refguide/studio-pro-mcp-server/) | Exposes Studio Pro as an MCP server for use by external AI tools. | Studio Pro 11.10 | | +| [Maia Web Fetch](/refguide/maia-web-fetch/) | Fetches and reads content from public websites and APIs. | Studio Pro 11.10 | | +| [Maia Agent Skills](/refguide/maia-agent-skills/) | Extends Maia with reusable knowledge. | Studio Pro 11.11 | | + +In addition to the capabilities listed above, Maia Make includes the following features: + +| Capability | Description | Available from | Remarks | +| --- | --- | --- | --- | +| Story-based development | Generates app artifacts based on existing user stories to support story-driven development workflows. | Studio Pro 11.8 | | +| PDF/image support | Allows you to provide PDFs and images as input to help Maia better understand your requirements. | Studio Pro 11.8 | | +| Adding documents as context | Lets you add relevant documents, to provide Maia with additional context. | Studio Pro 11.8 | | +| Editing existing documents | Enables Maia to modify existing documents, including renaming elements. | Studio Pro 11.8 | | +| Removing elements | Allows Maia to remove elements from documents to support more advanced refactoring tasks. | Studio Pro 11.9 | | +| Undo support | Allows you to undo Maia-generated changes on a per-document basis. | Studio Pro 11.9 | | +| Folder structure support | Organizes new documents into existing folders and follows your established folder hierarchy when generating content. | Studio Pro 11.10 | Not supported for pages. | ## Using Maia Make Capabilities From a1f03506ea8e9d22bae6e27cac83d8324e55116d Mon Sep 17 00:00:00 2001 From: Yiyun Liao Date: Thu, 21 May 2026 16:36:22 +0200 Subject: [PATCH 5/6] Review tables for categorizing Maia Make capabilities --- .../mendix-ai-assistance/maia-make/_index.md | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md index 905dcb828c5..416005db933 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md @@ -23,29 +23,29 @@ You can also ask Maia to provide explanations of your existing documents, such a ### Supported Document Types -The following table lists all document types that Maia can work with, and the Studio Pro version in which support was introduced: +Maia Make can generate new documents, modify existing documents, and explain app documents and structures through a unified conversational interface. The following table lists all document types that Maia Make can work with and the Studio Pro version in which support for each document type was introduced: -| Document Type | Description | Available from | Remarks | +| Document Type | Description | Available in Maia Make from | Remarks | | --- | --- | --- | --- | -| [Domain model](/refguide/maia-for-domain-model/) | Generates and explains domain models. | Studio Pro 11.8 | | -| [Pages](/refguide/maia-for-pages/) | Generates pages and widgets from text or image input. | Studio Pro 11.8 | | -| [Microflows](/refguide/maia-for-microflows/) | Generates microflow logic from natural language descriptions. | Studio Pro 11.8 | | -| [Workflows](/refguide/maia-for-workflows/) | Generates workflows from natural language descriptions. | Studio Pro 11.9 | | -| [OQL](/refguide/maia-for-oql/) | Generates OQL queries from natural language descriptions. | Studio Pro 11.9 | | -| View entities | Generates view entities. | Studio Pro 11.9 | | -| Enumerations | Generates enumerations. | Studio Pro 11.9 | | +| [Domain model](/refguide/maia-for-domain-model/) | Generates, modifies, and explains domain models. | Studio Pro 11.8 | | +| [Pages](/refguide/maia-for-pages/) | Generates, modified, and explains pages | Studio Pro 11.8 | | +| [Microflows](/refguide/maia-for-microflows/) | Generates, modifies, and explains microflows | Studio Pro 11.8 | | +| [Workflows](/refguide/maia-for-workflows/) | Generates, modifies, and explains workflows | Studio Pro 11.9 | | +| [OQL](/refguide/maia-for-oql/) | Generates and manages OQL queries | Studio Pro 11.9 | | +| View entities | Generates and manages view entities. | Studio Pro 11.9 | | +| Enumerations | Generates and manages enumerations. | Studio Pro 11.9 | | | Constants | Generates and manages constants. | Studio Pro 11.9 | | | Modules | Creates and structures modules. | Studio Pro 11.9 | | | Java actions | Uses Java actions in microflows and explains them. | Studio Pro 11.9 | Read-only; Java actions cannot be generated. | -| JavaScript actions | Explains and generates JavaScript actions. | Studio Pro 11.9 | Explain-only in Studio Pro 11.9. Generation, adding parameters, and updating the associated JavaScript file available from Studio Pro 11.10. | +| JavaScript actions | Generates and explains JavaScript actions. | Studio Pro 11.9 | Explain-only in Studio Pro 11.9. Generation, adding parameters, and updating the associated JavaScript file available from Studio Pro 11.10. | | Navigation | Generates and updates app-level navigation. | Studio Pro 11.11 | | | Menu | Generates and updates menu documents. | Studio Pro 11.11 | | -### Maia Features +### Maia Make Standalone Capabilities -The following table lists the standalone Maia features available as part of Maia Make: +The following table lists Maia Make Standalone Capabilities and the Studio Pro version in which each capability was introduced: -| Feature | Description | Available from | Remarks | +| Capability | Description | Available in Maia Make from | Remarks | | --- | --- | --- | --- | | [Maia Chat](/refguide/maia-chat/) | Answers questions about all aspects of Mendix development. | Studio Pro 11.8 | | | [Maia Explain](/refguide/maia-explain/) | Explains the purpose and logic of existing documents. | Studio Pro 11.8 | | @@ -54,9 +54,11 @@ The following table lists the standalone Maia features available as part of Maia | [Maia Web Fetch](/refguide/maia-web-fetch/) | Fetches and reads content from public websites and APIs. | Studio Pro 11.10 | | | [Maia Agent Skills](/refguide/maia-agent-skills/) | Extends Maia with reusable knowledge. | Studio Pro 11.11 | | -In addition to the capabilities listed above, Maia Make includes the following features: +### Maia Make General Capabilities -| Capability | Description | Available from | Remarks | +The following table lists the general capabilities of Maia Make and the Studio Pro version in which support for each capability was introduced: + +| Capability | Description | Available in Maia Make from | Remarks | | --- | --- | --- | --- | | Story-based development | Generates app artifacts based on existing user stories to support story-driven development workflows. | Studio Pro 11.8 | | | PDF/image support | Allows you to provide PDFs and images as input to help Maia better understand your requirements. | Studio Pro 11.8 | | From 0f927e3f464af1bd10e0914709302c0612dc7afc Mon Sep 17 00:00:00 2001 From: Yiyun Liao Date: Thu, 21 May 2026 18:13:32 +0200 Subject: [PATCH 6/6] Remove the Description column from the Supported Document Types table --- .../mendix-ai-assistance/maia-make/_index.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md index 416005db933..6827906df8b 100644 --- a/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md +++ b/content/en/docs/refguide/mendix-ai-assistance/maia-make/_index.md @@ -25,21 +25,21 @@ You can also ask Maia to provide explanations of your existing documents, such a Maia Make can generate new documents, modify existing documents, and explain app documents and structures through a unified conversational interface. The following table lists all document types that Maia Make can work with and the Studio Pro version in which support for each document type was introduced: -| Document Type | Description | Available in Maia Make from | Remarks | -| --- | --- | --- | --- | -| [Domain model](/refguide/maia-for-domain-model/) | Generates, modifies, and explains domain models. | Studio Pro 11.8 | | -| [Pages](/refguide/maia-for-pages/) | Generates, modified, and explains pages | Studio Pro 11.8 | | -| [Microflows](/refguide/maia-for-microflows/) | Generates, modifies, and explains microflows | Studio Pro 11.8 | | -| [Workflows](/refguide/maia-for-workflows/) | Generates, modifies, and explains workflows | Studio Pro 11.9 | | -| [OQL](/refguide/maia-for-oql/) | Generates and manages OQL queries | Studio Pro 11.9 | | -| View entities | Generates and manages view entities. | Studio Pro 11.9 | | -| Enumerations | Generates and manages enumerations. | Studio Pro 11.9 | | -| Constants | Generates and manages constants. | Studio Pro 11.9 | | -| Modules | Creates and structures modules. | Studio Pro 11.9 | | -| Java actions | Uses Java actions in microflows and explains them. | Studio Pro 11.9 | Read-only; Java actions cannot be generated. | -| JavaScript actions | Generates and explains JavaScript actions. | Studio Pro 11.9 | Explain-only in Studio Pro 11.9. Generation, adding parameters, and updating the associated JavaScript file available from Studio Pro 11.10. | -| Navigation | Generates and updates app-level navigation. | Studio Pro 11.11 | | -| Menu | Generates and updates menu documents. | Studio Pro 11.11 | | +| Document Type | Available in Maia Make from | Remarks | +| --- | --- | --- | +| [Domain model](/refguide/maia-for-domain-model/) | Studio Pro 11.8 | | +| [Pages](/refguide/maia-for-pages/) | Studio Pro 11.8 | | +| [Microflows](/refguide/maia-for-microflows/) | Studio Pro 11.8 | | +| [Workflows](/refguide/maia-for-workflows/) | Studio Pro 11.9 | | +| [OQL](/refguide/maia-for-oql/) | Studio Pro 11.9 | | +| View entities | Studio Pro 11.9 | | +| Enumerations | Studio Pro 11.9 | | +| Constants | Studio Pro 11.9 | | +| Modules | Studio Pro 11.9 | | +| Java actions | Studio Pro 11.9 | Read-only; Java actions cannot be generated. | +| JavaScript actions | Studio Pro 11.9 | Explain-only in Studio Pro 11.9. Generation, adding parameters, and updating the associated JavaScript file available from Studio Pro 11.10. | +| Navigation | Studio Pro 11.11 | | +| Menu | Studio Pro 11.11 | | ### Maia Make Standalone Capabilities