Install
openclaw skills install artifact-redactorPublic OpenClaw skill for redacting private paths, secret-like strings, private URLs, and common PII from Markdown, JSON, logs, and other text artifacts before sharing.
openclaw skills install artifact-redactorTake a directory or file full of text artifacts and produce a safer share bundle:
This skill is for text artifacts such as Markdown, JSON, logs, YAML, CSV, shell output, and similar files. It does not claim to sanitize screenshots, PDFs, or other binary files. It requires Python 3.9+.
Scan the source artifacts.
python3 {baseDir}/scripts/scan_sensitive_text.py --root <source> --out <scan.json>.--root at either one file or a directory.Write a redacted copy.
python3 {baseDir}/scripts/redact_artifacts.py --root <source> --out-dir <safe-dir> --out <redaction.json>.Check the output.
python3 {baseDir}/scripts/check_redaction_output.py --root <safe-dir> --redaction <redaction.json> --out <check.json>.share-ready only when no supported-text findings remain and no skipped files still require manual review.manual-review-required rather than a full-clear result.Render the report.
python3 {baseDir}/scripts/render_redaction_report.py --scan <scan.json> --redaction <redaction.json> --check <check.json> --out <report.md>.fix-required or manual-review-required, do not present the full bundle as cleared.scripts/scan_sensitive_text.py
scripts/redact_artifacts.py
scripts/check_redaction_output.py
share-ready, manual-review-required, or fix-required.scripts/render_redaction_report.py