XLSX

Extract data from Excel and CSV files

gabrielmoreira Updated 17 repo stars

File contents

XLSX Skill

Reads .xlsx files using openpyxl and .csv files using the stdlib csv module, returning all rows as comma-separated text.

Setup

pip install openpyxl

.csv files use only the Python standard library — no additional install required.

Standalone usage

import asyncio
from synthadoc.skills.xlsx.scripts.main import XlsxSkill

skill = XlsxSkill()

async def main():
    result = await skill.extract("/path/to/data.xlsx")
    print(result.text)      # all rows as comma-separated text
    print(result.metadata)  # {"rows": N, "sheets": N}  (xlsx only)

asyncio.run(main())

When this skill is used

  • Source path ends with .xlsx or .csv
  • User intent contains: spreadsheet, excel, csv

gabrielmoreira/agent-skills-mirror/tree/main/mirrors/repos/axoviq-ai@synthadoc/synthadoc/skills/xlsx commit c7a9bf361a

Frequently asked questions

npx skillmds@latest add gabrielmoreira/xlsx