This is an automated email from the ASF dual-hosted git repository.
rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git
The following commit(s) were added to refs/heads/master by this push:
new 9b46b477 fix(mcp-server-contributions): don't reference a specific
product
9b46b477 is described below
commit 9b46b4779ee6ec23aad3e0f9df87043e83b21bb0
Author: Robert Munteanu <[email protected]>
AuthorDate: Tue Jan 13 15:25:47 2026 +0100
fix(mcp-server-contributions): don't reference a specific product
---
.../mcp/server/impl/contribs/OsgiDiagnosticPromptContribution.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/mcp-server-contributions/src/main/java/org/apache/sling/mcp/server/impl/contribs/OsgiDiagnosticPromptContribution.java
b/mcp-server-contributions/src/main/java/org/apache/sling/mcp/server/impl/contribs/OsgiDiagnosticPromptContribution.java
index 10e6e382..21876ace 100644
---
a/mcp-server-contributions/src/main/java/org/apache/sling/mcp/server/impl/contribs/OsgiDiagnosticPromptContribution.java
+++
b/mcp-server-contributions/src/main/java/org/apache/sling/mcp/server/impl/contribs/OsgiDiagnosticPromptContribution.java
@@ -47,7 +47,7 @@ public class OsgiDiagnosticPromptContribution implements
McpServerContribution {
new Prompt(
"diagnose-osgi-issue",
"Diagnose OSGi Bundle Issues",
- "Helps diagnose why an OSGi bundle or component isn't
starting in AEM/Sling. Provides step-by-step troubleshooting guidance.",
+ "Helps diagnose why an OSGi bundle or component isn't
starting. Provides step-by-step troubleshooting guidance.",
List.of(new PromptArgument(
"bundle-name",
"Bundle Symbolic Name",
@@ -78,7 +78,7 @@ public class OsgiDiagnosticPromptContribution implements
McpServerContribution {
.append(bundleName)
.append("'\n\n");
} else {
- sb.append("I'll help you diagnose OSGi bundle issues in your
AEM/Sling environment.\n\n");
+ sb.append("I'll help you diagnose OSGi bundle issues in your
environment.\n\n");
sb.append("## Step 1: Identify Problematic Bundles\n\n");
sb.append("Use the `diagnose-osgi-bundle` tool without parameters
to scan all bundles.\n\n");
}