원클릭으로
collection-manage
Create folders, move documents between folders, and manage ACL inheritance.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create folders, move documents between folders, and manage ACL inheritance.
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 | collection-manage |
| description | Create folders, move documents between folders, and manage ACL inheritance. |
| inputs | [{"name":"action","type":"string","required":true,"description":"One of \"create-folder\", \"move\", \"set-acl\", or \"list\"."},{"name":"collection_id","type":"string","required":false,"description":"UUID of the target collection/folder. Required for \"move\", \"set-acl\", and \"list\"."},{"name":"document_id","type":"string","required":false,"description":"UUID of the Document to move. Required for \"move\"."},{"name":"acl","type":"object","required":false,"description":"ACL patch object (e.g. {read: [...], write: [...]}). Required for set-acl."}] |
| outputs | [{"name":"collection_id","type":"string","description":"UUID of the created or modified collection."},{"name":"document_ids","type":"array","description":"List of Document UUIDs in the collection; populated for \"list\" action."}] |
| tools | ["db-query"] |
Use this skill to organize the document store: creating new folder hierarchies, relocating documents after ingestion, or updating access permissions on a folder. It must be called before documents are assigned to a collection during bulk-import workflows.
db-query; inherit parent ACL if a parent collection_id is supplied.Document.collection_id foreign key via db-query; validate
the target collection exists first.Document rows via db-query.Document UUIDs and titles within the given collection_id.Emits one ExecutionHistory row with event_type=DOCUMENT_EDITED and actor_type=agent
for "create-folder", "move", and "set-acl". "list" is read-only and emits no row.