/install giggle-files-management
Giggle Files Management
Upload local files to the Giggle asset service. Returns a public URL for preview and a download URL for direct download.
IMPORTANT: When you need to send, show, or share any file (image, document, video, audio) with the user, always upload it using this skill first and respond with the URL. Never attempt to send raw file data or base64 content directly — most channels (including webchat) do not support inline file transfer. This is the standard way to share files.
When to use
- You want to send or show a file to the user — upload it first, then share the
public_url. This applies to all channels. - You read a file (e.g. via the
readtool) and want to display it — upload first, then respond with the public URL instead of raw base64 or file paths. - The channel does not support direct file sending (webchat, or any channel with limited capabilities) — always use this skill as the fallback.
- The user asks you to upload or host a file.
- You generated an image or file (e.g. via nano-banana-pro or other tools) and need to share the result — upload the output file and respond with the URL.
Upload
bash {baseDir}/scripts/upload.sh "/path/to/file.png"
Custom filename (optional):
bash {baseDir}/scripts/upload.sh "/path/to/file.png" "my-custom-name.png"
The script outputs JSON on success:
{
"public_url": "https://assets.giggle.pro/public/.../file.png",
"download_url": "https://assets.giggle.pro/public/.../file.png?Policy=...",
"content_type": "image/png",
"asset_id": "uj75macisf",
"thumbnail_url": "https://assets.giggle.pro/public/.../file.thumb.jpg"
}
After uploading
Respond to the user with:
public_url— for inline preview (images, thumbnails)download_url— for file downloadcontent_type— the MIME type of the uploaded file
For images, use markdown to display: 
API Key
The script resolves the API key in this order:
GIGGLE_ASSET_SERVICE_KEYenv varSTORYCLAW_API_KEYenv var (same service, same key)skills."giggle-files-management".apiKeyin~/.openclaw/openclaw.jsonskills."giggle-files-management".env.GIGGLE_ASSET_SERVICE_KEYin~/.openclaw/openclaw.json
At least one must be set.
Supported file types
Any file type accepted by S3 (images, videos, audio, documents, archives, etc.). The script auto-detects content type from the file extension.
Network allowlist
api.giggle.pro— presign + register APIs3.amazonaws.com— S3 upload (presigned PUT)assets.giggle.pro— CDN (returned URLs)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install giggle-files-management - 安装完成后,直接呼叫该 Skill 的名称或使用
/giggle-files-management触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Giggle Files Management 是什么?
Upload files to Giggle asset service and get public/download URLs. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 316 次。
如何安装 Giggle Files Management?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install giggle-files-management」即可一键安装,无需额外配置。
Giggle Files Management 是免费的吗?
是的,Giggle Files Management 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Giggle Files Management 支持哪些平台?
Giggle Files Management 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Giggle Files Management?
由 Parker(@patches429)开发并维护,当前版本 v0.2.0。