with one click
compression
ZIP file operations for creating and extracting archives.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
ZIP file operations for creating and extracting archives.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
文件系统操作。⚠️读取前先调用info获取文件信息:图片用read_file(mode='data_url'),大文件用from/lines分块。
PowerPoint 演示文稿处理。用于读取现有 PPTX 基本信息、文本、表格、图表基础数据与备注,创建新演示文稿,并提取媒体文件。支持在新建演示文稿时添加文本、图片、表格、图表、形状、媒体与演讲者备注。当用户提到 .pptx 文件或需要操作 PowerPoint 时触发。
Excel 文件处理。用于读取、写入、编辑 .xlsx/.xls/.csv 文件,支持工作表管理、格式化、公式计算、数据查询和格式转换。当用户需要操作电子表格文件时触发。
发票专用解析技能。支持中国增值税发票、普通发票、电子发票的结构化提取。基于 pdfjs-dist 实现坐标提取,可提取发票号码、日期、买卖双方信息、商品明细、金额等字段。
PDF 文件处理。用于读取、提取文本/表格/图片、合并、拆分、旋转、水印、加密/解密、表单填写、页面渲染。当用户提到 .pdf 文件或需要操作 PDF 时触发。
PDF 文件处理(Python 版)。使用 PyMuPDF 实现,内存效率高,适合处理大文件。用于读取、提取文本/表格/图片、合并、拆分、旋转、水印、加密/解密、页面渲染。当用户提到 .pdf 文件或需要操作 PDF 时触发。
Based on SOC occupation classification
| name | compression |
| description | ZIP file operations for creating and extracting archives. |
| argument-hint | [zip|unzip] [path] |
| user-invocable | true |
| allowed-tools | ["Bash(zip *)","Bash(unzip *)"] |
Create and extract ZIP archives.
Create a ZIP archive from files or directories.
Parameters:
source (string, required): Source file or directory pathdestination (string, optional): Output ZIP file path (default: source.zip)compression_level (number, optional): 0-9 (default: 6)Examples:
// Zip a directory
{ "source": "data/project" }
// Zip with custom name
{ "source": "data/files", "destination": "data/backup.zip" }
Extract a ZIP archive.
Parameters:
source (string, required): ZIP file pathdestination (string, optional): Extract destination (default: current directory)Examples:
// Unzip to current directory
{ "source": "data/archive.zip" }
// Unzip to specific directory
{ "source": "data/archive.zip", "destination": "data/extracted" }
All operations are restricted to allowed directories. Source paths outside the data directory require proper permissions.