一键导入
spreadsheet
Read Excel (.xlsx) and LibreOffice (.ods) workbooks as structured JSON via read_spreadsheet.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read Excel (.xlsx) and LibreOffice (.ods) workbooks as structured JSON via read_spreadsheet.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set health profile and daily calorie targets, log meals (text or photo), and suggest foods that fit remaining macros. Uses sylo_health_* tools; looks up restaurant items via web search (prefers sylo-web-access when enabled).
Personal trainer workflows — log workouts in natural language, look up lift history, plan weeks/months, analyze muscle gaps. Uses sylo_health_workout_* tools plus journal for pain/preferences.
Offline ME/CODESYS terminology, ST syntax, and bundled Schneider PDF manuals — read before writing PLC code or answering ME/M262 questions; do not search the web for basics covered here.
Edit Machine Expert file-based (.fbsproj) Structured Text on disk — no cds-text-sync or GitHub setup.
Search schematic PDFs by text/OCR, then confirm details with region crops and OCR — not full-page re-reads.
When and how to use sylo_web_search and sylo_web_fetch for current/web information, and how to treat the untrusted content they return.
| name | spreadsheet |
| description | Read Excel (.xlsx) and LibreOffice (.ods) workbooks as structured JSON via read_spreadsheet. |
| metadata | {"sylo":{"category":"documents","icon":"table"}} |
Use read_spreadsheet for .xlsx and .ods. For .csv, use Pi read — plain text is enough.
Write / export is not available yet (future package update).
| Tool | When |
|---|---|
read_spreadsheet | Operator attached or referenced a workbook; you need tabular data |
.xlsx or .ods.max_rows only when needed; prefer range (e.g. B2:F100) for wide sheets.headers + rows; cite sheet name. If truncated: true, say so and offer a narrower range or higher max_rows.max_rows — default 200; cap data rows after the first returned row (treated as headers).range — A1 notation (A1:D50, B2:F200) to limit columns and the row window.include_formulas — xlsx only; formula strings instead of cached values (rarely needed).max_rows — narrow range or ask which section matters.read on binary .xlsx / .ods expecting tables..xls is unsupported — ask for xlsx/ods/csv export.{
"path": "C:/Projects/bom.xlsx",
"sheet": "Parts",
"max_rows": 100,
"range": "A1:H150"
}