Install
openclaw skills install @terrycarter1985/file-hasherCompute file checksums (MD5, SHA-1, SHA-256) and verify file integrity. Use when you need to verify file integrity, detect duplicates, or generate hash identifiers for digital assets.
openclaw skills install @terrycarter1985/file-hasherQuickly compute and verify file hashes. Supports MD5, SHA-1, and SHA-256.
sha256sum, sha1sum, md5sum available on PATH (standard on Linux/macOS)bash scripts/hash.sh <file> [algorithm]
algorithm: sha256 (default), sha1, or md5bash scripts/hash-all.sh <file>
bash scripts/verify.sh <file> <expected-hash> [algorithm]
Exit code 0 = match, 1 = mismatch.
# SHA-256 of a file
bash scripts/hash.sh ./photo.jpg sha256
# All hashes
bash scripts/hash-all.sh ./document.pdf
# Verify MD5
bash scripts/verify.sh ./data.zip abc123def456 md5