From 598bc350f309c5dcfbc7f317899e3ecaefbcd45b Mon Sep 17 00:00:00 2001 From: aitbc Date: Tue, 26 May 2026 11:10:56 +0200 Subject: [PATCH] fix: disable deployment command due to missing core.deployment module - Commented out deployment command import and registration - deployment.py imports from aitbc_cli.core.deployment which doesn't exist - Other commands using ..core.* imports are valid (config, chain_manager, analytics, etc.) - Prevents ModuleNotFoundError when loading CLI --- cli/core/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/core/main.py b/cli/core/main.py index 89e38d4a..f908d074 100644 --- a/cli/core/main.py +++ b/cli/core/main.py @@ -12,7 +12,7 @@ from aitbc_cli.commands.chain import chain from aitbc_cli.commands.agent_sdk import agent from aitbc_cli.commands.analytics import analytics from aitbc_cli.commands.cross_chain import cross_chain -from aitbc_cli.commands.deployment import deployment +# from aitbc_cli.commands.deployment import deployment # Disabled - missing core.deployment module from aitbc_cli.commands.monitor import monitor from aitbc_cli.commands.node import node from aitbc_cli.commands.agent_comm import agent_comm @@ -124,7 +124,7 @@ cli.add_command(chain, name="blockchain") cli.add_command(agent, name="ai") cli.add_command(analytics) cli.add_command(cross_chain, name="crosschain") -cli.add_command(deployment) +# cli.add_command(deployment) # Disabled - missing core.deployment module cli.add_command(monitor) cli.add_command(node) cli.add_command(agent_comm, name="agent")