excel-workbooks

Creates and edits ODS and XLSX spreadsheet workbooks via the document_artifact tool.

2|Updated May 12, 2026
One-click install
npx skills add https://github.com/tajo9128/BioDockify-Pharma-AI --skill excel-workbooks-tajo9128
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: excel-workbooks
Source: https://github.com/tajo9128/BioDockify-Pharma-AI/tree/main/plugins/_office/skills/excel-workbooks
Command: npx skills add https://github.com/tajo9128/BioDockify-Pharma-AI --skill excel-workbooks-tajo9128

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It lets you create and edit LibreOffice Calc ODS spreadsheets or Excel XLSX workbooks directly from a conversation, without manually opening a spreadsheet application or writing files by hand. ## Core Features & Use Cases - Workbook Creation: Generate ODS spreadsheets from CSV, TSV, or Markdown table content, with XLSX reserved for explicit Excel compatibility requests. - Cell-Level Editing: Use set_cells for precise edits, rows for whole-table replacement, and append_rows for adding records to an existing workbook. - Embedded Charts: Create charts in XLSX compatibility format using the create_chart operation when chart output is required. - Use Case: Ask for a budget workbook with item and amount columns, then append new expense rows or update individual cells as your data changes. ## Quick Start Create an ODS spreadsheet titled Budget with columns Item and Amount and a first row containing Platform and 1000.

Frequently Asked Questions about excel-workbooks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a spreadsheet from CSV data?

Pass the CSV text as the content argument to document_artifact:create with kind set to spreadsheet and format set to ods. The tool converts the CSV into real spreadsheet cells in a new workbook.

How do I edit specific cells in an existing workbook?

Use document_artifact:edit with the set_cells operation, providing the file_id and a map of cell addresses like Sheet1!A1 to their new values. Use rows for whole-table replacement or append_rows to add records.

When should I use XLSX instead of ODS format?

Use XLSX only when the user explicitly requests Excel compatibility, provides an existing .xlsx file, or needs embedded spreadsheet charts via create_chart. Otherwise ODS is the default format.

Can I add charts to an ODS spreadsheet?

Embedded charts via create_chart are supported in XLSX compatibility format. For ODS chart workflows, use the Calc desktop application or code execution instead of direct editing.

Does creating a workbook open the spreadsheet canvas automatically?

No. Creating or editing a workbook saves the file and returns action buttons, but the canvas stays closed. The user can choose to open it in the canvas when they want the visible spreadsheet.