用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zgiai/zgi --skill file-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Navigate the visible console to a safe internal page when the user asks to open, switch to, or go to another module.
Generate downloadable files from provided content, including basic exports, SVG files, styled DOCX documents, HTML-rendered PDFs, and static editable PPTX decks.
Call workflows explicitly bound to the current Agent as structured process tools.
基于 SOC 职业分类
正在显示 SKILL.md
| name | file-manager |
| description | Manage File Management assets when the assistant has concrete, user-authorized file targets. |
| when_to_use | Use this hidden skill when the user explicitly asks the assistant to create, save, import, or delete files in File Management. |
| provider_type | builtin |
| provider_id | files |
| runtime_type | tool |
| tools | ["delete_file","save_file_to_management"] |
| max_calls_per_turn | 5 |
| timeout_seconds | 120 |
| tool_governance | {"delete_file":{"tool_id":"file.delete","skill_id":"file-manager","domain":"files","effect":"delete","asset_type":"file","risk_level":"high","requires_asset_resolution":true,"reversible":false,"bulk_sensitive":false,"external_side_effect":false,"permission_scopes":["file:manage"],"default_approval_policy":"always_ask","allowed_permission_tiers":["basic","advanced","full"],"audit_required":true,"idempotency_required":false},"save_file_to_management":{"tool_id":"file.save_to_management","skill_id":"file-manager","domain":"files","effect":"create","asset_type":"file","risk_level":"medium","requires_asset_resolution":false,"reversible":true,"bulk_sensitive":false,"external_side_effect":false,"permission_scopes":["file:create"],"default_approval_policy":"auto_by_permission_tier","allowed_permission_tiers":["basic","advanced","full"],"audit_required":true,"idempotency_required":false}} |
| display | {"icon":"folder-cog","category":"document_processing","scenarios":["document_handling","business_operations"],"label":{"en_US":"File Manager","zh_Hans":"文件管理器"},"description":{"en_US":"Designed for maintaining files from the console; saves generated files, imports approved assets, or deletes visible files under permission and confirmation controls.","zh_Hans":"适用于在控制台维护文件,可保存生成结果、导入合规文件或删除当前可见文件,并遵循权限与操作确认约束。"},"when_to_use":{"en_US":"Use when the user explicitly asks to change files in File Management and the target is resolved from page context.","zh_Hans":"当用户明确要求变更文件管理中的文件,且目标已从页面上下文解析时使用。"},"tags":{"en_US":["File","Management"],"zh_Hans":["文件","管理"]}} |
| supported_callers | ["aichat"] |
Use this skill for governed File Management asset operations. It is intentionally separate from file-reader and file-generator: reading and summarizing file contents belongs to file-reader, generating temporary downloadable artifacts belongs to file-generator, and creating or deleting File Management assets belongs here.
delete_file with exactly that file_id.save_file_to_management with source_type=tool_file, the returned tool_file_id/file_id, and the destination filename.
file-generator for regular files and generic SVG/vector files.chart-generator only for chart, graph, and data visualization artifacts.save_file_to_management with source_type=url, the URL, and the destination filename.delete_file accepts:
file_id: required file ID from resolved context. Deletes exactly one file after governance allows execution.file_id, such as deleted_count > 0, , or an equivalent successful status. If the tool returns an error, a missing file, or an approval rejection, do not say the file was deleted.deleted=truesave_file_to_management accepts:
source_type: required, tool_file for a generated artifact or url for a public external URL.tool_file_id: required when source_type=tool_file; use the generated artifact ID returned by the generation tool.url: required when source_type=url; must be an absolute public HTTP or HTTPS URL supplied by the user.filename: required destination filename shown in File Management. Include a suitable extension.workspace_id: optional target workspace ID. Usually omit it so the current assistant workspace context is used. Do not invent IDs.managed_file_id, upload_file_id, or a successful saved-file record plus the saved filename. If only a temporary artifact exists, do not say the file was saved into File Management.