Files
aitbc/scripts
aitbc1 af34f6ae81
All checks were successful
API Endpoint Tests / test-api-endpoints (push) Successful in 38s
Integration Tests / test-service-integration (push) Successful in 43s
Package Tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core]) (push) Successful in 21s
Package Tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk]) (push) Successful in 36s
Package Tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto]) (push) Successful in 19s
Package Tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk]) (push) Successful in 20s
Package Tests / test-javascript-packages (map[name:aitbc-sdk-js path:packages/js/aitbc-sdk]) (push) Successful in 16s
Python Tests / test-python (push) Successful in 1m4s
Package Tests / test-javascript-packages (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 1m13s
Rust ZK Components Tests / test-rust-zk (push) Successful in 44s
Security Scanning / security-scan (push) Successful in 42s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 39s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Successful in 44s
Smart Contract Tests / lint-solidity (push) Successful in 48s
fix: resolve remaining CI issues — services, hardhat, Rust, mypy
Service health checks:
- Exchange API uses /api/health not /health — updated test script
  and workflow wait loops to check /api/health as fallback
- Increased wait time to 2s intervals, 15 retries for service readiness
- Performance tests now hit /health endpoints (not root /)

Hardhat compilation:
- aitbc-token was missing peer deps for @nomicfoundation/hardhat-toolbox
- Installed all 11 required peer packages (ethers, typechain, etc.)
- Contracts now compile (19 Solidity files) and all 17 tests pass

Rust workflow:
- Fixed HOME mismatch: gitea-runner HOME=/opt/gitea-runner vs
  euid root HOME=/root — explicitly set HOME=/root in all steps
- Set RUSTUP_HOME and CARGO_HOME for consistent toolchain location

Mypy type annotations (aitbc-agent-sdk):
- agent.py: narrow key types to RSA (isinstance check before sign/verify),
  fix supported_models Optional type, add __post_init__ return type
- compute_provider.py: add return types to all methods, declare
  pricing_model/dynamic_pricing attrs, rename register→create_provider
  to avoid signature conflict with parent, fix Optional safety
- swarm_coordinator.py: add return types to all 8 untyped methods
2026-03-29 13:03:18 +02:00
..

AITBC Development Environment Scripts

This directory contains scripts for managing the AITBC development environment, including incus containers and systemd services.

📋 Available Scripts

🔧 start-aitbc-dev.sh

Starts incus containers and AITBC systemd services on localhost.

Features:

  • Starts incus containers: aitbc and aitbc1
  • Starts all local systemd services matching aitbc-*
  • Checks service health and port status
  • Tests health endpoints
  • Provides colored output and status reporting

Usage:

./scripts/start-aitbc-dev.sh

🛑 stop-aitbc-dev.sh

Stops incus containers and AITBC systemd services on localhost.

Features:

  • Stops incus containers: aitbc and aitbc1
  • Stops all local systemd services matching aitbc-*
  • Verifies services are stopped
  • Provides colored output and status reporting

Usage:

./scripts/stop-aitbc-dev.sh

🚀 start-aitbc-full.sh

Comprehensive startup script for the complete AITBC development environment.

Features:

  • Starts incus containers: aitbc and aitbc1
  • Starts services inside containers
  • Starts all local systemd services matching aitbc-*
  • Tests connectivity to container services
  • Provides detailed status reporting
  • Shows container IP addresses
  • Tests health endpoints

Services Started:

  • Local Services: All aitbc-* systemd services
  • Container Services:
    • aitbc-coordinator-api
    • aitbc-wallet-daemon
    • aitbc-blockchain-node

Usage:

./scripts/start-aitbc-full.sh

🎯 Prerequisites

Required Commands:

  • incus - Container management
  • systemctl - Systemd service management
  • curl - Health endpoint testing
  • netstat - Port checking

Required Containers:

The scripts expect these incus containers to exist:

  • aitbc
  • aitbc1

Required Services:

The scripts look for systemd services matching the pattern aitbc-*.

📊 Service Ports

Port Service Description
8001 Coordinator API Main API service
8002 Wallet Daemon Wallet management
8003 Blockchain RPC Blockchain node RPC
8000 Coordinator API (alt) Alternative API
8081 Blockchain Node 1 Blockchain instance
8082 Blockchain Node 2 Blockchain instance
8006 Coordinator API (dev) Development API

🔍 Health Endpoints

The scripts test these health endpoints:

  • http://localhost:8001/health - Coordinator API
  • http://localhost:8002/health - Wallet Daemon
  • http://localhost:8003/health - Blockchain RPC

📝 Output Examples

Success Output:

[INFO] Starting AITBC Development Environment...
[INFO] Starting incus containers...
[SUCCESS] Container aitbc started successfully
[SUCCESS] Container aitbc1 started successfully
[INFO] Starting AITBC systemd services on localhost...
[SUCCESS] Service aitbc-coordinator-api started successfully
[SUCCESS] Service aitbc-wallet-daemon started successfully
[INFO] Checking service status...
[SUCCESS] aitbc-coordinator-api: RUNNING
[SUCCESS] aitbc-wallet-daemon: RUNNING
[SUCCESS] AITBC Development Environment startup complete!

Service Status:

[INFO] Checking AITBC service ports...
[SUCCESS] Coordinator API (port 8001): RUNNING
[SUCCESS] Wallet Daemon (port 8002): RUNNING
[WARNING] Blockchain RPC (port 8003): NOT RUNNING

🛠️ Troubleshooting

Common Issues:

  1. Container not found:

    [ERROR] Container aitbc not found. Please create it first.
    

    Solution: Create the incus containers first:

    incus launch images:ubuntu/22.04 aitbc
    incus launch images:ubuntu/22.04 aitbc1
    
  2. Service not found:

    [WARNING] No AITBC services found on localhost
    

    Solution: Install AITBC services or check if they're named correctly.

  3. Port already in use:

    [WARNING] Service aitbc-coordinator-api is already running
    

    Solution: This is normal - the script detects already running services.

  4. Permission denied:

    [ERROR] Failed to start service aitbc-coordinator-api
    

    Solution: Run with sudo or check user permissions.

Debug Commands:

# Check all AITBC services
systemctl list-units | grep aitbc-

# Check container status
incus list

# View service logs
journalctl -f -u aitbc-coordinator-api

# View container logs
incus exec aitbc -- journalctl -f -u aitbc-coordinator-api

# Check port usage
netstat -tlnp | grep :800

🔄 Workflow

Development Setup:

  1. Create incus containers (if not exists)
  2. Install AITBC services in containers
  3. Install AITBC systemd services locally
  4. Run ./scripts/start-aitbc-full.sh

Daily Development:

  1. ./scripts/start-aitbc-full.sh - Start everything
  2. Work on AITBC development
  3. ./scripts/stop-aitbc-dev.sh - Stop when done

Testing:

  1. Start services with scripts
  2. Test health endpoints
  3. Check logs for issues
  4. Stop services when finished

📚 Additional Information

  • Container IPs: Scripts show container IP addresses for direct access
  • Health Checks: Automatic health endpoint testing
  • Service Status: Real-time status reporting
  • Error Handling: Graceful error handling with informative messages

🎯 Best Practices

  1. Use the full script for complete environment setup
  2. Check the output for any warnings or errors
  3. Monitor logs when troubleshooting issues
  4. Stop services when not in use to conserve resources
  5. Run scripts from the project root for proper path resolution