agent-teams-1-create-team
Sub-skill of agent-teams: 1. Create team (+5).
Best use case
agent-teams-1-create-team is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of agent-teams: 1. Create team (+5).
Teams using agent-teams-1-create-team should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/1-create-team/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How agent-teams-1-create-team Compares
| Feature / Agent | agent-teams-1-create-team | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of agent-teams: 1. Create team (+5).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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()
```Related Skills
teams-meeting-pipeline
Operate the Teams meeting summary pipeline via Hermes CLI — summarize meetings, inspect pipeline status, replay jobs, manage Microsoft Graph subscriptions.
agent-team-prompt-generation
Create self-contained execution prompts that define multi-role workflows for Codex sessions without external dependencies
create-an-asset
Generate tailored sales assets including landing pages, decks, one-pagers, and workflow demos
bash-script-framework-example-1-create-new-cli-tool
Sub-skill of bash-script-framework: Example 1: Create New CLI Tool (+1).
agent-teams-workspace-work-profile-updated-2026-03-10
Sub-skill of agent-teams: Workspace Work Profile (Updated 2026-03-10).
agent-teams-work-queue-integration
Sub-skill of agent-teams: Work Queue Integration.
agent-teams-subagent-startup-convention
Sub-skill of agent-teams: Subagent startup convention (+2).
agent-teams-idle-state
Sub-skill of agent-teams: Idle State.
agent-teams-dm-default-always-prefer
Sub-skill of agent-teams: DM (default — always prefer) (+2).
agent-teams-decision-matrix-team-vs-sequential
Sub-skill of agent-teams: Decision Matrix: Team vs Sequential.
agent-teams-core-constraint
Sub-skill of agent-teams: Core Constraint.
agent-teams-agent-types-for-common-tasks
Sub-skill of agent-teams: Agent Types for Common Tasks.