teams
查看 Agent Teams 状态。当用户说"teams"、"团队状态"、"看看团队"、"team status"时触发。
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
查看 Agent Teams 状态。当用户说"teams"、"团队状态"、"看看团队"、"team status"时触发。
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
This skill should be used when users need to install, configure, or troubleshoot DeepEP (DeepSeek Expert Parallelism) on NVIDIA GPU systems. It covers the complete installation workflow including CUDA, DOCA-OFED, NVSHMEM with IBGDA support, and DeepEP itself. The skill is particularly useful for B200/H100/A100 GPUs with RoCE/InfiniBand networking, and includes comprehensive debugging capabilities for common installation failures.
创建和管理 Agent Teams 并行任务团队。当用户说"建个团队"、"拉个队伍"、"并行跑"、"create team"、"spawn agents"、"组队"时触发。
Generate videos using Google Veo 3.1 on Vertex AI. Use when the user says "生成视频", "做个视频", "generate video", "帮我生成一段视频", "create a video", "视频生成", "text to video", "文生视频", or when you need to create video content.
Generate images using Google Imagen 4 on Vertex AI. Use when the user says "生成图片", "画一张", "generate image", "帮我画", "生成一张图", "create an image", "图片生成", or when you need to create visual content to explain concepts.
Deploy a Discord Bot that connects to Claude Code via persistent processes using Unix socketpair + stream-json (same mechanism as VSCode extension). Each user gets their own long-running Claude process with full interactive mode support (auto memory, CLAUDE.md, skills). Includes Whisper voice transcription, user whitelist, session history with dropdown switcher, and slash commands. Use when the user says "帮我建一个 Discord Bot", "setup discord bot", "搭建 Discord 机器人", "discord bot 设置", or "部署 discord bot".
安装配置 nginx 静态文件服务器,用于展示 Claude Code 生成的富内容(表格、图表、报告等)。当用户说"装nginx"、"配web服务"、"setup web server"时触发。
| name | teams |
| description | 查看 Agent Teams 状态。当用户说"teams"、"团队状态"、"看看团队"、"team status"时触发。 |
查看当前所有活跃 Agent Team 的组织结构和任务状态。
当用户输入 /teams 或包含以下关键词时触发:
~/.claude/teams/ 目录获取活跃 team 列表~/.claude/tasks/{team-name}/ 获取任务状态curl -s --max-time 3 localhost:8787/api/summary
如果 API 返回正常(有 summary 字段),直接用返回的 summary 内容。
如果 curl 失败或超时,直接读文件系统:
# 列出活跃 team
ls ~/.claude/teams/
# 对每个 team 读取 config 和 tasks
cat ~/.claude/teams/{name}/config.json # 成员列表
ls ~/.claude/tasks/{name}/ # 任务文件
手动拼摘要:读 config.json 里的 members,读 tasks 里每个 json 的 status,汇总输出。
同时尝试重启后端服务:
tmux kill-session -t cc-dashboard 2>/dev/null
tmux new-session -d -s cc-dashboard "cd ~/cc-dashboard && python3 -m uvicorn server:app --host 127.0.0.1 --port 8787 --log-level info"
无活跃 team 时:
当前没有活跃的 Agent Team。
用 /agent-teams 可以创建新团队。
有活跃 team 时:
**Agent Teams 状态**
{summary 内容}
Dashboard: https://cc.higcp.com/dashboard/
实时监控页面:https://cc.higcp.com/dashboard/
Dashboard API 跑在 tmux session cc-dashboard(port 8787):
~/cc-dashboard/start.shcurl -s localhost:8787/api/health