From 21e9ec63966794ff16891d6a3ae33e126f4430ef Mon Sep 17 00:00:00 2001 From: rokapooradobe <84172705+rokapooradobe@users.noreply.github.com> Date: Sat, 7 Mar 2026 12:49:25 -0800 Subject: [PATCH 1/5] Update ai-development-tools.md --- .../ai-development-tools.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/pages/get_started/app_builder_get_started/ai-development-tools.md b/src/pages/get_started/app_builder_get_started/ai-development-tools.md index e8bd3ba4f..d9c3b2837 100644 --- a/src/pages/get_started/app_builder_get_started/ai-development-tools.md +++ b/src/pages/get_started/app_builder_get_started/ai-development-tools.md @@ -45,6 +45,8 @@ ADOBE_CLIENT_SECRET). Follow App Builder action patterns with statusCode and body. Reference developer.adobe.com/app-builder/docs/ for best practices. ``` +> **See also:** [AI Use Cases with App Builder](../resources/ai-use-cases.md) - Learn what you can build with AI on App Builder (MCP servers, documentation assistants, AI agents, and more). + ## Setting up project context files AI assistants generate better code when they understand your project structure. You can add context files to your project root that AI tools will read automatically. @@ -76,6 +78,7 @@ AI assistants generate better code when they understand your project structure. ## Documentation - App Builder and Runtime: https://developer.adobe.com/app-builder/docs/ ``` +**Adobe Skills** (`.skills/` directory) provide structured, reusable knowledge for AI agents. Use skills to define domain-specific patterns like extension points, API versions, and authentication flows that AI can reference across projects. Learn more at [github.com/adobe/skills](https://github.com/adobe/skills). **For Cursor**, add a `.cursorrules` file at your project root with the same information. Cursor reads this file automatically when you open the project. @@ -191,12 +194,12 @@ The AI will add parameter validation, specific error responses (400, 401, 500), - [App Builder Documentation](https://developer.adobe.com/app-builder/docs/) - [AEM AI Coding Agents Guide](https://www.aem.live/developer/ai-coding-agents) -- [Cursor Rules for App Builder](https://github.com/robbiekapoor/benges-app_builder-cursor-rules-base) -- [MCP Server Generator](https://github.com/robbiekapoor/generator-app-remote-mcp-server-generic) +- [Adobe Skills](https://github.com/adobe/skills) ## Next steps -1. Create an `AGENTS.md` or `.cursorrules` file in your App Builder project. -2. Try the example prompts above with your AI assistant. -3. Refine your prompts based on the output quality. -4. Share what works with your team. +1. **Set up context files** - Create AGENTS.md and .cursorrules +2. **Create Adobe Skills** - Use the `.skills/` pattern (shown above) to give AI agents structured knowledge about your App Builder patterns and APIs +3. **Test AI prompts** - Try the example workflows above +4. **Iterate** - Refine prompts based on AI output quality +5. **Share learnings** - Document what works for your team From 3e015a07c63023ed05abbc3a483bf693957f24db Mon Sep 17 00:00:00 2001 From: rokapooradobe <84172705+rokapooradobe@users.noreply.github.com> Date: Mon, 9 Mar 2026 19:20:54 -0700 Subject: [PATCH 2/5] Update ai-development-tools.md --- .../get_started/app_builder_get_started/ai-development-tools.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/get_started/app_builder_get_started/ai-development-tools.md b/src/pages/get_started/app_builder_get_started/ai-development-tools.md index d9c3b2837..111728b90 100644 --- a/src/pages/get_started/app_builder_get_started/ai-development-tools.md +++ b/src/pages/get_started/app_builder_get_started/ai-development-tools.md @@ -194,6 +194,7 @@ The AI will add parameter validation, specific error responses (400, 401, 500), - [App Builder Documentation](https://developer.adobe.com/app-builder/docs/) - [AEM AI Coding Agents Guide](https://www.aem.live/developer/ai-coding-agents) +- [App Builder MCP Template](https://github.com/adobe/generator-app-remote-mcp-server-generic) - [Adobe Skills](https://github.com/adobe/skills) ## Next steps From dd96df2b33f03d20fb0819811ff50ef6748c04c6 Mon Sep 17 00:00:00 2001 From: rokapooradobe <84172705+rokapooradobe@users.noreply.github.com> Date: Mon, 9 Mar 2026 19:28:12 -0700 Subject: [PATCH 3/5] Update ai-development-tools.md --- .../get_started/app_builder_get_started/ai-development-tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/get_started/app_builder_get_started/ai-development-tools.md b/src/pages/get_started/app_builder_get_started/ai-development-tools.md index 111728b90..2f44a5a3e 100644 --- a/src/pages/get_started/app_builder_get_started/ai-development-tools.md +++ b/src/pages/get_started/app_builder_get_started/ai-development-tools.md @@ -194,7 +194,7 @@ The AI will add parameter validation, specific error responses (400, 401, 500), - [App Builder Documentation](https://developer.adobe.com/app-builder/docs/) - [AEM AI Coding Agents Guide](https://www.aem.live/developer/ai-coding-agents) -- [App Builder MCP Template](https://github.com/adobe/generator-app-remote-mcp-server-generic) +- [MCP Server Generator](https://github.com/adobe/generator-app-remote-mcp-server-generic) - [Adobe Skills](https://github.com/adobe/skills) ## Next steps From 302958fdf92b0d73e8471fa177c2340cc422a07f Mon Sep 17 00:00:00 2001 From: Patrick Russell Date: Wed, 11 Mar 2026 18:08:16 -0700 Subject: [PATCH 4/5] Fix lint: correct relative link path and redirecting URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix relative link to ai-use-cases.md (../resources → ../../resources) - Update App Builder docs URL to final destination Made-with: Cursor --- .../app_builder_get_started/ai-development-tools.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/get_started/app_builder_get_started/ai-development-tools.md b/src/pages/get_started/app_builder_get_started/ai-development-tools.md index 2f44a5a3e..baa208ab9 100644 --- a/src/pages/get_started/app_builder_get_started/ai-development-tools.md +++ b/src/pages/get_started/app_builder_get_started/ai-development-tools.md @@ -45,7 +45,7 @@ ADOBE_CLIENT_SECRET). Follow App Builder action patterns with statusCode and body. Reference developer.adobe.com/app-builder/docs/ for best practices. ``` -> **See also:** [AI Use Cases with App Builder](../resources/ai-use-cases.md) - Learn what you can build with AI on App Builder (MCP servers, documentation assistants, AI agents, and more). +> **See also:** [AI Use Cases with App Builder](../../resources/ai-use-cases.md) - Learn what you can build with AI on App Builder (MCP servers, documentation assistants, AI agents, and more). ## Setting up project context files @@ -192,7 +192,7 @@ The AI will add parameter validation, specific error responses (400, 401, 500), ## Resources -- [App Builder Documentation](https://developer.adobe.com/app-builder/docs/) +- [App Builder Documentation](https://developer.adobe.com/app-builder/docs/intro_and_overview/) - [AEM AI Coding Agents Guide](https://www.aem.live/developer/ai-coding-agents) - [MCP Server Generator](https://github.com/adobe/generator-app-remote-mcp-server-generic) - [Adobe Skills](https://github.com/adobe/skills) From 15f7be618c83c0404068f6df3c1f776e5ac45a6e Mon Sep 17 00:00:00 2001 From: Patrick Russell Date: Wed, 11 Mar 2026 18:11:05 -0700 Subject: [PATCH 5/5] Add AI Development Tools to sidebar under AI section Made-with: Cursor --- src/pages/config.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/config.md b/src/pages/config.md index f78315494..27b4e9426 100644 --- a/src/pages/config.md +++ b/src/pages/config.md @@ -23,6 +23,7 @@ - [Creating your First App](get_started/app_builder_get_started/first-app.md) - [Publishing Your App](get_started/app_builder_get_started/publish-app.md) - [Troubleshooting](get_started/app_builder_get_started/troubleshoot.md) + - [AI Development Tools](get_started/app_builder_get_started/ai-development-tools.md) - [Runtime Getting Started](get_started/runtime_getting_started/index.md) - [Overview](get_started/runtime_getting_started/index.md) - [Activations](get_started/runtime_getting_started/activations.md)