From 1a26b1e57f0049bb4f050faaf716e898c2ff0308 Mon Sep 17 00:00:00 2001 From: Henry Park Date: Mon, 2 Mar 2026 12:37:50 -0800 Subject: [PATCH] fix: correct download URLs for telegram-mtproto and slack-tool extensions (#470) The tool manifests pointed to channel bundle URLs (telegram-wasm32-wasip2.tar.gz, slack-wasm32-wasip2.tar.gz) instead of the tool bundles (telegram-mtproto-..., slack-tool-...). This caused install to fail because the archive contents didn't match the expected .wasm filename. Co-authored-by: Claude Opus 4.6 (1M context) --- registry/tools/slack.json | 2 +- registry/tools/telegram.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/tools/slack.json b/registry/tools/slack.json index 60416f65..197683bd 100644 --- a/registry/tools/slack.json +++ b/registry/tools/slack.json @@ -14,7 +14,7 @@ "artifacts": { "wasm32-wasip2": { - "url": "https://github.com/nearai/ironclaw/releases/latest/download/slack-wasm32-wasip2.tar.gz", + "url": "https://github.com/nearai/ironclaw/releases/latest/download/slack-tool-wasm32-wasip2.tar.gz", "sha256": null } }, diff --git a/registry/tools/telegram.json b/registry/tools/telegram.json index 4e5d426c..735a628a 100644 --- a/registry/tools/telegram.json +++ b/registry/tools/telegram.json @@ -14,7 +14,7 @@ "artifacts": { "wasm32-wasip2": { - "url": "https://github.com/nearai/ironclaw/releases/latest/download/telegram-wasm32-wasip2.tar.gz", + "url": "https://github.com/nearai/ironclaw/releases/latest/download/telegram-mtproto-wasm32-wasip2.tar.gz", "sha256": null } },