| name | amia-integration-protocols |
| description | Use when composing inter-agent handoff payloads, session state snapshots, multi-agent coordination protocols, or referencing shared message templates / record-keeping formats. Trigger with handoff, delegation, acknowledgment, completion report, blocker escalation, or routing decision requests. Loaded by ai-maestro-integrator-agent-main-agent. |
| license | MIT |
| compatibility | Requires AI Maestro installed. |
| metadata | {"author":"Emasoft","version":"1.0.1"} |
| agent | ai-maestro-integrator-agent-main-agent |
| context | fork |
| user-invocable | false |
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:
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
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.