← スキル一覧に戻る

encrypt-backup
by sarincasm
XXXXXXXXXX
⭐ 1🍴 0📅 2026年1月18日
SKILL.md
name: encrypt-backup description: Encrypt folders using GPG for backup. Use when user wants to backup or encrypt sensitive directories.
Encrypt Backup
Encrypts a folder using GPG and removes the unencrypted original.
Prerequisites
- GPG installed and configured
- GPG key available for recipient
sarincasm
Steps
- Verify the target folder exists
- Ensure the
encrypted/directory exists:mkdir -p encrypted - Remove existing encrypted file if present:
rm -f encrypted/<folder>.tar.gz.gpg - Create encrypted archive in
encrypted/:
Note:tar czf - <folder> | gpg --batch --trust-model always -e -r "sarincasm" -o encrypted/<folder>.tar.gz.gpg--batchis required for non-interactive environments (no TTY). - Verify the encrypted file was created successfully
- Warn if the folder is not gitignored:
if ! git check-ignore -q <folder>; then echo "Warning: <folder> is not gitignored." fi - Confirm completion to user
Decryption (for reference)
gpg -d encrypted/<folder>.tar.gz.gpg | tar xzf -
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です