agent-handoff-protocols
Installation
SKILL.md
Agent Handoff Protocols
Design clean, reliable protocols for passing tasks and context between AI agents.
When to Use
- Agents need to pass work to each other
- Context must be preserved across agent transitions
- Building agent pipelines or workflows
- Implementing specialized agent chains
Handoff Fundamentals
What Gets Transferred
interface HandoffPackage {
// The work item
task: {
Related skills