Skip to content

Commit d35ff89

Browse files
author
Abhishek Garg
committed
docs(dispatcher): align split mode skills with core MCP and AMS SDK contracts
1 parent c31a4ab commit d35ff89

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

skills/aem/6.5lts/dispatcher/references/dispatcher-performance-optimization/optimization-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ baseline_metrics = monitor_metrics({
305305
# 3. Validate config
306306
lint({"mode":"directory","target":"/path/to/dispatcher/src","strict_mode":true})
307307
sdk({"action":"check-files","config_path":"/path/to/dispatcher/src"})
308-
validate({"config":"<updated dispatcher.any content>","type":"dispatcher"})
308+
validate({"config":"<updated dispatcher.any content>","type":"ams"})
309309
310310
# 4. Reload dispatcher (environment-specific)
311311

skills/aem/6.5lts/dispatcher/references/dispatcher-security-audit/owasp-coverage-matrix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ trace_request({"url":"/content/site/en.json;.css","method":"GET"})
9797
```text
9898
lint({"mode":"directory","target":"/path/to/dispatcher/src","strict_mode":true})
9999
sdk({"action":"check-files","config_path":"/path/to/dispatcher/src"})
100-
validate({"config":"<dispatcher.any content>","type":"dispatcher"})
100+
validate({"config":"<dispatcher.any content>","type":"ams"})
101101
```
102102

103103
**Severity if Failed:** Medium

skills/aem/6.5lts/dispatcher/skills/create-dispatcher-config-ams/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: create-dispatcher-config-ams
33
description: Create, modify, review, and harden Dispatcher and Apache HTTPD config for AEM 6.5 / AMS workflows (ams mode only). Use for `.any`, vhost, rewrite, cache, and filter changes.
44
license: Apache-2.0
5-
compatibility: Requires Dispatcher MCP with `AEM_DEPLOYMENT_MODE=ams`.
5+
compatibility: Requires Dispatcher MCP in AMS mode (`AEM_DEPLOYMENT_MODE=ams`) or AMS Dispatcher MCP SDK (mode pre-set to `ams`).
66
allowed-tools:
77
- validate
88
- lint

skills/aem/6.5lts/dispatcher/skills/dispatcher-guided-advisory-ams/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: dispatcher-guided-advisory-ams
33
description: Provide Dispatcher/HTTPD advisory guidance for AEM 6.5 / AMS workflows only, with public-doc citations and AMS-specific MCP verification plans.
44
license: Apache-2.0
5-
compatibility: Requires Dispatcher MCP with `AEM_DEPLOYMENT_MODE=ams`.
5+
compatibility: Requires Dispatcher MCP in AMS mode (`AEM_DEPLOYMENT_MODE=ams`) or AMS Dispatcher MCP SDK (mode pre-set to `ams`).
66
allowed-tools:
77
- validate
88
- lint

skills/aem/6.5lts/dispatcher/skills/dispatcher-performance-optimization-ams/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: dispatcher-performance-optimization-ams
33
description: Optimize Dispatcher performance for AEM 6.5 / AMS workflows only, with AMS-specific baseline and runtime verification.
44
license: Apache-2.0
5-
compatibility: Requires Dispatcher MCP with `AEM_DEPLOYMENT_MODE=ams`.
5+
compatibility: Requires Dispatcher MCP in AMS mode (`AEM_DEPLOYMENT_MODE=ams`) or AMS Dispatcher MCP SDK (mode pre-set to `ams`).
66
allowed-tools:
77
- validate
88
- lint

skills/aem/6.5lts/dispatcher/skills/dispatcher-runtime-incident-response-ams/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: dispatcher-runtime-incident-response-ams
33
description: Investigate and triage Dispatcher runtime incidents for AEM 6.5 / AMS workflows only, using host-path/log MCP evidence.
44
license: Apache-2.0
5-
compatibility: Requires Dispatcher MCP with `AEM_DEPLOYMENT_MODE=ams`.
5+
compatibility: Requires Dispatcher MCP in AMS mode (`AEM_DEPLOYMENT_MODE=ams`) or AMS Dispatcher MCP SDK (mode pre-set to `ams`).
66
allowed-tools:
77
- validate
88
- lint

skills/aem/6.5lts/dispatcher/skills/dispatcher-security-audit-ams/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: dispatcher-security-audit-ams
33
description: Perform Dispatcher and Apache HTTPD security audits for AEM 6.5 / AMS workflows only, with AMS-specific hardening verification.
44
license: Apache-2.0
5-
compatibility: Requires Dispatcher MCP with `AEM_DEPLOYMENT_MODE=ams`.
5+
compatibility: Requires Dispatcher MCP in AMS mode (`AEM_DEPLOYMENT_MODE=ams`) or AMS Dispatcher MCP SDK (mode pre-set to `ams`).
66
allowed-tools:
77
- validate
88
- lint

skills/aem/cloud/dispatcher/references/dispatcher-guided-advisory/mode-specific-verification-matrix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You may skip runtime checks only when runtime prerequisites are unavailable. If
3939
# Static checks
4040
lint({"mode":"directory","target":"/path/to/dispatcher/src","strict_mode":true})
4141
sdk({"action":"check-files","config_path":"/path/to/dispatcher/src"})
42-
validate({"config":"<dispatcher.any content>","type":"dispatcher"})
42+
validate({"config":"<dispatcher.any content>","type":"cloud"})
4343
4444
# Runtime verification
4545
trace_request({

skills/aem/cloud/dispatcher/references/dispatcher-performance-optimization/optimization-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ baseline_metrics = monitor_metrics({
287287
# 3. Validate config
288288
lint({"mode":"directory","target":"/path/to/dispatcher/src","strict_mode":true})
289289
sdk({"action":"check-files","config_path":"/path/to/dispatcher/src"})
290-
validate({"config":"<updated dispatcher.any content>","type":"dispatcher"})
290+
validate({"config":"<updated dispatcher.any content>","type":"cloud"})
291291
292292
# 4. Reload dispatcher (environment-specific)
293293

skills/aem/cloud/dispatcher/references/dispatcher-security-audit/owasp-coverage-matrix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ trace_request({"url":"/content/site/en.json;.css","method":"GET"})
9797
```text
9898
lint({"mode":"directory","target":"/path/to/dispatcher/src","strict_mode":true})
9999
sdk({"action":"check-files","config_path":"/path/to/dispatcher/src"})
100-
validate({"config":"<dispatcher.any content>","type":"dispatcher"})
100+
validate({"config":"<dispatcher.any content>","type":"cloud"})
101101
```
102102

103103
**Severity if Failed:** Medium

0 commit comments

Comments
 (0)