# Hash File Verify

> Compute and verify SHA-256 hash of a file for integrity checking

- Skill: `jadegate/hash-file-verify` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add jadegate/hash-file-verify`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jadegate/hash-file-verify/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: jadegate (https://skillmd.com/u/jadegate)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jadegate/hash-file-verify

---


# File Hash Verification

Compute and verify SHA-256 hash of a file for integrity checking

## When to Use

- User wants to verify hash
- User wants to hash file
- Keywords: hash, sha256, verify, integrity

## Required Parameters

- **file_path** (string): Path to file
- **expected_hash** (string): Expected SHA-256 hash (optional)

## Output

- **hash** (string): Computed SHA-256 hash
- **match** (boolean): Whether hash matches expected
- **file_size** (number): File size in bytes

## Security

- Sandbox level: strict
- Max execution time: 30000ms
- JadeGate verified: Yes (5-layer security check passed)

## Execution Flow

Entry: `read_file` -> 7 steps -> Exit: `ret_match`, `ret_nomatch`, `ret_fail`

