fix: disable deployment command due to missing core.deployment module
Some checks failed
CLI Tests / test-cli (push) Has been cancelled
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

- 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
This commit is contained in:
aitbc
2026-05-26 11:10:56 +02:00
parent 16162897d5
commit 598bc350f3

View File

@@ -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")