weixin-file-send
SolidUse when the user wants a local file or image sent back, such as "send me the file" or "发给我".
AI & Automation 28,123 stars
2742 forks Updated today Apache-2.0
Install
Quality Score: 91/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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
[AIONUI_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Chart ready"}
[/AIONUI_CHANNEL_SEND]
```
```text
[AIONUI_CHANNEL_SEND]
{"type":"file","path":"./output/report.pdf","fileName":"report.pdf","caption":"Report ready"}
[/AIONUI_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.
[AIONUI_CH...
Details
- Author
- iOfficeAI
- Repository
- iOfficeAI/AionUi
- Created
- 10 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
wechat-cli
Use the `wechat-cli` command-line tool to log in a WeChat bot, manage accounts, and send text, image, or file messages to users.
21 Updated 1 months ago
systemxlabs AI & Automation Listed
gemini-image
当用户想要生成图片、画图、绘画、创建图像、AI作画时使用此 Skill。支持文生图和图生图。
353 Updated today
aiskillstore AI & Automation Listed
baoyu-post-to-wechat
Posts content to WeChat Official Account (微信公众号) via API or Chrome CDP. Supports article posting (文章) with HTML, markdown, or plain text input, and image-text posting (贴图, formerly 图文) with multiple images. Markdown article workflows default to converting ordinary external links into bottom citations for WeChat-friendly output. Use when user mentions "发布公众号", "post to wechat", "微信公众号", or "贴图/图文/文章".
21,319 Updated yesterday
JimLiu