plugins/_office/skills/excel-workbooks/SKILL.md
Use when creating, opening, or editing Excel-compatible XLSX spreadsheets, workbooks, tables, budgets, formulas, sheets, or charts.
npx skillsauth add agent0ai/agent-zero excel-workbooksInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use XLSX when the user asks for Excel, a spreadsheet, a workbook, tables that should remain editable as cells, formulas, or embedded spreadsheet charts.
The canvas is user-owned UI. Creating or editing an XLSX must save the workbook and return action buttons, but must not open the canvas automatically. Use Desktop/Calc only for explicit GUI requests, visual chart/layout polish, or final visual confirmation.
Create a workbook:
{
"tool_name": "document_artifact:create",
"tool_args": {
"kind": "spreadsheet",
"title": "Budget",
"format": "xlsx",
"content": "Item,Amount\nPlatform,1000"
}
}
For a blank workbook request, create a simple workbook with the requested title and format: "xlsx"; do not call status first unless the user asked for availability.
Edit cells:
{
"tool_name": "document_artifact:edit",
"tool_args": {
"file_id": "abc123",
"operation": "set_cells",
"cells": {
"Sheet1!A1": "Item",
"Sheet1!B1": "Amount"
}
}
}
Practical rules:
content may be CSV, TSV, or a Markdown table; the tool writes real spreadsheet cells.rows for whole-table replacement, append_rows for adding records, and set_cells for precise edits.create_chart with a chart object for embedded charts before reaching for code execution.testing
Use when creating, opening, or editing LibreOffice Writer ODT documents, or DOCX documents only when Microsoft Word compatibility is explicitly required.
testing
Use when creating, opening, or editing LibreOffice Impress ODP presentations, or PPTX decks only when PowerPoint compatibility is explicitly required.
testing
Use when creating, opening, or editing LibreOffice Calc ODS spreadsheets, or XLSX workbooks only when Excel compatibility is explicitly required.
data-ai
Use when the user asks Agent Zero to operate the built-in Linux Desktop, XFCE apps, LibreOffice GUI apps, file manager, terminal, or visual desktop workflows.