Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/LSTM-Kirigaya/LBot --skill execute-task명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
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 工具函数