원클릭으로
audit-query
Read-only query over the ExecutionHistory table with structured filters.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read-only query over the ExecutionHistory table with structured filters.
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 | audit-query |
| description | Read-only query over the ExecutionHistory table with structured filters. |
| inputs | [{"name":"filters","type":"object","required":true,"description":"Filter object — supports keys document_id, event_type, actor_type, from_ts, to_ts, limit."}] |
| outputs | [{"name":"events","type":"array","description":"List of matching ExecutionHistory rows ordered by created_at descending."},{"name":"total","type":"integer","description":"Total count of matching rows before limit is applied."}] |
| tools | ["db-query"] |
Invoke this skill when the user asks what happened to a document, who made changes, when
an event occurred, or needs a compliance report. It is the only skill authorized to expose
ExecutionHistory rows to the user; do not inline audit data in other skill responses.
filters object and build a parameterized WHERE clause against the
ExecutionHistory table via db-query.document_id, event_type enum value, actor_type, and a
timestamp range (from_ts, to_ts).Document.title joined from the Document table.limit (default 50, max 500) to prevent runaway result sets.Emits no ExecutionHistory rows (read-only). This skill must never write to the audit
log to avoid recursive entries.