소스 정보
- 저장소
- axfinn/devtools
- 최근 소스 활동
- 2026년 5월 2일 14:49
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/axfinn/devtools --skill chat명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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