Use when accessing shared utilities and protocols. Trigger with cross-skill reference requests.
npx claudepluginhub emasoft/emasoft-plugins --plugin emasoft-integrator-agentThis skill uses the workspace's default tool permissions.
This skill provides shared reference documents that are used across multiple Integrator Agent skills. It contains common patterns, protocols, and utilities that enable consistent behavior across the skill set.
README.mdreferences/ai-maestro-message-templates.mdreferences/design-document-protocol.mdreferences/edge-case-protocols.mdreferences/handoff-protocols.mdreferences/handoff-templates.mdreferences/message-response-decision-tree.mdreferences/op-create-handoff-payload.mdreferences/op-create-session-state.mdreferences/op-deserialize-session-state.mdreferences/op-validate-handoff-payload.mdreferences/op-validate-session-state.mdreferences/phase-procedures.mdreferences/proactive-handoff-protocol.mdreferences/record-keeping.mdreferences/routing-checklist.mdreferences/sub-agent-role-boundaries-template.mdreferences/task-completion-checklist.mdDesigns handoff protocols for smooth transitions between AI agents and humans in multi-agent systems. Covers anatomy, types, context transfer, user experience, and anti-patterns.
Provides A2A protocol reference for building servers/clients, configuring Ark A2AServer resources, debugging communication, and specs on Agent Cards, tasks, streaming, extensions.
Provides protocols, templates, and rules for constructing subagent delegation prompts with context chains, protocol injection, and downstream declarations in agent orchestration.
Share bugs, ideas, or general feedback.
This skill provides shared reference documents that are used across multiple Integrator Agent skills. It contains common patterns, protocols, and utilities that enable consistent behavior across the skill set.
None required. This is a reference skill with no external dependencies.
Copy this checklist and track your progress:
| Output Type | Format | Description |
|---|---|---|
| Handoff Payload | JSON | Structured agent handoff with context and state |
| Session State | JSON | Current session state snapshot for continuity |
| Coordination Protocol | JSON | Multi-agent workflow coordination structure |
Standard protocols for handing off work between agents:
{
"handoff_type": "task_delegation",
"from_agent": "orchestrator",
"to_agent": "code-reviewer",
"context": {
"pr_number": 123,
"repository": "owner/repo",
"task": "Review code changes"
},
"session_state": {
"files_reviewed": [],
"comments_made": []
}
}
{
"session_id": "sess_abc123",
"started_at": "2025-01-30T10:00:00Z",
"current_phase": "review",
"completed_tasks": ["fetch_pr", "analyze_diff"],
"pending_tasks": ["post_review"]
}
Cause: Required fields missing from handoff payload.
Solution: Validate handoff against schema before sending. Required fields: handoff_type, from_agent, to_agent, context.
Cause: Invalid JSON or schema mismatch.
Solution: Validate JSON structure and ensure all datetime fields use ISO 8601 format.