技能 效率工具 微信文件发送器

微信文件发送器

v20260406
weixin-file-send
处理用户请求发送本地文件或图片的场景,通过输出微信协议块来实际传递资源,只在文件存在且协议块生成后报告发送成功,避免误导。
获取技能
60 次下载
概览

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:

[AIONUI_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Chart ready"}
[/AIONUI_CHANNEL_SEND]
[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:

I generated the chart and sent it below.

[AIONUI_CHANNEL_SEND]
{"type":"image","path":"./output/chart.png","caption":"Sales chart"}
[/AIONUI_CHANNEL_SEND]

File only:

[AIONUI_CHANNEL_SEND]
{"type":"file","path":"./output/report.pdf","fileName":"report.pdf","caption":"Weekly report"}
[/AIONUI_CHANNEL_SEND]
信息
Category 效率工具
Name weixin-file-send
版本 v20260406
大小 1.91KB
更新时间 2026-04-09
语言