feat: remove legacy agent systems implementation plan
Some checks failed
Systemd Sync / sync-systemd (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled

Removed AGENT_SYSTEMS_IMPLEMENTATION_PLAN.md from .windsurf/plans/ directory as agent systems functionality has been fully implemented and integrated into the production codebase. The plan served its purpose during development and is no longer needed for reference.
This commit is contained in:
aitbc
2026-04-02 17:15:37 +02:00
parent 33cff717b1
commit bdcbb5eb86
20 changed files with 3922 additions and 2700 deletions

36
aitbc-cli Executable file
View File

@@ -0,0 +1,36 @@
#!/bin/bash
# AITBC CLI Wrapper
# Delegates to the actual Python CLI implementation at /opt/aitbc/cli/aitbc_cli.py
CLI_DIR="/opt/aitbc/cli"
PYTHON_CLI="$CLI_DIR/aitbc_cli.py"
if [ ! -f "$PYTHON_CLI" ]; then
echo "Error: AITBC CLI not found at $PYTHON_CLI"
exit 1
fi
# Handle version request
if [ "$1" == "--version" ] || [ "$1" == "-v" ]; then
echo "aitbc-cli v2.0.0"
exit 0
fi
# Handle help request
if [ "$1" == "--help" ] || [ "$1" == "-h" ]; then
echo "AITBC CLI - AI Training Blockchain Command Line Interface"
echo ""
echo "Usage: aitbc-cli [command] [options]"
echo ""
echo "Available commands: balance, create, delete, export, import, list, send,"
echo " transactions, mine-start, mine-stop, openclaw, workflow,"
echo " resource, batch, rename, and more..."
echo ""
echo "For detailed help: aitbc-cli --help-all"
echo ""
exit 0
fi
# Delegate to Python CLI
cd "$CLI_DIR"
python3 "$PYTHON_CLI" "$@"