RedactKit - AI Privacy Scrubber

ReviewAudited by ClawScan on May 10, 2026.

Overview

RedactKit appears to be a local privacy redaction tool; the main caution is that reversible mapping files store the original sensitive values in plaintext.

This looks reasonable for local, user-invoked redaction. Before installing, understand that detection is regex-based and not guaranteed, and treat mapping files like secrets because they can restore the original sensitive data.

Findings (2)

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

Anyone with access to a mapping file may be able to recover the original emails, API keys, passwords, or other redacted values.

Why it was flagged

The skill intentionally persists original sensitive values so redaction can be reversed. This is disclosed and purpose-aligned, but the mapping file becomes sensitive data that must be protected.

Skill content
Mapping files are stored as plain JSON. If someone gets the mapping file, they can restore your redacted data.
Recommendation

Store mapping files in an encrypted or access-restricted location, avoid syncing them unintentionally, and delete them when restoration is no longer needed.

What this means

If pointed at a large or sensitive directory, the tool may create many redacted outputs and plaintext mapping files containing original sensitive values.

Why it was flagged

Batch mode recursively walks a user-supplied directory and processes matching files. This is consistent with the documented batch redaction feature, but broad directory choices can affect many local files.

Skill content
for root, dirs, files in os.walk(input_dir):
Recommendation

Use report mode first, choose narrow input directories, and keep output and mapping directories separate from shared or synced locations.