refactor: rename simple_wallet.py to aitbc_cli.py and update CLI launcher script
All checks were successful
CLI Tests / test-cli (push) Successful in 1m2s
Documentation Validation / validate-docs (push) Successful in 7s
Security Scanning / security-scan (push) Successful in 57s

🔧 CLI Restructuring:
• Rename cli/simple_wallet.py to cli/aitbc_cli.py for better naming consistency
• Update aitbc-cli launcher to call aitbc_cli.py instead of simple_wallet.py
• Maintain all existing wallet functionality and command structure
• Preserve compatibility with /opt/aitbc/cli installation path
This commit is contained in:
2026-03-30 08:18:38 +02:00
parent 893ac594b0
commit b5f5843c0f
6 changed files with 449 additions and 13 deletions

View File

@@ -44,10 +44,10 @@ echo "/opt/aitbc/venv/bin/python /opt/aitbc/cli/enterprise_cli.py ai submit --wa
# 5. Cross-Node Operations
echo -e "\n5. Cross-Node Operations"
echo "Checking network status on aitbc1..."
/opt/aitbc/venv/bin/python /opt/aitbc/cli/simple_wallet.py network
/opt/aitbc/venv/bin/python /opt/aitbc/cli/aitbc_cli.py network
echo "Checking network status on aitbc..."
ssh aitbc '/opt/aitbc/venv/bin/python /opt/aitbc/cli/simple_wallet.py network'
ssh aitbc '/opt/aitbc/venv/bin/python /opt/aitbc/cli/aitbc_cli.py network'
echo "Running batch operations on aitbc..."
ssh aitbc '/opt/aitbc/venv/bin/python /opt/aitbc/cli/enterprise_cli.py sample'