Excel Spreadsheet Processing

SkillFiles & storage

Use this skill whenever the user wants to do anything with Excel spreadsheet files (.xlsx, .xls, .csv). This includes reading data, writing formulas, manipulating cells, formatting, filtering, creating charts, pivot tables, and any spreadsheet automation tasks.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Excel Spreadsheet Processing skill

What this skill tells your AI

The instructions your AI receives, as published by mindscale-noah/mindmemos in resources/skill_evolve/spreadsheetbench_init_skill/xlsx/SKILL.md and read by ahel’s review.

Use openpyxl to read and write .xlsx files.

Quick Start

from openpyxl import load_workbook

wb = load_workbook("input.xlsx")
ws = wb["Sheet1"]

value = ws["A1"].value
ws["B2"] = 42
ws["C2"] = "=SUM(A2:B2)"

wb.save("output.xlsx")

Use this for direct cell edits, formula updates, and simple workbook changes.

Reading Data with pandas

import pandas as pd

df = pd.read_excel('file.xlsx')                          # First sheet
all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict

Common Pitfalls

  • Cell indices are 1-based: ws.cell(row=1, column=1) is A1.
  • data_only=True destroys formulas on save: Use a separate workbook object for reading calculated values.
  • ws.max_row overcounts: May include formatted-but-empty rows. Scan the column to find the last non-empty cell when you need the true data range.

Signals

GitHub stars
981
Forks
95
Last commit
Sep 2026
Hacker News mentions
10
Advanced
Catalog kind
skill
Gateway key
xlsx-mindscale-noah
Source
github.com/mindscale-noah/mindmemos