Systematic audit of how services talk to each other. Not just finding broken wires — questioning whether each wire should exist, in which direction, at what rate, and what comes back.
The core principle: deep modules with simple interfaces, not webs of shallow wiring. The consumer sees one health surface, one response, one interface. The implementation behind it can be as complex as needed — the consumer doesn't know or care. Every design decision filters through: "does this expose internal wiring to the consumer, or does it stay behind the module boundary?"
The full field guide is at references/communication-audit-guide.md (40 principles). Do NOT summarize the guide in prompts — workers read it directly.
서비스 통신 방식을 분석, 설계 또는 수정할 때 사용합니다. 특히 통신이 불안정하고, 단방향이고, 실행 후 잊어버리거나, 배압이 부족하거나, 복구 경로가 없는 경우에 사용합니다. 서비스 간 동기화, 연결 수명주기, 틱율 분석, 오류 모드 매핑 및 자가 복구 시스템을 위한 프로토콜 설계를 다룹니다. 사용자가 서비스 간 불안정성, 동기화 문제, 재연결 문제를 언급하거나 두 시스템이 서로 통신하는 방식을 검토해 달라고 요청할 때 사용하세요. 출처: cygnusfear/agent-skills.