Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:52
forks:1
updated:1. März 2026 um 09:15
SKILL.md
| name | execute-task |
| description | 机器人唯一的动作出口。通过 TS/JS 代码调用 OneBot API。 |
sendGroupMsg。stderr 或 API 报错直接发到群聊。// 发送图文结合的最终结论
const groupId = 789012;
const result = "确认完成。路径已校准。";
const imageUrl = "https://example.com/status.jpg";
await context.sendGroupMsg(groupId, [
{ type: 'text', data: { text: result } },
{ type: 'image', data: { file: imageUrl } }
]);
发送群聊消息。
参数:
groupId: number - 群号message: string | MessageSegment[] - 消息内容await context.sendGroupMsg(groupId, "你好,这是文本消息");
await context.sendGroupMsg(groupId, [
{ type: 'at', data: { qq: '123456' } },
{ type: 'text', data: { text: '你好' } }
]);
await context.sendGroupMsg(groupId, [
{ type: 'image', data: { file: 'https://example.com/image.jpg' } }
]);
发送私聊消息。
参数:
userId: number - 对方 QQ 号message: string | MessageSegment[] - 消息内容context.fin 为 true 时所有 API 失效,禁止再调用发送方法text 类型使用 @ 符号,应使用 { type: 'at', data: { qq: '123456' } }text 消息段末尾会自动添加换行util.searchHistoryMessages 工具函数历史消息搜索功能。支持关键词搜索群聊和好友的历史消息记录。
基于向量的长期记忆系统。用于存储用户偏好、历史纠正。
QQ 机器人核心驱动索引。定义了白面鸮人格、SOP 流程及工具调用入口。
外部扩展能力,包括网络搜索、网页内容转换。