askill
eia-integration-protocols

eia-integration-protocolsSafety 100Repository

Use when accessing shared utilities and protocols. Trigger with cross-skill reference requests.

0 stars
1.2k downloads
Updated 2/15/2026

Package Files

Loading files...
SKILL.md

Shared References

Overview

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.

Prerequisites

None required. This is a reference skill with no external dependencies.

Instructions

  1. Identify the shared protocol or pattern needed for the current task
  2. Review the relevant reference document from the list below
  3. Apply the protocol or pattern to the agent workflow
  4. Validate the implementation against the documented schema
  5. Document any handoff or session state according to the standard format

Checklist

Copy this checklist and track your progress:

  • 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 TypeFormatDescription
Handoff PayloadJSONStructured agent handoff with context and state
Session StateJSONCurrent session state snapshot for continuity
Coordination ProtocolJSONMulti-agent workflow coordination structure

Reference Documents

Handoff Protocols (references/handoff-protocols.md)

Standard protocols for handing off work between agents:

  • When you need to transfer context between agents → Handoff Format
  • If you need to document session state → Session State Schema
  • When coordinating multi-agent workflows → Coordination Patterns

Examples

Example 1: Agent Handoff Format

{
  "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": []
  }
}

Example 2: Session State Schema

{
  "session_id": "sess_abc123",
  "started_at": "2025-01-30T10:00:00Z",
  "current_phase": "review",
  "completed_tasks": ["fetch_pr", "analyze_diff"],
  "pending_tasks": ["post_review"]
}

Error Handling

Issue: Handoff context incomplete

Cause: Required fields missing from handoff payload.

Solution: Validate handoff against schema before sending. Required fields: handoff_type, from_agent, to_agent, context.

Issue: Session state deserialization fails

Cause: Invalid JSON or schema mismatch.

Solution: Validate JSON structure and ensure all datetime fields use ISO 8601 format.

Resources

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

92/100Analyzed 2/13/2026

A well-structured reference skill defining integration protocols and data schemas. It includes clear examples, error handling, and a checklist, making it highly effective for agents needing to format handoffs or session states within the specific architecture.

100
95
65
95
90

Metadata

Licenseunknown
Version-
Updated2/15/2026
PublisherEmasoft

Tags

github-actions