docs-xlsx

Parse Excel spreadsheets (.xlsx) into repository-friendly CSV and JSON artifacts. Use when users need to extract data, formulas, or structure from Excel files.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "docs-xlsx" with this command: npx skills add nikhilmaddirala/gtd-cc/nikhilmaddirala-gtd-cc-docs-xlsx

Excel Spreadsheet Parsing

Parse Excel spreadsheets (.xlsx) into CSV files, JSON metadata, and formula artifacts using multi-method extraction.

Usage

Run the parsing script directly:

./scripts/parse_xlsx.py <path_to_file.xlsx> <output_dir>

Example:

./scripts/parse_xlsx.py ~/data/workbook.xlsx ./parsed/

The script uses 4 extraction methods:

  • pandas (basic) - CSV exports + schema
  • pandas (detailed) - Data types + statistics
  • openpyxl (structure) - Workbook structure JSON
  • openpyxl (formulas) - Formula extraction

Output Structure

output_dir/
├── file.xlsx/
│   ├── parsing_summary.json
│   ├── pandas_basic/
│   │   ├── Sheet1.csv
│   │   ├── Sheet2.csv
│   │   └── metadata.json
│   ├── pandas_detailed/
│   │   ├── Sheet1.csv
│   │   ├── Sheet2.csv
│   │   ├── statistics.json
│   │   └── data_types.json
│   ├── openpyxl_structure/
│   │   └── workbook.json
│   └── openpyxl_formulas/
│       └── formulas.json

Script Features

  • Exports each sheet as separate CSV file
  • Captures data types and statistics
  • Extracts formulas with cell references
  • Handles multiple sheets per workbook
  • Provides schema information for each sheet

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

tools-catppuccin

No summary provided by upstream source.

Repository SourceNeeds Review
General

productivity-todoist

No summary provided by upstream source.

Repository SourceNeeds Review
General

web-search

No summary provided by upstream source.

Repository SourceNeeds Review
General

docs-pptx

No summary provided by upstream source.

Repository SourceNeeds Review