From 970bc788e35f7f2dfb0d6a3b3c2ca12efbc3ad01 Mon Sep 17 00:00:00 2001 From: robbiekapoor <65839046+robbiekapoor@users.noreply.github.com> Date: Fri, 6 Mar 2026 11:19:42 -0800 Subject: [PATCH 1/2] Enhance AI Development Tools documentation Updated the AI Development Tools documentation to include details about Adobe Skills and context files for AI assistants. Revised next steps for clarity and added new resources. --- .../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..14ecc7fdf 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 tea From e8e46896997a3fe1c12be376ba0faacaec9276fa Mon Sep 17 00:00:00 2001 From: robbiekapoor <65839046+robbiekapoor@users.noreply.github.com> Date: Fri, 6 Mar 2026 11:49:19 -0800 Subject: [PATCH 2/2] Fix typo in AI development tools documentation --- .../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 14ecc7fdf..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 @@ -202,4 +202,4 @@ The AI will add parameter validation, specific error responses (400, 401, 500), 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 tea +5. **Share learnings** - Document what works for your team