Back to list
sarincasm

encrypt-backup

by sarincasm

XXXXXXXXXX

1🍴 0📅 Jan 18, 2026

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

  1. Verify the target folder exists
  2. Ensure the encrypted/ directory exists:
    mkdir -p encrypted
    
  3. Remove existing encrypted file if present:
    rm -f encrypted/<folder>.tar.gz.gpg
    
  4. Create encrypted archive in encrypted/:
    tar czf - <folder> | gpg --batch --trust-model always -e -r "sarincasm" -o encrypted/<folder>.tar.gz.gpg
    
    Note: --batch is required for non-interactive environments (no TTY).
  5. Verify the encrypted file was created successfully
  6. Warn if the folder is not gitignored:
    if ! git check-ignore -q <folder>; then
      echo "Warning: <folder> is not gitignored."
    fi
    
  7. Confirm completion to user

Decryption (for reference)

gpg -d encrypted/<folder>.tar.gz.gpg | tar xzf -

Score

Total Score

50/100

Based on repository quality metrics

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

Reviews

💬

Reviews coming soon