feat(command): port md5sum, sha1sum, sha256sum from just-bash
Mirror the GNU coreutils-style md5sum / sha1sum / sha256sum trio,
including --check verification mode, the binary marker (`*`) on
checksum lines, and the `WARNING: N computed checksum(s) did NOT
match` summary. Shared logic lives in an internal `checksum` helper
so the three command packages stay one-liners.
Backed by stdlib crypto/md5, crypto/sha1, crypto/sha256 instead of
the just-bash hand-rolled MD5 + WebCrypto fallback.
Assisted-by: Claude Opus 4.7 via Claude Code
Signed-off-by: Xe Iaso <me@xeiaso.net>