en un clic
file
文件读写操作,支持创建、读取、写入、删除文件
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
文件读写操作,支持创建、读取、写入、删除文件
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
浏览器自动化操作 - 打开网页、截图、提取内容、填表等
文员办公助手 - 文档处理、表格操作、格式转换、内容整理等
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
打开浏览器访问网页
Process, optimize, and manage images with web optimization, color management, platform specs, and e-commerce standards.
Create SVG images and convert them to PNG without external graphics libraries. Use when you need to generate custom illustrations, avatars, or artwork (e.g., "draw a dragon", "create an avatar", "make a logo") or convert SVG files to PNG format. This skill works by writing SVG text directly (no PIL/ImageMagick required) and uses system rsvg-convert for PNG conversion.
Basé sur la classification professionnelle SOC
| name | file |
| version | 1.0.0 |
| author | baize |
| description | 文件读写操作,支持创建、读取、写入、删除文件 |
| capabilities | ["file","read","write","create","delete","exists"] |
| risk_level | medium |
| step_by_step | false |
| auto_execute | true |
| timeout | 30000 |
| input_schema | {"type":"object","properties":{"action":{"type":"string","enum":["read","write","create","delete","exists"],"description":"操作类型"},"path":{"type":"string","description":"文件路径(支持绝对路径和相对路径)"},"content":{"type":"string","description":"写入内容(write/create时需要)"},"encoding":{"type":"string","default":"utf-8","description":"文件编码"}},"required":["action","path"]} |
| output_schema | {"type":"object","properties":{"success":{"type":"boolean"},"content":{"type":"string","description":"文件内容(read时返回)"},"path":{"type":"string","description":"文件路径"},"size":{"type":"number","description":"文件大小(字节)"},"exists":{"type":"boolean","description":"文件是否存在(exists时返回)"}}} |
| examples | [{"input":{"action":"create","path":"G:/test.txt","content":"Hello World"},"output":{"success":true,"path":"G:/test.txt","size":11},"description":"创建文件并写入内容"},{"input":{"action":"read","path":"G:/test.txt"},"output":{"success":true,"content":"Hello World"},"description":"读取文件内容"}] |
提供文件系统操作能力,包括:
| 操作 | 说明 | 风险等级 |
|---|---|---|
| read | 读取文件内容 | 低 |
| write | 写入文件(覆盖已有内容) | 中 |
| create | 创建新文件(如存在则覆盖) | 中 |
| delete | 删除文件 | 高 |
| exists | 检查文件是否存在 | 低 |
{
"action": "create",
"path": "G:/test.txt",
"content": "Hello World"
}
{
"action": "read",
"path": "G:/test.txt"
}
{
"action": "write",
"path": "G:/test.txt",
"content": "新的内容"
}
{
"action": "delete",
"path": "G:/test.txt"
}
{
"action": "exists",
"path": "G:/test.txt"
}
G:/test.txt)和相对路径| 错误 | 原因 | 解决方案 |
|---|---|---|
| 文件不存在 | read/delete时文件不存在 | 先使用exists检查 |
| 权限不足 | 没有读写权限 | 检查文件权限 |
| 路径无效 | 路径格式错误 | 使用正确的路径格式 |