Skip to main content
Pass a Skills instance to the skills parameter on Team. The team leader gets skill tools and system prompt snippets directly.
The leader model receives:
  • Skill summaries in its system prompt (via get_system_prompt_snippet())
  • Skill tools: get_skill_instructions, get_skill_reference, get_skill_script

Team-Level vs. Member-Level Skills

How It Works

Skills on a team follow the same pattern as knowledge, memory, and tools:
  1. skills.get_tools() adds skill tools to the leader’s tool list
  2. skills.get_system_prompt_snippet() injects skill metadata into the leader’s system prompt
  3. The leader discovers, loads, and uses skills on demand during the run

Complete Example

Next Steps

Developer Resources