ワンクリックで
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.