ワンクリックで
eia-integration-protocols
Use when accessing shared utilities and protocols. Trigger with cross-skill reference requests.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when accessing shared utilities and protocols. Trigger with cross-skill reference requests.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Quality gate enforcement for PR integration. Use when verifying code through pre-review, review, pre-merge, or post-merge checkpoints. Trigger with /eia-enforce-gates.
Software release management and coordination. Use when creating releases, bumping versions, or rolling back deployments. Trigger with release tasks or /eia-create-release.
Use when managing team tasks through GitHub Projects V2 or synchronizing project state via GraphQL API. Trigger with /sync-projects or when updating project items.
Use when diagnosing CI/CD failures. Trigger with CI failure logs or pipeline errors.
Use when processing parallel PRs. Trigger with git worktree or parallel development requests.
Use when managing GitHub Issues including creation, labels, milestones, assignees, and comments using gh CLI. Trigger with create issue, set labels, assign milestone.
| name | eia-integration-protocols |
| description | Use when accessing shared utilities and protocols. Trigger with cross-skill reference requests. |
| license | Apache-2.0 |
| compatibility | Requires AI Maestro installed. |
| metadata | {"author":"Emasoft","version":"1.0.0"} |
| context | fork |
| workflow-instruction | support |
| procedure | support-skill |
| user-invocable | false |
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.