Stats
Actions
Tags
From digital-evidence
Use when computing cryptographic hashes (SHA-256, BLAKE3) for files or directories.
How this skill is triggered — by the user, by Claude, or both
Slash command
/digital-evidence:hash-evidencehaikuThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Compute SHA-256 (and optionally BLAKE3) hashes for files or directories to establish baseline integrity.
Compute SHA-256 (and optionally BLAKE3) hashes for files or directories to establish baseline integrity.
--blake3 flag (optional; compute BLAKE3 in addition to SHA-256)--out <manifest-path> (optional; write manifest to custom location; defaults to <path>.sha256 or <path>.blake3)sha256sum <path> and capture output.find <path> -type f -exec sha256sum {} \; and write results to manifest file <path>.sha256.--blake3 given: also run b3sum <path> (for file) or find <path> -type f -exec b3sum {} \; (for dir), append to manifest or write to <path>.blake3.--out given: write manifest to specified path instead of default location.<dir>.sha256, <dir>.blake3, or custom --out paths)./legal-investigative log-evidence for registration.verify-bundle for that./log-evidence for chain-of-custody.npx claudepluginhub danielrosehill/claude-code-plugins --plugin digital-evidenceGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.