用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/FREEZONEX/Tier0-cli --skill tier0-files命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | tier0-files |
| description | Tier0 file operations: upload, download, get URL, and delete files in object storage (S3/RustFS). |
Use this skill for Tier0 object storage file operations.
uns/SKILL.md.flow/SKILL.md.upload requires a local file path and returns filePath for subsequent operations.download, url, and delete require the filePath returned by upload.useBy defaults to workspace in CLI to avoid Cloud API Key IsMember() permission issue.delete requests with --dry-run --json.| Intent | Read |
|---|---|
| Upload a file | references/upload.md |
| Download a file | references/download.md |
| Get file access URL | references/url.md |
| Delete a file | references/delete.md |
# Upload
tier0 assets upload ./report.csv --use-by workspace --visibility private
# Download
tier0 assets download --file-path workspace/.../report.csv -o ./report.csv
# Get URL
tier0 assets url --file-path workspace/.../report.csv --expired-sec 300
# Delete
tier0 assets delete --file-path workspace/.../report.csv --dry-run --json
# after user confirmation
tier0 assets delete --file-path workspace/.../report.csv --yes
Append --dry-run --json to the final delete command and inspect
data.api[0].method, url, and body. A preview does not authenticate, send a
request, or prove business success. Remove --dry-run only after the preview
matches the user's intent.
For delete, show the preview and destructive impact to the user, wait for
confirmation, then execute with --yes.