Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Use when creating, opening, reading, or editing editable Office canvas artifacts such as DOCX documents, XLSX spreadsheets, and PPTX presentations with the document_artifact tool.
Use document_artifact for substantial Office deliverables that should remain editable in the canvas. Do not paste long document, spreadsheet, or deck bodies only into chat when the user asked for an editable file.
document_artifact:create or document_artifact:open.document_artifact:read with file_id or path.document_artifact:edit.version_history or restore_version when the user asks to audit or roll back.Canvas context may list opened Office files with file_id, path, version, size, and timestamp. It intentionally omits full file contents; use read when the content matters.
Create:
{
"tool_name": "document_artifact:create",
"tool_args": {
"kind": "document",
"title": "Project Brief",
"format": "docx",
"content": "Draft text here."
}
}
For spreadsheets, content can be CSV, TSV, or a Markdown table; the tool writes real cells, not one text blob per row.
Read:
{
"tool_name": "document_artifact:read",
"tool_args": {
"file_id": "abc123"
}
}
npx skills add agent0ai/agent-zero --skill office-artifactsHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.