dlw-machine-setup 0.8.3 → 0.8.5

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.
Files changed (2) hide show
  1. package/bin/installer.js +8 -3
  2. 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 ABAP MCP server itself. */
4373
- matcher: "mcp__sap-abap-mcp__.*"
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: "mcp__sap-abap-mcp__.*"
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" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dlw-machine-setup",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "One-shot installer for The Machine toolchain",
5
5
  "bin": {
6
6
  "dlw-machine-setup": "bin/installer.js"