一键导入
excel-workbooks
Use when creating, opening, or editing LibreOffice Calc ODS spreadsheets, or XLSX workbooks only when Excel compatibility is explicitly required.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when creating, opening, or editing LibreOffice Calc ODS spreadsheets, or XLSX workbooks only when Excel compatibility is explicitly required.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
AI-driven multi-format SVG content generation system. Converts source documents (PDF/DOCX/URL/Markdown) into high-quality SVG pages and exports to PPTX through multi-role collaboration. Use when user asks to "create PPT", "make presentation", "生成PPT", "做PPT", "制作演示文稿", or mentions "ppt-master".
Recommends the best journals for an academic paper. Use this skill whenever an author wants to know where to submit their paper, asks for journal suggestions, wants to find suitable journals for their research, or asks "which journal should I submit to". Takes the paper abstract or full manuscript, gathers the author's preferences via interactive buttons, evaluates the quality and scope of the work, then produces an exhaustive ranked list of suitable journals drawn exclusively from the Scopus and WoS indexed journal database bundled with this skill. Enriches each recommendation with live metrics (IF, CiteScore, SJR, quartile) fetched from Scimago, JCR, and publisher pages. Delivers a formatted PDF report. Always trigger this skill — do not attempt journal recommendations without it.
A shared code repository for the PAN (Digital Text Forensics) research community. Includes tools for authorship attribution, profiling, and style analysis.
A shared code repository for the PAN (Digital Text Forensics) research community. Includes tools for authorship attribution, profiling, and style analysis.
Use when the user asks Agent Zero to operate the built-in Linux Desktop, XFCE apps, LibreOffice GUI apps, file manager, terminal, or visual desktop workflows.
Improves research paper quality via academic rewriting, summarization, and proofreading.
基于 SOC 职业分类
| name | excel-workbooks |
| description | Use when creating, opening, or editing LibreOffice Calc ODS spreadsheets, or XLSX workbooks only when Excel compatibility is explicitly required. |
| version | 1.1.0 |
| author | BioDockify AI Core Team |
| tags | ["calc","ods","opendocument","excel","xlsx","spreadsheet","workbook","tables","charts","budget"] |
| triggers | ["Calc","ODS","ods","OpenDocument Spreadsheet","Excel","XLSX","xlsx","spreadsheet","workbook","budget","sheet","chart"] |
| allowed_tools | ["document_artifact"] |
Use ODS when the user asks for a spreadsheet, workbook, editable table, budget, formulas, or Calc file. Use XLSX only when the user asks for Excel/XLSX compatibility, provides an existing .xlsx, or needs embedded spreadsheet charts supported by the tool.
The canvas is user-owned UI. Creating or editing an ODS or XLSX must save the workbook and return action buttons, but must not open the canvas automatically. Use Desktop/Calc only for explicit GUI requests, visual chart/layout polish, or final visual confirmation.
Create a workbook:
{
"tool_name": "document_artifact:create",
"tool_args": {
"kind": "spreadsheet",
"title": "Budget",
"format": "ods",
"content": "Item,Amount\nPlatform,1000"
}
}
For a blank workbook request, create a simple workbook with the requested title and format: "ods"; do not call status first unless the user asked for availability.
Edit cells:
{
"tool_name": "document_artifact:edit",
"tool_args": {
"file_id": "abc123",
"operation": "set_cells",
"cells": {
"Sheet1!A1": "Item",
"Sheet1!B1": "Amount"
}
}
}
Practical rules:
content may be CSV, TSV, or a Markdown table; the tool writes real spreadsheet cells.rows for whole-table replacement, append_rows for adding records, and set_cells for precise edits.create_chart with a chart object for embedded charts when working in XLSX compatibility format; otherwise use Calc/Desktop or code execution for chart workflows that ODS direct editing does not yet cover.