From team-skills
This skill should be used when the user asks to "删除团队配置", "team delete", "delete team config", "移除团队", "remove saved team", "清理团队配置". 从 .team-profiles/ 目录中删除已保存的 YAML 配置文件(非运行中团队, 运行中团队请用 /team-stop)。
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-skills:team-deleteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
从项目目录的 `.team-profiles/` 中删除指定的团队配置文件。
从项目目录的 .team-profiles/ 中删除指定的团队配置文件。
$ARGUMENTS 非空,直接使用作为配置名称$ARGUMENTS 为空,扫描 .team-profiles/*.yaml,列出供用户选择AskUserQuestion:
question: "选择要删除的团队配置"
header: "删除配置"
options:
- label: "{name1}"
description: "[{format}] {description 前30字}"
- label: "{name2}"
description: "[{format}] {description 前30字}"
# ... 最多 4 个
multiSelect: false
如果 .team-profiles/ 目录不存在或为空:
没有可删除的团队配置。
结束。
使用 Read 工具读取目标文件,展示摘要:
即将删除: .team-profiles/{name}.yaml
--------------------
格式: {format}
描述: {description}
成员: {N} 个
任务: {M} 个(仅 snapshot)
备份文件: {如果 .yaml.bak 存在则显示 "将同时删除 .yaml.bak",否则 "无"}
--------------------
AskUserQuestion:
question: "确认删除此配置?此操作不可恢复。"
header: "确认删除"
options:
- label: "确认删除"
description: "永久删除此配置文件"
- label: "取消"
description: "放弃删除"
multiSelect: false
使用 Bash 工具执行删除:
rm "{当前工作目录}/.team-profiles/{name}.yaml"
如果对应的备份文件 .team-profiles/{name}.yaml.bak 也存在,一并删除:
rm "{当前工作目录}/.team-profiles/{name}.yaml.bak"
已删除: .team-profiles/{name}.yaml
如果同时删除了备份文件,额外提示:
同时清理了备份文件: .team-profiles/{name}.yaml.bak
如果删除后 .team-profiles/ 目录为空,额外提示:
.team-profiles/ 目录已无配置文件。
npx claudepluginhub killvxk/teamskills --plugin team-skillsRefines or creates specialized variants of existing team compositions. Includes assessment, scope selection (members, coordination, split/merge), file updates, version metadata, and registry sync. Use for outdated rosters, coordination mismatches, or agent changes.
Orchestrates Claude Code multi-agent teams with lifecycle management, failure recovery, idle guardrails, and degraded mode fallback. Invoked when creating or managing agent teams.
Removes brewcode project files like templates, configs, logs, and plans while preserving task directories and user rules. Supports --dry-run to list files without deletion.