원클릭으로
document-relate
Create or query directed relations between documents as graph edges.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create or query directed relations between documents as graph edges.
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-relate |
| description | Create or query directed relations between documents as graph edges. |
| inputs | [{"name":"document_id","type":"string","required":true,"description":"UUID of the source Document."},{"name":"relation_type","type":"string","required":true,"description":"Relation label — e.g. \"supersedes\", \"references\", \"derived-from\", \"related-to\"."},{"name":"target_document_id","type":"string","required":false,"description":"UUID of the target Document. Required for \"create\"; omit to query existing relations."},{"name":"action","type":"string","required":false,"description":"One of \"create\" or \"query\". Defaults to \"query\"."}] |
| outputs | [{"name":"relations","type":"array","description":"List of {relation_id, relation_type, target_document_id, target_title} for the source document."},{"name":"relation_id","type":"string","description":"UUID of the newly created relation row; populated for \"create\" action only."}] |
| tools | ["db-query"] |
Invoke this skill when the user says a document supersedes, references, or is derived from
another, or when they ask which documents are related to a given one. Use it to build the
knowledge graph before running document-search over a topic cluster.
Document rows exist via db-query, then insert a
relation edge into the document relations join table linked to both Document UUIDs.document_id from the
relations table; enrich each with the related Document.title via db-query.Emits one ExecutionHistory row with event_type=DOCUMENT_EDITED and actor_type=agent
for "create". The "query" action is read-only and emits no row.