From e342d0c5a7191cbc52d945055609786ab049e97b Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Tue, 5 May 2026 17:34:05 -0700 Subject: [PATCH] fix(build): register a2a_response in TOP_LEVEL_MODULES MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The drift gate caught the new SSOT parser module — without registration the wheel ships it un-rewritten and runtime imports fail. Same pattern as inbox_uploads, a2a_tools_delegation, a2a_tools_rbac registrations. Co-Authored-By: Claude Opus 4.7 (1M context) --- scripts/build_runtime_package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build_runtime_package.py b/scripts/build_runtime_package.py index 82b1090c..d4eedde2 100755 --- a/scripts/build_runtime_package.py +++ b/scripts/build_runtime_package.py @@ -54,6 +54,7 @@ TOP_LEVEL_MODULES = { "a2a_client", "a2a_executor", "a2a_mcp_server", + "a2a_response", "a2a_tools", "a2a_tools_delegation", "a2a_tools_inbox",