Install
openclaw skills install openclaw-troubleshootProvide step-by-step diagnostics and command-line fixes for common OpenClaw issues including memory plugin faults, Feishu disconnects, LLM timeouts, and Tele...
openclaw skills install openclaw-troubleshootopenclaw plugins list | grep memoryls ~/.openclaw/agents/main/sessions/ls ~/.openclaw/workspace/MEMORY.md# 启用 memory-core 插件
openclaw plugins enable memory-core
# 添加到允许列表
jq '.plugins.allow += ["memory-core"]' ~/.openclaw/openclaw.json > /tmp/oc.json && mv /tmp/oc.json ~/.openclaw/openclaw.json
# 重启 Gateway
launchctl unload ~/Library/LaunchAgents/ai.openclaw.gateway.plist
launchctl load ~/Library/LaunchAgents/ai.openclaw.gateway.plist
openclaw gateway statusopenclaw status | grep -A 5 "Channels"tail -50 /tmp/openclaw/openclaw-$(date +%Y-%m-%d).log# 强制重启 Gateway
killall openclaw-gateway 2>/dev/null
sleep 2
launchctl kickstart -k gui/$UID/ai.openclaw.gateway
OpenClaw 的 config schema 不支持直接在 providers 下加 timeout 字段。
# 禁用 Telegram
openclaw config set plugins.allow '["feishu"]' # 只保留飞书
openclaw config set plugins.entries.telegram.enabled false
openclaw config set channels.telegram.enabled false
# 重启生效
openclaw gateway restart
openclaw doctor 检查openclaw.json~/.openclaw/openclaw.json~/.openclaw/agents/main/sessions/~/.openclaw/workspace/MEMORY.md/tmp/openclaw/openclaw-YYYY-MM-DD.log~/Library/LaunchAgents/ai.openclaw.gateway.plist