Gog
一个面向 Dev Tools 场景的 Agent 技能。原始说明:Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
name: resize-magic
version: 0.1.0
author: Stenkil <you@example.com>
description: Resize images using ImageMagick (CLI). Entrypoint is a Bash script.
entrypoint: scripts/resize.sh
metadata: { "openclaw": { "emoji": "🖼️", "requires": { "bins": ["bash"], "anyBins": ["magick","convert"] }, "install": [ { "id": "brew", "kind": "brew", "formula": "imagemagick", "bins": ["magick","convert"], "label": "Install ImageMagick (brew)" } ] } }
user-invocable: true
command-dispatch: tool
command-tool: resize
commands:
usage: resize <input-path> <geometry> [output-path]
description: |
Resize an image using ImageMagick.
Geometry examples:
This skill provides a single executable script scripts/resize.sh that the agent (or the openclaw CLI) can call to resize an image with ImageMagick.
Copy the folder into your OpenClaw skills directory, e.g.:
cp -r resize-magic ~/.openclaw/skills/resize-magic
# or install via CLI if available
openclaw skill install ./resize-magic