XLSX Skill
SkillFiles & storageExtract data from Excel and CSV files
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the XLSX Skill skill
What this skill tells your AI
The instructions your AI receives, as published by axoviq-ai/synthadoc in synthadoc/skills/xlsx/SKILL.md and read by ahel’s review.
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
.xlsxor.csv - User intent contains:
spreadsheet,excel,csv
Signals
- GitHub stars
- 1k
- Forks
- 123
- Last commit
- Sep 2026
- Hacker News mentions
- 10
Advanced
- Catalog kind
- skill
- Gateway key
xlsx-axoviq-ai- Source
- github.com/axoviq-ai/synthadoc