com um clique
qqbot-media
QQ Bot 媒体发送指南。教 AI 如何发送图片给用户。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
QQ Bot 媒体发送指南。教 AI 如何发送图片给用户。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Generate structured CSV literature survey tables. MUST activate this skill (instead of plain-text replies) when the user requests a literature review, paper collection, related work survey, or comparison of papers on a topic. 生成结构化 CSV 文献调研表格。当用户要求调研论文、收集文献、整理相关工作、对比论文时,必须激活此 skill 生成 CSV 输出,而非纯文字回复。 Triggers: survey, related work, literature review, paper list, find papers, collect papers, compare papers, 调研, 文献, 找论文, 相关论文, 收集论文, 整理文献, 论文列表, 帮我找论文. Output: multi-source search → metadata extraction → 8-column CSV (title, abstract, summary, relevance, authors, year, venue, link) → send to IM.
MANDATORY skill for creating any figure, diagram, chart, table visualization, or TikZ graphic in a paper. Must be activated BEFORE writing any drawing code. Produces standalone .tex → compiled PDF/PNG → \includegraphics in paper. Never inline TikZ code directly into paper sections.
AAAI paper formatting — activate when the user wants AAAI template setup, migration, or formatting/compilation fixes.
ACL-family venue paper formatting (ACL, EMNLP, NAACL, EACL, AACL, COLING, ARR, Findings) — activate when the user wants any ACL-series template setup, migration, or format fixes.
COLM (Conference on Language Modeling) paper formatting — activate when the user wants COLM template setup, migration, or formatting/compilation fixes.
Academic venue paper discovery — activate when you need to find papers accepted at specific conferences or journals (ACL, EMNLP, NeurIPS, ICML, ICLR, MLSys, etc.), analyze venue acceptance preferences, or look up CFP requirements.
| name | qqbot-media |
| description | QQ Bot 媒体发送指南。教 AI 如何发送图片给用户。 |
| metadata | {"clawdbot":{"emoji":"📸"}} |
| triggers | ["qqbot","qq","发送图片","发送文件","图片","本地文件","本地图片"] |
| priority | 80 |
当用户要求发送本地图片时,只需使用 <qqimg> 标签包裹图片路径即可。系统会自动处理文件读取和发送。
不要说"无法发送本地图片"!使用正确的标签格式,系统就能发送。
<qqimg> 标签)使用 <qqimg> 标签包裹图片路径,即可发送图片:
<qqimg>图片路径</qqimg>
当用户说"发送那张图片"、"把图发给我"等,你应该输出:
这是你要的图片:
<qqimg>/Users/xxx/images/photo.jpg</qqimg>
这是网络上的图片:
<qqimg>https://example.com/image.png</qqimg>
这是你要的所有图片:
<qqimg>/Users/xxx/image1.jpg</qqimg>
<qqimg>/Users/xxx/image2.png</qqimg>
| 格式 | 说明 |
|---|---|
<qqimg>本地路径</qqimg> | 发送本地图片(绝对路径) |
<qqimg>网络URL</qqimg> | 发送网络图片 |
<qqimg>路径</img> | 也支持此闭合方式 |
<qqimg> 标签即可</qqimg> 或 </img> 两种闭合方式❌ 错误:说"我无法发送本地图片"
❌ 错误:说"受限于技术限制,无法直接发送"
❌ 错误:只提供路径文本,不使用 <qqimg> 标签
✅ 正确:直接使用 <qqimg> 标签包裹路径
如果你需要告知用户图片的保存路径(而不是发送图片),直接写路径即可,不要使用标签:
图片已保存在:/Users/xxx/images/photo.jpg
或用反引号强调:
图片已保存在:`/Users/xxx/images/photo.jpg`
如果需要更精细的控制(如添加图片描述),可以使用 JSON 格式:
QQBOT_PAYLOAD:
{
"type": "media",
"mediaType": "image",
"source": "file",
"path": "/path/to/image.jpg",
"caption": "图片描述(可选)"
}
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
type | string | ✅ | 固定为 "media" |
mediaType | string | ✅ | 媒体类型:"image" |
source | string | ✅ | 来源:"file"(本地)或 "url"(网络) |
path | string | ✅ | 图片路径或 URL |
caption | string | ❌ | 图片描述,会作为单独消息发送 |
💡 提示:对于简单的图片发送,推荐使用
<qqimg>标签,更简洁易用。
| 场景 | 使用方式 |
|---|---|
| 发送本地图片 | <qqimg>/path/to/image.jpg</qqimg> |
| 发送网络图片 | <qqimg>https://example.com/image.png</qqimg> |
| 发送多张图片 | 多个 <qqimg> 标签 |
| 告知路径(不发送) | 直接写路径文本 |