Add AtoCore integration tooling and operations guide

This commit is contained in:
2026-04-06 19:28:09 -04:00
commit f49637b5cc
6 changed files with 1111 additions and 0 deletions

15
t420-openclaw/atocore.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if command -v python3 >/dev/null 2>&1; then
exec python3 "$SCRIPT_DIR/atocore.py" "$@"
fi
if command -v python >/dev/null 2>&1; then
exec python "$SCRIPT_DIR/atocore.py" "$@"
fi
echo "Python is required to run atocore.sh" >&2
exit 1