ai_member_xiaokui/scripts/sync_feishu_feedback_summary.sh
2026-05-08 08:10:01 +08:00

22 lines
566 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 任务名称飞书问题反馈归纳与分类步骤4-6
# 执行时间:每分钟
# 归属 Agent小葵 xiaokui
set -e
export PATH=/root/.nvm/versions/node/v24.14.0/bin:$PATH
LOG_FILE="/var/log/xiaokui_feedback_summary.log"
log() {
echo "[$(date +'%Y-%m-%d %H:%M:%S')] $1" >> "$LOG_FILE"
}
log "=== 归纳与分类开始 ==="
cd /root/.openclaw/workspace-xiaokui
python3 skills/feishu-feedback-sync/scripts/sync_feishu_feedback.py --days 1 --steps 4-6 --skip-dispatch >> "$LOG_FILE" 2>&1
log "=== 归纳与分类结束 ==="
exit 0