skills/xlsx/SKILL.md
Create, edit, analyze spreadsheets (.xlsx, .xlsm, .csv). Formulas, formatting, data analysis.
npx skillsauth add acefrost511/workmemory xlsxInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
创建、编辑、分析电子表格
所有Excel文件必须零错误:#REF!、#DIV/0!、#VALUE!、#N/A、#NAME?
# ❌ 错误:硬编码
sheet['B10'] = 5000
# ✅ 正确:用公式
sheet['B10'] = '=SUM(A1:A10)'
import pandas as pd
df = pd.read_excel('file.xlsx')
df.to_excel('output.xlsx', index=False)
from openpyxl import Workbook
wb = Workbook()
sheet = wb.active
sheet['A1'] = '=SUM(B1:B10)'
wb.save('output.xlsx')
python recalc.py output.xlsx
testing
Self-improving agent system that analyzes conversation quality, identifies improvement opportunities, and continuously optimizes response strategies.
tools
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
documentation
Turn a chosen AI topic into a public-account writing package: collect evidence from X/Twitter and other sources, extract high-value comments, and produce title options + structured outline written into Obsidian. Use when user asks for topic-based research and article prep.
development
Standard PR review and merge workflow for task-driven development. Use when reviewing a programmer agent PR linked to a task, deciding merge vs change request, handling post-merge actions (Trello + branch cleanup), and sending a clear outcome handoff.