name: log-redactor description: Redact secrets and PII from logs before sharing or summarizing. Use when the user asks to sanitize/redact logs or remove emails, tokens, API keys, or passwords.
Log Redactor Skill
Workflow
- Run the redaction script on the raw log.
- Verify that obvious secrets and PII are masked.
- Summarize the redacted content if requested.
Script usage
- Run:
python scripts/redact_logs.py --input <path> --output <path> - If no output path is provided, print to stdout.
Output format
Redacted log:
<redacted content>
Optional summary:
- ...
Notes
- Do not invent values when masking.
- Keep original structure intact while replacing sensitive tokens.