بنقرة واحدة
document-redact
Strip PII and sensitive entities from a document and store a redacted derivative.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Strip PII and sensitive entities from a document and store a redacted derivative.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a Word document from ingested source documents using the agnostic Document tree (CommonMark/Pandoc-aligned)
Generate a single Document (Word/PowerPoint) from all source documents in a collection, with attributions back to each source
Generate a PDF from ingested source documents using the agnostic Document tree
Generate a PowerPoint deck from ingested source documents using the agnostic Document tree (parametrised by slide_count, style, audience, tone)
Generate an Excel workbook (.xlsx) from ingested source documents — tabular with charts, formulas, KPI cells
Find PII (emails, phones, SSN, credit cards, IBANs, names, addresses, DOB) in an ingested document; return redaction plan
| name | document-redact |
| description | Strip PII and sensitive entities from a document and store a redacted derivative. |
| inputs | [{"name":"document_id","type":"string","required":true,"description":"UUID of the Document to redact."},{"name":"entity_types","type":"array","required":false,"description":"Entity type filters to redact (e.g. [\"PERSON\", \"EMAIL\", \"SSN\"]). Defaults to all PII types."},{"name":"output_format","type":"string","required":false,"description":"Format of the redacted derivative — \"pdf\" or \"docx\". Defaults to \"pdf\"."}] |
| outputs | [{"name":"redacted_document_id","type":"string","description":"UUID of the newly created redacted DocumentInstance."},{"name":"redaction_count","type":"integer","description":"Number of entity spans replaced with redaction markers."}] |
| tools | ["llm-redact","db-query","file-render"] |
Use this skill when the user needs a shareable version of a document with personal or
confidential information removed. Always run document-classify first so the sensitivity
tier is known; this skill reads that tier to determine which entity types to target by
default.
Page rows and their text content via db-query.llm-redact with the requested entity_types; receive spans
to replace.file-render.DocumentInstance row pointing to the redacted file, linked to the source
Document.Emits one ExecutionHistory row with event_type=DOCUMENT_EDITED and actor_type=agent
after the redacted DocumentInstance row is committed.