auto: sync OpenClaw config 2026-07-15 20:00

This commit is contained in:
2026-07-15 20:00:15 +08:00
parent 08c140593f
commit cc65940b78
5 changed files with 4 additions and 27 deletions
@@ -38,7 +38,7 @@
}
],
"api": "openai-completions",
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
"apiKey": "DEEPSEEK_API_KEY"
}
}
}
+1 -1
View File
@@ -12,7 +12,7 @@
"operator.read",
"operator.write"
],
"updatedAtMs": 1784098986853
"updatedAtMs": 1784104266880
}
}
}
@@ -1 +1 @@
{"o9cq80w6ZnnPGItW-GGACkwd69bA@im.wechat":"AARzJWAFAAABAAAAAAC9UVgZ+t/z2/vhcChXaiAAAAB+9905Q6UiugPBawU3n3cyzQX+LkN8ofRzsCZYN0mt7kP/BHgErxQWzCL4vVqfqTeGvh2VAkdvRQjQR3NNngt+ap7J3YuD"}
{"o9cq80w6ZnnPGItW-GGACkwd69bA@im.wechat":"AARzJWAFAAABAAAAAAAvI2WU5FBQHdULMENXaiAAAAB+9905Q6UiugPBawU3n3cyzQX+LkN8ofRzsCZYN0mt7vCJsWiRx6eH0adX2Lu/PQZJuejp/KZ6gsp8G4QyHIs3i9+v6CHZ"}
@@ -1 +1 @@
{"get_updates_buf":"ChAIERDV7tej9jMYmp6chfYzEjplNDhhY2U5ODE0ZjBAaW0uYm90OjA2MDAwMGQ0ZmYwNzg5NWY2NDFlMmZjNmIzNGUzMzNkZDIwMjgx"}
{"get_updates_buf":"ChAIFhC97Pmm9jMYmp6chfYzEjplNDhhY2U5ODE0ZjBAaW0uYm90OjA2MDAwMGQ0ZmYwNzg5NWY2NDFlMmZjNmIzNGUzMzNkZDIwMjgx"}
-23
View File
@@ -1,23 +0,0 @@
#!/bin/bash
# 运动提醒触发条件脚本
# 返回 0(触发)或 1(跳过)
HOUR=$(date +%H)
DOW=$(date +%u) # 1=周一, 5=周五, 2/4=周二/周四
# 只在工作日执行 (1-5)
if [ "$DOW" -lt 1 ] || [ "$DOW" -gt 5 ]; then
exit 1
fi
# 9:00-17:00 整点提醒(12点午休跳过)
if [ "$HOUR" -ge 9 ] && [ "$HOUR" -le 17 ] && [ "$HOUR" -ne 12 ]; then
exit 0
fi
# 周二/周四 20:00 额外提醒
if [ "$HOUR" -eq 20 ] && { [ "$DOW" -eq 2 ] || [ "$DOW" -eq 4 ]; }; then
exit 0
fi
exit 1