context-verifier
Know the file you're editing is the file you think it is — verify integrity before you act
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/leegitw/context-verifiercontext-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:
- Computing hashes of files before and after operations
- Detecting changes between read and write
- 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
| Command | CJK | Logic | Trigger |
|---|---|---|---|
/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
| Argument | Required | Description |
|---|---|---|
| file | Yes | File path to hash |
| --algorithm | No | Hash algorithm: sha256 only (MD5/SHA-1 removed - cryptographically broken) |
/cv verify
| Argument | Required | Description |
|---|---|---|
| file | Yes | File path to verify |
| hash | Yes | Expected hash value |
| --algorithm | No | Hash algorithm: sha256 only |
/cv tag
| Argument | Required | Description |
|---|---|---|
| file | Yes | File path to tag |
| severity | No | Severity level: critical, important, minor (auto-detected if omitted) |
/cv packet
Metadata
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-leegitw-context-verifier": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
doctorbot-ci-validator
Stop failing in production. Validate your GitHub Actions, GitLab CI & Keep workflows offline with surgical precision. Born from Keep bounty research, perfected for agents.
verify-before-done
Prevent premature completion claims, repeated same-pattern retries, and weak handoffs. Use this skill to improve verification, strategy switching, and blocked-task reporting without changing personality or tone.
theagora
Agent-to-agent service commerce. Browse a live marketplace, purchase with atomic escrow, sell services and earn USDC, check per-function reputation, trade on the exchange. 27 MCP tools for buying, selling, and verifying agent services.
skill-frontmatter-doctor
修复 frontmatter、metadata、requires、install 和目录结构问题,贴合当前 OpenClaw 规范。;use for skills, frontmatter, validation workflows;do not use for 编造不存在的字段, 忽略单行 JSON 约束.
double-check
在修改任何文件后(包括删除功能),自动进行两次独立验证(测试/编译/运行检查/文档或配置检查),确保无误才结束。本技能应默认应用于所有文件修改任务。 / After any file changes (including feature removal), automatically perform two independent verifications (tests/compilation/runtime checks/docs or config checks) to ensure correctness. This skill should be applied by default to any file modification task.