在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用run-local
星标1
分支0
更新时间2026年1月25日 19:32
Run vault-backup locally with test configuration
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run vault-backup locally with test configuration
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | run-local |
| description | Run vault-backup locally with test configuration |
| disable-model-invocation | true |
Run the vault backup service locally for testing.
pip install -e .)Create a test vault if it doesn't exist:
mkdir -p /tmp/test-vault
echo "# Test Note" > /tmp/test-vault/test.md
Run in dry-run mode (no actual backups):
VAULT_PATH=/tmp/test-vault \
DRY_RUN=true \
RESTIC_REPOSITORY=local:/tmp/test-backup \
RESTIC_PASSWORD=test \
AZURE_ACCOUNT_NAME=dummy \
AZURE_ACCOUNT_KEY=dummy \
python -m vault_backup
The health endpoint will be available at http://localhost:8080/health
To trigger a backup cycle:
/tmp/test-vaultDEBOUNCE_SECONDS=10 for faster testing)For rapid iteration with 10-second debounce:
VAULT_PATH=/tmp/test-vault \
DRY_RUN=true \
DEBOUNCE_SECONDS=10 \
RESTIC_REPOSITORY=local:/tmp/test-backup \
RESTIC_PASSWORD=test \
AZURE_ACCOUNT_NAME=dummy \
AZURE_ACCOUNT_KEY=dummy \
python -m vault_backup