Delegate Click commands to click_cli and add agent subcommands
Some checks failed
CLI Tests / test-cli (push) Failing after 11s
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m9s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Integration Tests / test-service-integration (push) Successful in 2m38s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 2s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 27s
Security Scanning / security-scan (push) Has been cancelled
Package Tests / Python package - aitbc-core (push) Successful in 13s
Package Tests / Python package - aitbc-crypto (push) Successful in 9s
Package Tests / Python package - aitbc-sdk (push) Successful in 11s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 8s
Package Tests / JavaScript package - aitbc-token (push) Successful in 27s
Python Tests / test-python (push) Failing after 1m25s

- Route Click commands (agent, ipfs, oracle, etc.) to click_cli module
- Add zk, knowledge, bounty, dispute subcommands to agent group
- Add AI test submission, power trading, and reputation commands
- Add cross-chain transfer and listing commands
- Add monitor start/stop/status/alerts commands
- Add swarm create/discover/add/distribute/status commands
- Update main() to check command type and delegate appropriately
- Fix genesis CLI
This commit is contained in:
aitbc
2026-05-08 10:43:53 +02:00
parent 1dd58261b4
commit 149fbb0abe
27 changed files with 2753 additions and 50 deletions

View File

@@ -3178,33 +3178,39 @@ def legacy_main():
print(f"Unknown simulate command: {args.simulate_command}")
sys.exit(1)
else:
print("Error: simulate command requires a subcommand")
print("Available subcommands: blockchain, wallets, price, network, ai-jobs")
sys.exit(1)
else:
parser.print_help()
pass
# Click command groups (agent-specific operations)
CLICK_COMMANDS = [
'agent', 'ipfs', 'oracle', 'swarm', 'arbitrage', 'validator',
'plugin', 'database', 'island', 'edge', 'ai', 'monitor',
'governance', 'staking', 'compliance'
]
def main(argv=None):
# Handle genesis commands directly to avoid unified_cli import issues
"""Main entry point - delegates to Click CLI or unified CLI"""
if argv is None:
argv = sys.argv[1:]
if len(argv) > 0 and argv[0] == "genesis":
# Use the standalone genesis CLI
import subprocess
genesis_cli_path = Path("/opt/aitbc/cli/genesis_cli.py")
if genesis_cli_path.exists():
result = subprocess.run([sys.executable, str(genesis_cli_path)] + argv[1:])
# Check if this is a Click command
if argv and argv[0] in CLICK_COMMANDS:
# Delegate to Click CLI
from cli.click_cli import aitbc_click
aitbc_click()
elif len(argv) > 0 and argv[0] == "genesis":
# Run genesis CLI subprocess
genesis_path = Path(__file__).parent.parent / "genesis" / "genesis_cli.py"
if genesis_path.exists():
import subprocess
result = subprocess.run([sys.executable, str(genesis_path)] + argv[1:])
return result.returncode
else:
print("Error: Genesis CLI not found at /opt/aitbc/cli/genesis_cli.py")
print("Genesis CLI not found")
return 1
from unified_cli import run_cli
return run_cli(argv, globals())
else:
# Run unified CLI (parser/handler architecture)
from unified_cli import run_cli
return run_cli(argv, globals())
if __name__ == "__main__":
main()
sys.exit(main() or 0)