skills/amia-integration-protocols/SKILL.md
Use when accessing shared utilities and protocols. Loaded by ai-maestro-integrator-agent-main-agent.
npx skillsauth add emasoft/ai-maestro-integrator-agent amia-integration-protocolsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Shared reference documents used across Integrator Agent skills. Contains common patterns, protocols, and utilities for consistent behavior.
No external dependencies required.
Copy this checklist and track your progress:
team-governance skill| 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 |
Validate handoff payloads before sending. Required fields: handoff_type, from_agent, to_agent, context. All datetime fields must use ISO 8601 format.
# 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.
development
Use when enforcing TDD via RED-GREEN-REFACTOR. No production code without a failing test first. Trigger with /enforce-tdd. Loaded by ai-maestro-integrator-agent-main-agent.
data-ai
Use when resuming sessions. Trigger with session resumption. Loaded by ai-maestro-integrator-agent-main-agent.
devops
Software release management and coordination. Use when creating releases, bumping versions, or rolling back deployments. Trigger with release tasks or /amia-create-release. Loaded by ai-maestro-integrator-agent-main-agent.
testing
Use when enforcing quality gates. Trigger with /amia-enforce-gates. Loaded by ai-maestro-integrator-agent-main-agent.