TopRank Skills

Home / Claw Skills / Others / fast-image
Official OpenClaw rules 15%

fast-image

Quickly send local images to channel. Auto-compress large images, copy small images directly.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 fast-image 技能。 若已安装,则直接安装 fast-image 技能。

Overview

Skill Key
deadlining/fast-image
Author
deadlining
Source Repo
openclaw/skills
Version
-
Source Path
skills/deadlining/fast-image
Latest Commit SHA
0747db405ca0fe3d67a61044a4620b3e0bfb57d7

Extracted Content

SKILL.md excerpt

# fast-image

Quickly send local images to specified channel. Auto-handles image copy/compress and send.

## Usage

```
node {baseDir}/send_image.mjs "<image_path>" <channel> <target> [message]
```

## Parameters

| Parameter | Description | Required |
|-----------|-------------|----------|
| `image_path` | Full path to image | Yes |
| `channel` | Target channel name | Yes |
| `target` | Target user/group | Yes |
| `message` | Optional message | No |

## Features

1. Image processing
   - File < 10MB: Copy directly to `~/.openclaw/media/browser/`
   - File >= 10MB: Compress with sharp then copy

2. Send: Use `openclaw message send --media` to send

3. Cleanup: Auto-delete temp file after sending

## Examples

```
node {baseDir}/send_image.mjs "~/Pictures/photo.png" telegram @chatname
node {baseDir}/send_image.mjs "~/Downloads/large.jpg" telegram @chatname "landscape"
```

## Dependencies

- Node.js
- sharp: `npm install sharp`
- openclaw CLI

Related Claw Skills