🎯

handoff-coordinator

🎯Skill

from adaptationio/skrillz

VibeIndex|
What it does

handoff-coordinator skill from adaptationio/skrillz

πŸ“¦

Part of

adaptationio/skrillz(191 items)

handoff-coordinator

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add adaptationio/Skrillz
Install PluginInstall plugin from marketplace
/plugin install skrillz@adaptationio-Skrillz
Claude CodeAdd plugin in Claude Code
/plugin enable skrillz@adaptationio-Skrillz
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add /path/to/skrillz
Install PluginInstall plugin from marketplace
/plugin install skrillz@local

+ 4 more commands

πŸ“– Extracted from docs: adaptationio/skrillz
1Installs
3
-
Last UpdatedJan 16, 2026

Skill Details

SKILL.md

Clean transitions between agents and sessions. Use when preparing handoffs, serializing state, bridging context between agents, or coordinating multi-agent workflows.

Overview

# Handoff Coordinator

Manages clean transitions between agents and sessions with state serialization and context bridging.

Quick Start

Prepare Handoff

```python

from scripts.handoff_coordinator import HandoffCoordinator

coordinator = HandoffCoordinator(project_dir)

package = await coordinator.prepare_handoff(

source_agent="coding-agent",

summary="Completed auth-001, starting auth-002"

)

```

Execute Handoff

```python

await coordinator.execute_handoff(

package=package,

target_agent="coding-agent"

)

```

Handoff Process

```

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”

β”‚ HANDOFF WORKFLOW β”‚

β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€

β”‚ β”‚

β”‚ SOURCE AGENT β”‚

β”‚ β”œβ”€ Complete current work β”‚

β”‚ β”œβ”€ Save state to files β”‚

β”‚ β”œβ”€ Create handoff package β”‚

β”‚ └─ Signal ready for handoff β”‚

β”‚ β”‚

β”‚ COORDINATOR β”‚

β”‚ β”œβ”€ Validate state consistency β”‚

β”‚ β”œβ”€ Serialize handoff package β”‚

β”‚ β”œβ”€ Store in handoff file β”‚

β”‚ └─ Trigger target agent β”‚

β”‚ β”‚

β”‚ TARGET AGENT β”‚

β”‚ β”œβ”€ Load handoff package β”‚

β”‚ β”œβ”€ Restore context β”‚

β”‚ β”œβ”€ Verify state β”‚

β”‚ └─ Continue work β”‚

β”‚ β”‚

β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

```

Handoff Package

```json

{

"id": "handoff-20250115-103000",

"source_agent": "coding-agent",

"target_agent": "coding-agent",

"timestamp": "2025-01-15T10:30:00",

"state": {

"current_feature": "auth-002",

"completed_features": ["auth-001"],

"blockers": [],

"next_steps": ["Implement logout endpoint"]

},

"context": {

"recent_files": ["src/auth/login.ts"],

"git_hash": "abc1234",

"session_number": 5

},

"summary": "Completed auth-001, starting auth-002"

}

```

Handoff Types

| Type | Description | Use Case |

|------|-------------|----------|

| Session | Same agent, new session | Context limit reached |

| Agent | Different agent | Specialized task |

| Parallel | Multiple targets | Split work |

| Recovery | After failure | Error recovery |

Integration Points

  • autonomous-session-manager: Triggers session handoffs
  • context-compactor: Compacts before handoff
  • memory-manager: Stores handoff summaries

References

  • references/HANDOFF-PROTOCOL.md - Protocol details
  • references/AGENT-TRANSITIONS.md - Transition patterns

Scripts

  • scripts/handoff_coordinator.py - Core coordinator
  • scripts/state_serializer.py - State serialization
  • scripts/context_bridge.py - Context bridging
  • scripts/handoff_protocol.py - Protocol implementation