Agent skill · AI & Agents

agent-team-manager

多智能体团队管理。创建、查看、修改、删除 CountBot 的多智能体团队,管理团队成员(角色)和团队级自定义模型配置。当用户要新建 Pipeline/Graph/Council 团队、调整成员分工、修改依赖关系、开关技能系统、设置团队专属模型时使用。

countbot-aigithub.com/countbot-aiGitHub ↗
claude-codeships scriptsMIT
Install
npx skills add countbot-ai/CountBot --skill agent-team-manager --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: yes
Version: 1.0.0
Path: workspace/skills/agent-team-manager/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 760
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 多智能体团队管理 通过命令行管理 CountBot 的多智能体团队,覆盖团队 CRUD、成员 CRUD、以及团队级模型配置。 ## 使用场景 - 用户说“帮我新建一个多智能体团队” -> 创建团队 - 用户说“做一个文档深度分析团队” -> 按模板创建团队 - 用户说“把这个团队改成依赖图模式” -> 修改团队 - 用户说“给团队加一个审稿角色” -> 添加成员 - 用户说“把 analyzer 的任务改一下” -> 修改成员 - 用户说“把这个角色的提示词优化一下” -> 先看当前成员配置,再修改 `task` 和/或 `system_prompt` - 用户说“删掉 summarizer 这个角色” -> 删除成员 - 用户说“给这个团队单独配置模型” -> 配置团队自定义模型 - 用户说“看看有哪些团队/成员” -> 列表或详情 ## 调用方式 所有操作通过 `exec` 工具执行: ```bash python3 skills/agent-team-manager/scripts/agent_team_manager.py <command> [args] ``` ## 严格语法 - 只有这些一级命令:`list`、`info`、`template-list`、`create`、`update`、`delete`、`member-list`、`member-add`、`member-update`、`member-delete`、`config`、`config-set`、`config-reset` - `info` / `member-list` / `update` / `config-set` 的团队参数都是位置参数,不支持 `--team` - `member-update` 的成员参数是第二个位置参数 `member_ref`,不支持 `--id` - 开关技能系统要用团队命令 `update "团队名" --enable-skills` 或 `--disable-skills` - 先看 `--help`,再按帮助里的位置参数顺序执行;不要自行发明子命令或参数名 ## 常用命令 ### 列出团队 ```bash python3 skills/agent-team-manager/scripts/agent_team_manager.py list ``` ### 查看团队详情 `team_ref` 支持团队名称、完整 ID、ID 前缀。 ```bash python3 skills/agent-team-manager/scripts/agent_team_manager.py info "文档深度分析" ``` ### 创建团队 ```bash # 创建空团队,后续再逐个添加成员 python3 skills/agent-team

What's inside
Steps it walks through
  1. 使用场景
  2. 调用方式
  3. 严格语法
  4. 常用命令
  5. 列出团队
  6. 查看团队详情
  7. 创建团队
  8. 修改团队
  9. 删除团队
  10. 成员管理
  11. 列出成员
  12. 添加成员
  13. 修改成员
  14. 修改现有角色提示词(强约束)
Ships with 1 file
  • scripts/agent_team_manager.py
Commands it runs
python3 skills/agent-team-manager/scripts/agent_team_manager.py <command> [args]
python3 skills/agent-team-manager/scripts/agent_team_manager.py list
python3 skills/agent-team-manager/scripts/agent_team_manager.py info "文档深度分析"
python3 skills/agent-team-manager/scripts/agent_team_manager.py create \
python3 skills/agent-team-manager/scripts/agent_team_manager.py update "文档深度分析" \
python3 skills/agent-team-manager/scripts/agent_team_manager.py delete "文档深度分析"
python3 skills/agent-team-manager/scripts/agent_team_manager.py member-list "文档深度分析"
python3 skills/agent-team-manager/scripts/agent_team_manager.py member-add "文档深度分析" \
python3 skills/agent-team-manager/scripts/agent_team_manager.py member-add "代码检查团队" \
python3 skills/agent-team-manager/scripts/agent_team_manager.py member-add "投资评审会" \
More from CountBot
All skills →
About this skill
What does the agent-team-manager skill do?

多智能体团队管理。创建、查看、修改、删除 CountBot 的多智能体团队,管理团队成员(角色)和团队级自定义模型配置。当用户要新建 Pipeline/Graph/Council 团队、调整成员分工、修改依赖关系、开关技能系统、设置团队专属模型时使用。

How do I install it?

Run `npx skills add countbot-ai/CountBot --skill agent-team-manager --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From countbot-ai/CountBot, a repository with 760 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going