원클릭으로
excel
Read, analyze, and generate Excel/CSV files. Triggers: excel, spreadsheet, csv, export data, create table, .xlsx, .csv.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read, analyze, and generate Excel/CSV files. Triggers: excel, spreadsheet, csv, export data, create table, .xlsx, .csv.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | excel |
| description | Read, analyze, and generate Excel/CSV files. Triggers: excel, spreadsheet, csv, export data, create table, .xlsx, .csv. |
| effort | medium |
| context | inline |
Read, analyze, and generate spreadsheet files. Always respond in the user's language.
csv module (no deps)pip install openpyxl$ARGUMENTS = path to file → go to step 2$ARGUMENTS = "create" + description → go to step 4$ARGUMENTS = empty → search for spreadsheets:
Glob "**/*.{xlsx,csv,tsv}"
List found files with sizes. Ask which to process.Detect format and read:
# CSV (no deps)
import csv
with open("file.csv", encoding="utf-8") as f:
reader = csv.DictReader(f)
rows = list(reader)
# Excel (requires openpyxl)
import openpyxl
wb = openpyxl.load_workbook("file.xlsx", data_only=True)
ws = wb.active
Report:
Ask user what to do next.
When creating new spreadsheet:
# CSV
import csv
with open("output.csv", "w", newline="", encoding="utf-8") as f:
writer = csv.writer(f)
writer.writerow(headers)
writer.writerows(data)
# Excel
wb = openpyxl.Workbook()
ws = wb.active
ws.append(headers)
for row in data:
ws.append(row)
wb.save("output.xlsx")
Based on content:
/plan?"/pdf for PDF data, /plan for task lists, /docs for data documentationcp1251 (Russian Windows), not utf-8. Try utf-8 first, fall back to cp1251.read_only=True mode for reading.Convert DOCX / PPTX / XLSX / HTML / EPUB to markdown via Microsoft markitdown. Triggers: markitdown, convert document, extract docx, extract pptx, extract xlsx, .docx file, .pptx file, .xlsx file.
Auto-test a skill by generating scenarios and running them. Args: [skill-name]. Use when user says 'skill-test', 'test skill', 'validate skill'.
Session-scoped precision mode — read-before-write, verify-before-claim, never-hallucinate-APIs. Use when stakes are high (security, payment, migration). Triggers: 'zero defect', 'precision mode', 'high stakes', 'be careful'.
Read, extract, and analyze PDF documents. Triggers: pdf, read pdf, extract from pdf, analyze pdf, .pdf file path.
Monitor and analyze Sentry errors via MCP. Triggers: sentry, sentry issues, check errors, error tracking, show crashes.