Use when the user wants a local file or image sent back, such as "send me the file" or "发给我".
Scanned 9/2/2026
Install to Claude Code
npx -y skills add FerroxLabs/wayland --skill weixin-file-send --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Weixin File Send?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ferroxlabs-weixin-file-send)More formats (shields.io, HTML) on the badges page.
---
name: weixin-file-send
description: |
Use when the user wants a local file or image sent back, such as "send me the file"
or "发给我".
---
# Weixin File Send
Use this skill when:
- The user asks you to send a file or image back, for example:
- "send me the file"
- "send the image over"
- "pass the file to me"
- A local file already exists and should be delivered to the current chat.
Do not claim a file was sent unless you emit the protocol block exactly.
Without the protocol block, the app will not actually send the file.
## Protocol
Append one or more protocol blocks at the end of the final reply:
```text
[WAYLAND_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Chart ready"}
[/WAYLAND_CHANNEL_SEND]
```
```text
[WAYLAND_CHANNEL_SEND]
{"type":"file","path":"./output/report.pdf","fileName":"report.pdf","caption":"Report ready"}
[/WAYLAND_CHANNEL_SEND]
```
## Rules
- `type` must be `image` or `file`.
- `path` must point to a real local file that already exists.
- Use relative paths when the file is inside the workspace.
- `fileName` is optional for `file`.
- `caption` is optional.
- If the user clearly wants the file or image sent back, prefer emitting the protocol block instead of only describing the file in text.
- Place protocol blocks after the user-visible answer.
- Do not wrap the JSON in Markdown code fences.
- Do not emit the protocol block if the file does not exist.
- Do not say the file was sent if you did not emit the protocol block.
## Examples
User-visible text with image:
```text
I generated the chart and sent it below.
[WAYLAND_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Sales chart"}
[/WAYLAND_CHANNEL_SEND]
```
File only:
```text
[WAYLAND_CHANNEL_SEND]
{"type":"file","path":"./output/report.pdf","fileName":"report.pdf","caption":"Weekly report"}
[/WAYLAND_CHANNEL_SEND]
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!