with one click
chat
聊天室 — 创建房间、实时聊天、AI 机器人(10种预设角色+TTS语音)、图片/视频上传。触发:创建聊天室、聊天、加AI机器人、聊天室
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
聊天室 — 创建房间、实时聊天、AI 机器人(10种预设角色+TTS语音)、图片/视频上传。触发:创建聊天室、聊天、加AI机器人、聊天室
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
生活记账 — 创建账本、记录收支、分类管理、统计分析、AI 语音记账。触发:记账、花了多少钱、今日开销、月度统计、添加支出、语音记账
家庭物品整理 — 物品库存管理、位置标注、到期提醒、AI 智能添加/分析、小票 OCR 识别。触发:整理物品、添加物品、库存管理、物品快过期、收纳整理
粘贴板 — 创建/查看代码片段分享,支持文件上传、分片上传、代码分析、安全扫描。触发:分享代码、粘贴代码、上传文件、分享文本、pastebin
档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册
事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划
科学上网线路管理 — 查看节点、切换线路、测速。当用户请求切换代理线路、查看代理状态、管理科学上网节点时使用此技能。
| name | chat |
| description | 聊天室 — 创建房间、实时聊天、AI 机器人(10种预设角色+TTS语音)、图片/视频上传。触发:创建聊天室、聊天、加AI机器人、聊天室 |
| triggers | ["聊天室","创建房间","加机器人","chat","AI聊天"] |
通过 DevTools 后端 API 创建聊天房间、添加 AI 机器人和实时通信。后端默认运行在 https://t.jaxiu.cn。
WebSocket 地址: wss://t.jaxiu.cn/api/chat/room/{id}/ws?nickname=xxx
curl -s -X POST https://t.jaxiu.cn/api/chat/room \
-H "Content-Type: application/json" \
-d '{
"name": "技术交流",
"password": "optional_password"
}'
# 返回: {"id":"abc12345","name":"技术交流",...}
curl -s https://t.jaxiu.cn/api/chat/rooms
curl -s https://t.jaxiu.cn/api/chat/room/{id}
curl -s -X POST https://t.jaxiu.cn/api/chat/room/{id}/join \
-H "Content-Type: application/json" \
-d '{"nickname":"小明","password":"optional_password"}'
curl -s "https://t.jaxiu.cn/api/chat/room/{id}/messages?limit=50"
# 图片(最大 5MB)/ 视频(最大 50MB)
curl -X POST https://t.jaxiu.cn/api/chat/upload \
-F "file=@image.png"
| Key | 角色 | 默认音色 |
|---|---|---|
general | 🤖 小助手 | XiaoxiaoNeural |
code | 🤖 码农 | YunxiNeural |
translate | 🤖 译者 | XiaoyiNeural |
customer | 🤖 客服 | XiaoxiaoNeural |
psychology | 🤖 心理咨询师 | XiaomouNeural |
student_girl | 🤖 学生妹 | XiaoyiNeural |
college | 🤖 大学生 | YunxiNeural |
girlfriend | 🤖 电子女朋友 | XiaoxiaoNeural |
uncle | 🤖 大叔 | YunyangNeural |
kid | 🤖 小屁孩 | YunxiNeural |
curl -s -X POST https://t.jaxiu.cn/api/chat/room/{id}/bot \
-H "Content-Type: application/json" \
-d '{
"role": "girlfriend",
"nickname": "小美",
"system_prompt": "你是一个可爱的女朋友,说话温柔甜蜜",
"enable_tts": true
}'
role: 必填,从上述 10 个 key 中选择nickname: 可选,覆盖默认昵称system_prompt: 可选,自定义系统提示enable_tts: 可选,是否启用语音合成(TTS)curl -s https://t.jaxiu.cn/api/chat/room/{id}/bot
curl -s -X DELETE https://t.jaxiu.cn/api/chat/room/{id}/bot
curl -s -X POST https://t.jaxiu.cn/api/chat/room/{id}/bot/stop
当用户说"创建一个聊天室"时,调用创建房间 API。 当用户说"给房间加个 AI 助手"时,调用添加 bot API。 TTS 语音在 bot 回复时会自动生成 mp3,前端自动播放。
Base URL: https://t.jaxiu.cn