一键导入
vm-health-check
Check health of all Mycosoft VMs (Sandbox, MAS, MINDEX). Use when verifying system status, debugging connectivity, or after deployments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check health of all Mycosoft VMs (Sandbox, MAS, MINDEX). Use when verifying system status, debugging connectivity, or after deployments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Deploy or restart the MINDEX API service on VM 192.168.0.189. Use when updating MINDEX, restarting the database API, or deploying MINDEX changes.
Execute non-trivial work using plan-first, verify-first, and lessons-fed defaults. Use when running 3+ step tasks, architectural work, or anything that may require re-planning.
Deploy the Mycosoft website to the Sandbox VM (192.168.0.187). Use when the user asks to deploy, push to sandbox, rebuild the website container, or update the live site.
Integrate neuromorphic UI into a page. Use when converting Shadcn pages to neuromorphic design or adding neuromorphic styling.
Deploy or restart the MAS orchestrator service on VM 192.168.0.188. Use when updating the Multi-Agent System, restarting the orchestrator, or deploying MAS changes.
Start the Mycosoft website dev server on port 3010. Use when the user wants to run the dev server, start development, or test the website locally.
| name | vm-health-check |
| description | Check health of all Mycosoft VMs (Sandbox, MAS, MINDEX). Use when verifying system status, debugging connectivity, or after deployments. |
Run health checks across all three Mycosoft VMs to verify services are running.
| VM | IP | Role | Health Endpoint |
|---|---|---|---|
| Sandbox | 192.168.0.187 | Website | http://192.168.0.187:3000 |
| MAS | 192.168.0.188 | Orchestrator | http://192.168.0.188:8001/health |
| MINDEX | 192.168.0.189 | Database | http://192.168.0.189:8000/health |
Run these curl commands to check all services:
# Sandbox VM - Website
curl -s -o /dev/null -w "Sandbox Website: %{http_code}\n" http://192.168.0.187:3000
# MAS VM - Orchestrator
curl -s http://192.168.0.188:8001/health
# MINDEX VM - Database API
curl -s http://192.168.0.189:8000/health
ssh mycosoft@192.168.0.187 "docker ps --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}'"
Key containers: mycosoft-website (port 3000)
ssh mycosoft@192.168.0.188 "docker ps --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}'"
Key containers: myca-orchestrator-new (port 8001)
Additional services: Redis (6379), PostgreSQL (5432), n8n (5678)
ssh mycosoft@192.168.0.189 "docker ps --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}'"
Key services: PostgreSQL (5432), Redis (6379), Qdrant (6333), MINDEX API (8000)
docker logs <container_name> --tail 50docker restart <container_name>