xlsx

Create and edit Excel workbooks with pandas and openpyxl.

1|Updated Jan 31, 2026
One-click install
npx skills add https://github.com/mkhsu2002/elitefashiontw --skill xlsx-mkhsu2002
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: xlsx
Source: https://github.com/mkhsu2002/elitefashiontw/tree/main/.agent/skills/xlsx
Command: npx skills add https://github.com/mkhsu2002/elitefashiontw --skill xlsx-mkhsu2002

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Excel and spreadsheet workflows often require repetitive creation, formatting, and data analysis across files. This Skill provides programmatic access to generate, modify, and analyze spreadsheets, reducing manual work and errors.

Core Features & Use Cases

  • Read and analyze data from Excel and CSV files using pandas for quick insights.
  • Create new Excel workbooks and write data with openpyxl, including formulas and formatting.
  • Edit existing workbooks (add sheets, insert rows/columns, update cells) while preserving formulas and styles.
  • Apply best practices for large files (read_only/write_only) and maintain data_only values when extracting results.

Quick Start

Create a new spreadsheet from your data, apply a SUM formula to a column, and save the result as output.xlsx.

Frequently Asked Questions about xlsx

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

FAQPage Schema
How do I automate Excel spreadsheet creation and editing with Python?

Automating Excel spreadsheet creation and editing uses Python libraries like openpyxl to generate workbooks, write data, apply formulas, and update cells while preserving existing styles. This programmatically reduces manual formatting work and errors across repetitive file workflows.

What's the best way to read and analyze Excel or CSV data for quick insights?

Reading and analyzing Excel or CSV data for quick insights is best handled using pandas to load files into DataFrames. This enables fast data-centric analysis workflows, extracting calculated values directly without needing to manually open the spreadsheet applications.

Can I modify existing Excel workbooks without losing formulas and formatting?

Modifying existing Excel workbooks without losing formulas and formatting is supported by reading files with openpyxl, inserting rows or columns, and updating cells. The process enforces formula usage rather than hardcoding values, ensuring calculated results and styles are preserved.

Does this approach handle large Excel files without running out of memory?

Handling large Excel files without running out of memory is supported through openpyxl's read_only and write_only modes. These specialized modes optimize spreadsheet processing by streaming data, preventing memory overload when analyzing or generating massive data-centric workbooks.

Why does my spreadsheet analysis tool return stale formula values instead of calculated results?

Spreadsheet analysis tools return stale formula values instead of calculated results when not configured to maintain data_only modes. Extracting the correct calculated output requires explicitly reading the workbook with data_only enabled to preserve the evaluated formula values.