一键导入
xlsx
Read and extract cell data from .xlsx Excel spreadsheets as TSV. Use when the user uploads or references an Excel file to read or summarize.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read and extract cell data from .xlsx Excel spreadsheets as TSV. Use when the user uploads or references an Excel file to read or summarize.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | xlsx |
| description | Read and extract cell data from .xlsx Excel spreadsheets as TSV. Use when the user uploads or references an Excel file to read or summarize. |
Use this skill to read or summarize .xlsx files.
Print sheet contents from an .xlsx as TSV. Each sheet is preceded by a
--- sheet "<name>" --- header.
python org/public/core/xlsx/extract.py <path-to-file.xlsx>
Empty trailing rows and columns are trimmed. Cell values are stringified; formulas show their cached value, not the formula text.
For richer operations (formulas, formatting, charts, writing workbooks),
import openpyxl directly. The library is preinstalled.
from openpyxl import load_workbook
wb = load_workbook("/path/to/file.xlsx", data_only=True)
for sheet in wb.worksheets:
for row in sheet.iter_rows(values_only=True):
...
Create and edit presentation decks as single self-contained HTML files with a live, editable preview and print-to-PDF export. Use when the user wants slides, a deck, or a presentation.
Render any text file (HTML, markdown, config, SQL, email) from a mustache template plus JSON data. Use when an output's shape is fixed ahead of time and only the values change.
Read and extract text, tables, and structure from .docx Word documents. Use when the user uploads or references a Word file to read or summarize.
Read and extract text from .pdf files, page by page. Use when the user uploads or references a PDF to read or summarize.
Read and inspect existing .pptx PowerPoint files (text, speaker notes, slide images). Use only for reading uploaded PowerPoint files — to AUTHOR a deck use the slides skill instead.
Route a file to the right reader by extension (pptx, docx, xlsx, pdf, and plain text). Use as the entry point when asked to read or summarize an uploaded file of unknown type.