一键导入
deploy-mindex
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.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
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.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
Create a new FastAPI router and endpoints for the MAS system. Use when adding new API endpoints, creating new routers, or extending the MAS API surface.
| name | deploy-mindex |
| description | 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. |
NEVER ask the user to run these steps or set VM_PASSWORD. You MUST execute the deployment yourself. Load credentials: Get-Content ".credentials.local" | ForEach-Object { if ($_ -match "^([^#=]+)=(.*)$") { [Environment]::SetEnvironmentVariable($matches[1].Trim(), $matches[2].Trim(), "Process") } } then run python _deploy_mindex.py from MINDEX/mindex. Credentials live in MAS repo .credentials.local. See rule agent-must-execute-operations.mdc.
/home/mycosoft/mindex (NOT /home/mycosoft/mas)Deployment Progress:
- [ ] Step 1: SSH to MINDEX VM
- [ ] Step 2: Pull latest code
- [ ] Step 3: Stop MINDEX API
- [ ] Step 4: Rebuild and start
- [ ] Step 5: Health check
ssh mycosoft@192.168.0.189
cd /home/mycosoft/mindex
git fetch origin
git reset --hard origin/main
docker compose stop api
docker compose rm -f api
docker compose build --no-cache api
docker compose up -d api
sleep 5
curl -s http://localhost:8000/health
curl -s http://192.168.0.189:8000/docs
| Item | Value |
|---|---|
| VM IP | 192.168.0.189 |
| VM User | mycosoft |
| API Port | 8000 |
| Health | http://192.168.0.189:8000/health |
| Docs | http://192.168.0.189:8000/docs |
These run independently and should NOT be restarted during API deploys:
docker compose logs mindex-api