dlw-machine-setup 0.8.3 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/installer.js +8 -3
- package/package.json +1 -1
package/bin/installer.js
CHANGED
|
@@ -4369,13 +4369,18 @@ var HOOK_DEFINITIONS = [
|
|
|
4369
4369
|
{
|
|
4370
4370
|
event: "PostToolUse",
|
|
4371
4371
|
script: "telemetry-post-tool.mjs",
|
|
4372
|
-
/* Telemetry only meaningful for the SAP
|
|
4373
|
-
|
|
4372
|
+
/* Telemetry only meaningful for the SAP MCP server itself.
|
|
4373
|
+
* The matcher must align with the server name registered in
|
|
4374
|
+
* .mcp.json — currently `sap_mcp_server` per the canonical
|
|
4375
|
+
* `claude mcp add --transport http sap_mcp_server ...` command
|
|
4376
|
+
* declared in data/wizard-options/mcp-servers.json. If that key
|
|
4377
|
+
* is renamed, this regex needs to follow. */
|
|
4378
|
+
matcher: "mcp__sap_mcp_server__.*"
|
|
4374
4379
|
},
|
|
4375
4380
|
{
|
|
4376
4381
|
event: "PostToolUseFailure",
|
|
4377
4382
|
script: "telemetry-post-tool-failure.mjs",
|
|
4378
|
-
matcher: "
|
|
4383
|
+
matcher: "mcp__sap_mcp_server__.*"
|
|
4379
4384
|
},
|
|
4380
4385
|
{ event: "SessionStart", script: "telemetry-session-start.mjs" },
|
|
4381
4386
|
{ event: "SessionEnd", script: "telemetry-session-end.mjs" }
|