📊
AutomationPython

Excel Spreadsheet Processing

by mindscale-noah

Excel Spreadsheet Processing is an Automation skill for Claude Code, published by mindscale-noah in MindMemOS.

944 stars91 forkson mindscale-noah/MindMemOSAdded 2026/08/21Repository updated 2026/08/21
agentagent-memoryagent-skillsagenticdsh-plugindsh-pluginsopenclawopenclaw-agentopenclaw-pluginragskills
Install in seconds
Install Excel Spreadsheet Processing
Copy Excel Spreadsheet Processing into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/mindscale-noah/MindMemOS/tree/main/resources/skill_evolve/spreadsheetbench_init_skill/xlsx ~/.claude/skills/xlsx

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/mindscale-noah/MindMemOS.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
resources/skill_evolve/spreadsheetbench_init_skill/xlsx/SKILL.md in mindscale-noah/MindMemOS
Installs to
~/.claude/skills/xlsx
Collection
One of 2 skills cataloged from this repository
Category
Automation1523 skills

What Excel Spreadsheet Processing does

Excel Spreadsheet Processing reads, writes, and edits .xlsx files for spreadsheet tasks like formulas, cell changes, filtering, charts, and pivot tables. Use it when working with Excel data or automating workbook updates.

Excel Spreadsheet Processing is cataloged under Automation on DirSkills. Excel Spreadsheet Processing comes from a repository tagged agent, agent-memory, agent-skills, agentic and dsh-plugin.

Documentation

README

Excel Spreadsheet Processing

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

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Excel Spreadsheet Processing

  • What else does mindscale-noah publish alongside Excel Spreadsheet Processing?

    Excel Spreadsheet Processing is one of 2 skills that DirSkills catalogs from mindscale-noah/MindMemOS, the repository it ships in. Its siblings there include MindMemOS CLI. Each one is a separate skill with its own page in this directory, installs the same way Excel Spreadsheet Processing does, and is maintained by mindscale-noah in that same repository. The rest of the collection is listed on the mindscale-noah/MindMemOS page.

  • How does Excel Spreadsheet Processing compare to other Automation skills?

    Excel Spreadsheet Processing ranks #874 by stars among the 1523 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Excel Spreadsheet Processing against them. Open each page to compare what they document and how they install.