بنقرة واحدة
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.