Initial commit: yu-zhi-ran platform with automation integration

This commit is contained in:
lt
2026-04-19 14:05:09 +08:00
commit 3cb2df51c8
209 changed files with 80379 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
set -e
cd /root/.openclaw/workspaces/yzr-yxl/projects/yu-zhi-ran
if [ "$1" == "publisher" ]; then
echo "=== Testing publisher ==="
python3 scripts/publisher.py
echo "=== Publisher exit code: $? ==="
elif [ "$1" == "creator" ]; then
echo "=== Testing creator ==="
python3 scripts/creator.py
echo "=== Creator exit code: $? ==="
else
echo "=== Testing collector ==="
python3 scripts/collector.py
echo "=== Collector exit code: $? ==="
fi