chore: import upstream snapshot with attribution
lint / build (3.10) (push) Failing after 1s
lint / build (3.11) (push) Failing after 1s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:23:35 +08:00
commit c8c954c85d
127 changed files with 22519 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Agent-S Task Executor for OpenClaw
# Usage: agent_s_task "task description"
TASK="$1"
if [ -z "$TASK" ]; then
echo "Error: Task description required"
echo "Usage: agent_s_task \"task description\""
exit 1
fi
# Execute the Python wrapper using relative path
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
exec "$SCRIPT_DIR/agent_s_wrapper.py" "$TASK"