From cc65940b78de51878a09ea95ec8bffb02eabf576 Mon Sep 17 00:00:00 2001 From: openclaw-314 Date: Wed, 15 Jul 2026 20:00:15 +0800 Subject: [PATCH] auto: sync OpenClaw config 2026-07-15 20:00 --- .../main/agent/plugins/deepseek/catalog.json | 2 +- identity/device-auth.json | 2 +- .../e48ace9814f0-im-bot.context-tokens.json | 2 +- .../accounts/e48ace9814f0-im-bot.sync.json | 2 +- scripts/remind-condition.sh | 23 ------------------- 5 files changed, 4 insertions(+), 27 deletions(-) delete mode 100755 scripts/remind-condition.sh diff --git a/agents/main/agent/plugins/deepseek/catalog.json b/agents/main/agent/plugins/deepseek/catalog.json index 21a047f..03e7f36 100644 --- a/agents/main/agent/plugins/deepseek/catalog.json +++ b/agents/main/agent/plugins/deepseek/catalog.json @@ -38,7 +38,7 @@ } ], "api": "openai-completions", - "apiKey": "sk-893b90b270ad4697a0b0b24969964d79" + "apiKey": "DEEPSEEK_API_KEY" } } } diff --git a/identity/device-auth.json b/identity/device-auth.json index 2d2aead..076a909 100644 --- a/identity/device-auth.json +++ b/identity/device-auth.json @@ -12,7 +12,7 @@ "operator.read", "operator.write" ], - "updatedAtMs": 1784098986853 + "updatedAtMs": 1784104266880 } } } diff --git a/openclaw-weixin/accounts/e48ace9814f0-im-bot.context-tokens.json b/openclaw-weixin/accounts/e48ace9814f0-im-bot.context-tokens.json index 26198ef..044e3f1 100644 --- a/openclaw-weixin/accounts/e48ace9814f0-im-bot.context-tokens.json +++ b/openclaw-weixin/accounts/e48ace9814f0-im-bot.context-tokens.json @@ -1 +1 @@ -{"o9cq80w6ZnnPGItW-GGACkwd69bA@im.wechat":"AARzJWAFAAABAAAAAAC9UVgZ+t/z2/vhcChXaiAAAAB+9905Q6UiugPBawU3n3cyzQX+LkN8ofRzsCZYN0mt7kP/BHgErxQWzCL4vVqfqTeGvh2VAkdvRQjQR3NNngt+ap7J3YuD"} \ No newline at end of file +{"o9cq80w6ZnnPGItW-GGACkwd69bA@im.wechat":"AARzJWAFAAABAAAAAAAvI2WU5FBQHdULMENXaiAAAAB+9905Q6UiugPBawU3n3cyzQX+LkN8ofRzsCZYN0mt7vCJsWiRx6eH0adX2Lu/PQZJuejp/KZ6gsp8G4QyHIs3i9+v6CHZ"} \ No newline at end of file diff --git a/openclaw-weixin/accounts/e48ace9814f0-im-bot.sync.json b/openclaw-weixin/accounts/e48ace9814f0-im-bot.sync.json index 4d90ca8..d78e393 100644 --- a/openclaw-weixin/accounts/e48ace9814f0-im-bot.sync.json +++ b/openclaw-weixin/accounts/e48ace9814f0-im-bot.sync.json @@ -1 +1 @@ -{"get_updates_buf":"ChAIERDV7tej9jMYmp6chfYzEjplNDhhY2U5ODE0ZjBAaW0uYm90OjA2MDAwMGQ0ZmYwNzg5NWY2NDFlMmZjNmIzNGUzMzNkZDIwMjgx"} \ No newline at end of file +{"get_updates_buf":"ChAIFhC97Pmm9jMYmp6chfYzEjplNDhhY2U5ODE0ZjBAaW0uYm90OjA2MDAwMGQ0ZmYwNzg5NWY2NDFlMmZjNmIzNGUzMzNkZDIwMjgx"} \ No newline at end of file diff --git a/scripts/remind-condition.sh b/scripts/remind-condition.sh deleted file mode 100755 index 19b8126..0000000 --- a/scripts/remind-condition.sh +++ /dev/null @@ -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