用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jleechanorg/claude-commands --skill verify-secrets-backup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | verify-secrets-backup |
| description | Verify gitignored OpenClaw secret files are present and fresh in Dropbox backup. |
Verify that all gitignored config files containing real tokens/secrets from ~/.openclaw/
are present in the Dropbox backup at ~/Library/CloudStorage/Dropbox/openclaw_backup/latest/.
Check each of these exists in the Dropbox backup AND is non-zero size AND was modified within the last 7 days:
| File | Why it matters |
|---|---|
openclaw.json | All API keys, Slack tokens, gateway tokens, OpenAI/MiniMax/XAI keys |
agents/main/agent/auth-profiles.json | OAuth tokens for the main agent |
credentials/ | Provider credentials directory |
discord-eng-bot/openclaw.json | Discord bot config (uses resolved tokens at runtime) |
~/.openclaw/scripts/dropbox-openclaw-backup.sh to force a fresh backup~/Library/CloudStorage/Dropbox/openclaw_backup/latest/BACKUP=~/Library/CloudStorage/Dropbox/openclaw_backup/latest
for f in openclaw.json agents/main/agent/auth-profiles.json credentials; do
if [ -e "$BACKUP/$f" ]; then
age=$(( ($(date +%s) - $(stat -f %m "$BACKUP/$f")) / 3600 ))
echo "✓ $f (${age}h ago)"
else
echo "✗ MISSING: $f"
fi
done