一键导入
team-management
Use when you need to create, manage, or dissolve teams of workers. Teams group workers under a leader for complex multi-worker projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when you need to create, manage, or dissolve teams of workers. Teams group workers under a leader for complex multi-worker projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when you need to interact with the AgentHub Controller — create tasks, create workers, check status, send heartbeat.
Use when inspecting, registering, summarizing, or handing off task artifacts.
Use when deciding whether existing Workers can handle a goal or whether a new Worker/team should be proposed.
Use when you need to manage Matrix rooms, send messages, or handle room participants.
Use when a Worker, RuntimeLease, Matrix binding, task, or artifact pipeline is stale, failed, or blocked.
Use when managing shared task files and artifact storage. Coordinate file handoffs between workers via shared storage.
| name | team-management |
| description | Use when you need to create, manage, or dissolve teams of workers. Teams group workers under a leader for complex multi-worker projects. |
Manage teams — groups of Workers coordinated by a Team Leader.
# Read the current Controller operation schema before creating Teams.
agenthub schema
# Create a team with a leader and workers
agenthub team create --workspace <id> --name <team-name> --leader-name <leader> --workers w1,w2,w3
# Apply a declarative Team manifest
agenthub apply -f team.yaml
# List all teams
agenthub team list --workspace <id>
# Get team details
agenthub team get --name <team-name> --workspace <id>
# Update team (add/remove workers, change leader model)
agenthub team update --name <team-name> --workspace <id> --workers w1,w2,w3,w4
# Delete a team
agenthub team delete --name <team-name> --workspace <id>
Team manifests group existing Workers. They do not create missing Workers. Apply Worker manifests first when new members are needed.
kind: Team
metadata:
name: delivery-team
spec:
workspaceId: <workspace-id>
leaderName: delivery-lead
workers:
- existing-builder
- existing-reviewer
description: Coordinates implementation and review.
workers must refer to existing WorkspaceAgent ids or names. Do not use Team creation to implicitly create missing Workers.worker-management first with explicit runtime base, model, skills, and sandbox.agenthub schema to inspect teams.create and apply.manifest.agenthub team create ... or agenthub apply -f team.yaml.agenthub team get --name <team>.