一键导入
verify-server
Verify ClaudeVille server starts correctly, REST API responds, and WebSocket connections work. Trigger after changes to server.js or adapters/ files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verify ClaudeVille server starts correctly, REST API responds, and WebSocket connections work. Trigger after changes to server.js or adapters/ files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | verify-server |
| description | Verify ClaudeVille server starts correctly, REST API responds, and WebSocket connections work. Trigger after changes to server.js or adapters/ files. |
Verify the ClaudeVille Node.js server operates correctly with all endpoints and real-time features.
Start the server only when port 4000 is free, then verify it binds to port 4000:
npm run dev
sleep 2
lsof -ti :4000
Check server log output for active providers:
~/.claude/, ~/.codex/, or ~/.gemini/ exists)curl -s http://localhost:4000/api/sessions
{ sessions: [...], count: N, timestamp: N }curl -s http://localhost:4000/api/teams
{ teams: [...], count: N }curl -s http://localhost:4000/api/providers
{ providers: [...], count: N }curl -s -o /dev/null -w "%{http_code}" http://localhost:4000/
curl -s -I http://localhost:4000/api/sessions
Access-Control-Allow-Origin: * header presentIf you started the server in a dedicated terminal, stop only that process with Ctrl-C in that terminal. Do not kill arbitrary port-4000 listeners in a shared checkout.