一键导入
workspace-services
Start and stop development services for workspace projects. Use when user says "start services", "stop services", "start all", or "stop all".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Start and stop development services for workspace projects. Use when user says "start services", "stop services", "start all", or "stop all".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Initialize a new workspace configuration for managing multiple related projects. Use when user says "setup workspace", "create workspace", "init workspace", or wants to configure a new multi-repo environment.
Overview and getting started guide for the workspaces plugin. Use when user asks "how do I use workspaces", "workspaces help", or "getting started with workspaces".
Show dependency graph for a project - what depends on it and what it depends on. Use when user asks "what depends on X", "affected by changes", or "dependency graph".
Clone one or all repositories configured in a workspace to their designated paths. Use when user says "clone repos", "clone all", or wants to download workspace repositories.
Check prerequisites, verify installations, and run health checks for workspace services. Use when user says "check setup", "verify installation", "doctor", or "health check".
Search for patterns across all projects in the workspace with results grouped by project. Use when user says "search across projects", "find in all repos", or "grep workspace".
基于 SOC 职业分类
| name | workspace-services |
| description | Start and stop development services for workspace projects. Use when user says "start services", "stop services", "start all", or "stop all". |
Start and stop services for workspace projects. Manages development servers and related services.
start [project|all] - Start servicesstop [project|all] - Stop servicesWhen the user wants to start services:
Look for start-all in the ## Commands section of WORKSPACE.md:
## Commands
start-all: cd ~/work/acme && docker-compose up -d
If a shared command exists, offer to use it.
If no shared command or user prefers individual starts:
dev or start scripts)🚀 Starting workspace services...
Starting api...
cd ~/work/acme/api && npm run dev
✓ api started on port 3000
Starting admin...
cd ~/work/acme/admin && npm run dev
✓ admin started on port 3001
Port status:
• api: :3000 ✓ running
• admin: :3001 ✓ running
Look for stop-all in ## Commands.
If no shared command, stop services by terminating processes on configured ports.
🛑 Stopping workspace services...
Stopping api (port 3000)...
✓ Stopped
Stopping admin (port 3001)...
✓ Stopped