원클릭으로
document-ingest
Upload, vision-parse, and persist a document with multi-level summaries.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Upload, vision-parse, and persist a document with multi-level summaries.
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-ingest |
| description | Upload, vision-parse, and persist a document with multi-level summaries. |
| inputs | [{"name":"file_path","type":"string","required":true,"description":"Local or remote path to the source file."},{"name":"filename","type":"string","required":true,"description":"Human-readable filename stored in the Document record."},{"name":"collection_id","type":"string","required":false,"description":"Optional folder/collection to assign the document to on creation."}] |
| outputs | [{"name":"document_id","type":"string","description":"UUID of the newly created Document row."},{"name":"page_count","type":"integer","description":"Number of pages parsed from the document."}] |
| tools | ["vision-parse","db-query"] |
Pick this skill when the user uploads a file or references a path that has not yet been imported into the system. Use it before any classify, summarize, or extract operation because those skills assume the document already exists in the store.
vision-parse (DOCX → PDF → per-page images).Document row, one Chapter row per chapter, one Section per section,
and one Page per page to the DB via db-query.Chunk rows; optionally embed and store vectors.Document.summary, Chapter.summary, and Section.summary.Emits one ExecutionHistory row with event_type=DOCUMENT_IMPORTED and actor_type=agent
after the Document row is committed.