ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

context-verifier

Know the file you're editing is the file you think it is — verify integrity before you act

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/leegitw/context-verifier
Or

context-verifier (検証)

Unified skill for file hash computation, integrity verification, severity tagging, and context packet creation. Consolidates 3 granular skills into a single verification system.

Trigger: 明示呼出 (explicit invocation)

Source skills: context-packet, file-verifier, severity-tagger

Installation

openclaw install leegitw/context-verifier

Dependencies: None (foundational skill)

Standalone usage: This skill is fully functional standalone. It provides file integrity verification that other skills in the suite depend on. Install this first when adopting the Neon Agentic Suite.

Data handling: This skill performs local-only operations. Hash computation uses standard SHA256 algorithms locally — no file contents are sent to any model, API, or external service. Results are written to output/context-packets/ in your workspace. The skill reads config from .openclaw/context-verifier.yaml or .claude/context-verifier.yaml only.

File access scope: This skill reads user-specified files for hash computation. The metadata declares config and output paths only — the skill will read ANY file path you provide to /cv hash, /cv verify, or /cv packet. Use caution with sensitive files.

What This Solves

AI agents sometimes operate on stale data — editing a file that changed since it was read, or trusting cached content that's now outdated. This skill prevents that by:

  1. Computing hashes of files before and after operations
  2. Detecting changes between read and write
  3. Generating context packets with verifiable checksums for review workflows

The insight: Trust but verify. The file you read might not be the file you're about to edit. Check first.

Usage

/cv <sub-command> [arguments]

Sub-Commands

CommandCJKLogicTrigger
/cv hash哈希file→SHA256(content)Explicit
/cv verify検証file×hash→match✓∨mismatch✗Explicit
/cv tag標記file→severity∈{critical,important,minor}Explicit
/cv packet包装files[]→{path,hash,severity,timestamp}[]Explicit

Arguments

/cv hash

ArgumentRequiredDescription
fileYesFile path to hash
--algorithmNoHash algorithm: sha256 only (MD5/SHA-1 removed - cryptographically broken)

/cv verify

ArgumentRequiredDescription
fileYesFile path to verify
hashYesExpected hash value
--algorithmNoHash algorithm: sha256 only

/cv tag

ArgumentRequiredDescription
fileYesFile path to tag
severityNoSeverity level: critical, important, minor (auto-detected if omitted)

/cv packet

Metadata

Author@leegitw
Stars1656
Views0
Updated2026-02-28
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-leegitw-context-verifier": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#agentic#verification#integrity#validation#checksums#drift-detection#state#file-verification
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.