minimax-xlsx

Manage Excel workbooks via direct OOXML manipulation without OpenXML-writing libraries.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/almazom/agents_slash_skills --skill minimax-xlsx-almazom
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: minimax-xlsx
Source: https://github.com/almazom/agents_slash_skills/tree/main/minimax-xlsx
Command: npx skills add https://github.com/almazom/agents_slash_skills --skill minimax-xlsx-almazom

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pandas, and includes scripts (resource) and references (resource) components.

What problem does it solve?

Open, create, read, analyze, edit, or validate Excel/spreadsheet files (.xlsx, .xlsm, .csv, .tsv) with a deterministic XML-only workflow that preserves advanced workbook features (macros, pivots, charts) and avoids brittle library-based writing.

Core Features & Use Cases

  • Direct OOXML manipulation: create, edit, read, validate, and format workbooks by editing the underlying XML instead of using OpenPyXL or similar libraries.
  • Formula integrity and validation: perform static formula checks, cross-sheet references validation, and optional dynamic recalculation via LibreOffice for runtime error detection.
  • Production-grade workflows: support for fixing broken formulas, applying consistent financial formatting, and ensuring structural integrity across sheets, charts, tables, and pivots.
  • Use cases include building auditable financial models, reproducible reporting templates, and stabilized workbook pipelines for finance, analytics, and operations.

Quick Start

Unpack a workbook, then run the standard create/edit/validate sequence to produce a clean, validated xlsx.

Frequently Asked Questions about minimax-xlsx

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

FAQPage Schema
How do I edit Excel files without breaking pivots and charts?

To edit Excel files while preserving pivots and charts, use direct OOXML manipulation. This approach modifies the underlying XML structure of workbooks instead of using high-level writing libraries, ensuring advanced features like macros and charts remain intact.

What is the best way to validate formulas across multiple Excel sheets?

The best way to validate formulas across multiple Excel sheets involves performing static formula checks and cross-sheet reference validation. Optional dynamic recalculation via LibreOffice can also be run to detect runtime errors and ensure structural integrity.

How do I automate reproducible financial reporting templates in xlsx?

To automate reproducible financial reporting templates in xlsx, orchestrate a deterministic XML-only workflow. This process unpacks workbooks to apply consistent financial formatting and structural validation, avoiding brittle library-based writing for production-grade reports.

Why do standard Python Excel libraries corrupt my complex workbook?

Standard Python Excel libraries corrupt complex workbooks because they often fail to preserve advanced features like macros and pivots during writing. Direct OOXML manipulation avoids this by editing the raw XML, maintaining full structural integrity.

Does this approach require LibreOffice to validate Excel formulas?

This approach does not require LibreOffice to validate Excel formulas. Static formula checks and cross-sheet reference validation are handled natively, while LibreOffice is only an optional dependency for dynamic recalculation and runtime error detection.