ワンクリックで
team-list
// This skill should be used when the user asks to "列出团队", "team list", "list teams", "show teams", "查看团队配置", "有哪些团队", "what teams are saved". 扫描 .team-profiles/ 目录, 展示所有已保存配置的摘要信息。与 /team-status(查看运行中团队)不同, 此技能查看磁盘上的持久化配置。
// This skill should be used when the user asks to "列出团队", "team list", "list teams", "show teams", "查看团队配置", "有哪些团队", "what teams are saved". 扫描 .team-profiles/ 目录, 展示所有已保存配置的摘要信息。与 /team-status(查看运行中团队)不同, 此技能查看磁盘上的持久化配置。
This skill should be used when the user asks to "初始化团队", "创建开发团队", "team init", "create team", "build team", "组建团队", "启动项目团队", "添加扩展角色", "add extension roles". 通过交互式问答收集项目信息, 创建包含专业角色的 Agent 工程团队。支持 8 种团队类型和 153 个扩展专业角色(跨 12 领域)。
This skill should be used when the user asks to "加载团队", "team load", "恢复团队", "载入团队配置", "load team", "restore team", "load team config", "载入团队", "重新加载团队", "reload team". 从 .team-profiles/ 读取 YAML 配置, 跳过交互问答直接创建团队。支持 template 和 snapshot 两种格式。
This skill should be used when the user asks to "删除团队配置", "team delete", "delete team config", "移除团队", "remove saved team", "清理团队配置". 从 .team-profiles/ 目录中删除已保存的 YAML 配置文件(非运行中团队, 运行中团队请用 /team-stop)。
This skill should be used when the user asks to "安装远程角色", "team-roles add", "team-roles list", "添加远程角色", "管理远程角色", "从 GitHub 安装角色", "team-roles update", "team-roles remove", "team-roles search", "install remote roles", "add remote roles", "远程角色管理", "list remote roles", "update remote roles", "remove remote roles". 从 GitHub 仓库、单文件 URL 或 npx 包安装扩展角色到项目级缓存 .team-roles/。
This skill should be used when the user asks to "保存团队", "team save", "保存团队配置", "导出团队", "save team", "export team", "save team config". 从运行中的团队读取配置并保存为快照文件 到 .team-profiles/ 目录,供 /team-load 复用。
This skill should be used when the user asks to "查看团队状态", "team status", "check team progress", "who is running", "团队运行情况", "团队进度", "谁在运行", "active teams". 查询当前运行中的团队的实时状态, 包括成员列表、任务进度和活跃情况。与 /team-list(查看磁盘配置)互补。
| name | team-list |
| description | This skill should be used when the user asks to "列出团队", "team list", "list teams", "show teams", "查看团队配置", "有哪些团队", "what teams are saved". 扫描 .team-profiles/ 目录, 展示所有已保存配置的摘要信息。与 /team-status(查看运行中团队)不同, 此技能查看磁盘上的持久化配置。 |
| version | 0.5.0 |
扫描当前项目目录的 .team-profiles/,展示所有已保存的团队配置摘要。
使用 Glob 工具匹配 {当前工作目录}/.team-profiles/*.yaml。
如果 .team-profiles/ 目录不存在或没有 .yaml 文件:
当前项目没有保存的团队配置。
- /team-init 创建新团队(自动保存模板配置)
- /team-save 保存当前运行中的团队(保存快照配置)
结束。
对每个 .yaml 文件使用 Read 工具读取,提取:
roles[] 的 count 总和(每个 role 项有 role 代号和 count 数量,如 {role: "developer", count: 2})members[] 长度.team-profiles/ 下共 {N} 个团队配置:
{name1} [template] {team_type_name} - {description 前40字}
成员: {count} 个角色
{name2} [snapshot] {description 前40字}
成员: {count} 个 | 任务: {completed}✓ {in_progress}⚡ {pending}○
{name3} [snapshot] {description 前40字}
成员: {count} 个 | 任务: {completed}✓ {in_progress}⚡ {pending}○
使用 /team-load {name} 加载指定配置。
*.yaml 自动排除 .yaml.bak 备份文件,无需额外处理