Shared References
Overview
Shared reference documents used across Integrator Agent skills. Contains common patterns, protocols, and utilities for consistent behavior.
Prerequisites
No external dependencies required.
Instructions
- Identify the shared protocol or pattern needed for the current task
- Review the relevant reference document from the list below
- Apply the protocol or pattern to the agent workflow
- Validate the implementation against the documented schema
- Document any handoff or session state according to the standard format
Checklist
Copy this checklist and track your progress:
- Verify requesting agent's team membership via
team-governanceskill - Identify the shared protocol or pattern needed
- Review the relevant reference document
- Apply the protocol or pattern to the workflow
- Validate implementation against documented schema
- Document handoff or session state in standard format
- Verify all required fields are present in handoff payload
- Ensure datetime fields use ISO 8601 format
Output
| 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 |
Error Handling
Validate handoff payloads before sending. Required fields: handoff_type, from_agent, to_agent, context. All datetime fields must use ISO 8601 format.
Resources
- handoff-protocols — Handoff protocol reference:
- Document Delivery Protocol
- Task Delegation Protocol
- Acknowledgment Protocol
- Completion Reporting Protocol
- Blocker Escalation Protocol
- Troubleshooting
- ai-maestro-message-templates — Message templates:
- 1.0 Standard AI Maestro Messaging Approach
- 2.0 Receiving Messages from Orchestrator (AMOA)
- 2.1 Integration Request from AMOA
- 2.2 Handoff Document Rejection
- 3.0 Sending Messages to Sub-Agents
- 3.1 Task Delegation to Sub-Agent
- 4.0 Reporting Results to Orchestrator (AMOA)
- 4.1 Integration Status Report (Success)
- 4.2 Integration Status Report (In Progress)
- 4.3 Integration Status Report (Failed)
- 4.4 Blocker Escalation (Critical Issues)
- 5.0 Quality Gate Communication
- 5.1 PR Review Complete (All Gates Passed)
- 5.2 PR Review Complete (Tests Failed)
- 5.3 Merge Approved
- 5.4 Merge Rejected
- 5.5 Release Ready Notification
- sub-agent-role-boundaries-template — Role boundaries:
- routing-checklist — Routing checklist:
- record-keeping — Record-keeping:
- Routing Log Format
- Integration Status Files
- Quality Reports
- Session State Structure
- Best Practices
- phase-procedures — Phase procedures:
Examples
# Send a handoff payload from integrator to orchestrator
amp-send.sh amoa-main "Integration Complete" '{
"handoff_type": "task_completion",
"from_agent": "amia-main",
"to_agent": "amoa-main",
"context": {"pr": 42, "status": "merged", "branch": "feature/auth"},
"timestamp": "2026-03-26T12:00:00Z"
}'
Expected result: The orchestrator receives a structured handoff payload with all required fields (handoff_type, from_agent, to_agent, context) and can update its task tracking accordingly.