Agent skill

agent-teams-1-create-team

Sub-skill of agent-teams: 1. Create team (+5).

Stars 4
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/workspace-hub/agent-teams/1-create-team

SKILL.md

1. Create team (+5)

1. Create team

python
TeamCreate(team_name="my-work", description="Implementing WRK-205")

2. Create tasks

python
TaskCreate(subject="Build SKILLS_GRAPH.yaml", description="...", activeForm="Building graph YAML")
TaskCreate(subject="Script diverged canonical_ref", description="...", activeForm="Scripting canonical refs")

3. Spawn teammates

python
Task(
    subagent_type="general-purpose",
    name="graph-builder",
    team_name="my-work",
    prompt="You are graph-builder. Check TaskList for your work..."
)
Task(
    subagent_type="Bash",
    name="script-runner",
    team_name="my-work",
    prompt="You are script-runner. Check TaskList for your work..."
)

4. Assign tasks

python
TaskUpdate(taskId="1", owner="graph-builder", status="in_progress")
TaskUpdate(taskId="2", owner="script-runner", status="in_progress")

5. Stay responsive

While teammates work, the main orchestrator stays available for user messages. Use run_in_background=True for long tasks. Check progress with TaskList.

6. Shutdown

python
SendMessage(type="shutdown_request", recipient="graph-builder", content="Work complete")
SendMessage(type="shutdown_request", recipient="script-runner", content="Work complete")
# After both confirm shutdown:
TeamDelete()

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results