Clarity Gate

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: clarity-gate Version: 2.1.3 The OpenClaw AgentSkills skill bundle 'clarity-gate' is designed for pre-ingestion verification of document quality for RAG systems. The `SKILL.md` provides detailed, transparent instructions for an AI agent to perform document analysis, verification, and formatting according to a specific 'Clarity Gate' specification. The bundled Python scripts (`claim_id.py` and `document_hash.py`) are helper utilities for deterministic hashing and ID generation, which are legitimate functions for ensuring data integrity and consistency as described in the specification. While `document_hash.py` reads files, this is explicitly for its stated purpose of hashing the input document. There is no evidence of prompt injection, data exfiltration, malicious execution, persistence mechanisms, or obfuscation. All components align with the stated, benign purpose.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If run on a file, the helper script will read that document locally to compute verification output.

Why it was flagged

The helper script reads the local file path supplied to it so it can compute or verify a document hash. This is consistent with the skill's document-verification purpose, but it is still local file access.

Skill content
with open(filepath, 'r', encoding='utf-8') as f:
        file_content = f.read()
Recommendation

Use the helper only on documents you intend to process, and avoid pointing it at unrelated private files.