一键导入
start-dev-website
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.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
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.
用 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.
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 | start-dev-website |
| description | 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. |
NEVER ask the user to run these commands. You MUST execute them yourself via run_terminal_cmd. See agent-must-execute-operations.mdc.
The dev server MUST run on port 3010. Use dev:next-only to avoid starting GPU services.
$conn = Get-NetTCPConnection -LocalPort 3010 -ErrorAction SilentlyContinue
if ($conn) {
Stop-Process -Id $conn.OwningProcess -Force
Write-Host "Freed port 3010"
}
npm run dev:next-only
This runs next dev --port 3010 without starting GPU services (PersonaPlex, Moshi, Earth2).
Open http://localhost:3010 in browser.
The website connects to backend VMs. Ensure .env.local has:
MAS_API_URL=http://192.168.0.188:8001
NEXT_PUBLIC_MAS_API_URL=http://192.168.0.188:8001
MINDEX_API_URL=http://192.168.0.189:8000
MINDEX_API_BASE_URL=http://192.168.0.189:8000
npm run dev (full stack)Only use npm run dev when you need GPU services (voice, Earth2). It spawns a separate "GPU Services" window with Python processes that persist after terminal close.
If GPU services were started and are no longer needed, run:
cd scripts
.\dev-machine-cleanup.ps1 -KillStaleGPU
| Item | Value |
|---|---|
| Dev URL | http://localhost:3010 |
| Command | npm run dev:next-only |
| Port | 3010 (NEVER use another port) |
| GPU-free | Yes (no PersonaPlex/Earth2) |