بنقرة واحدة
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"
}