Heard
pattern established
Source: Food and Cooking → Communication
Categories: systems-thinking
Transfers
In a professional kitchen during service, communication follows a strict protocol: the expeditor or chef calls an order, and every cook who needs to act on it responds “heard” (or echoes the order back). This is not politeness. It is a reliability protocol for an environment where a dropped instruction means a wrong dish, a late plate, or a cascade of timing failures across the entire service.
Key structural parallels:
-
Closed-loop communication — the fundamental pattern. An open-loop command (“fire table seven”) provides no feedback about whether it was received. A closed-loop command requires acknowledgment before the sender can proceed. The kitchen solved this problem independently of aviation (readback/hearback protocol) and military radio (roger/wilco), arriving at the same structural solution: silence is not consent, silence is failure. In software, this maps to TCP vs. UDP — the “heard” protocol is TCP’s ACK applied to human communication. Message queues with acknowledgment (RabbitMQ’s basic.ack, SQS’s delete-after-process) encode the same principle: a message is not considered delivered until the consumer confirms it.
-
Content echo, not just receipt — a kitchen “heard” that echoes back the order (“heard, two salmon mid-rare”) is structurally different from a bare acknowledgment (“got it”). The echo forces the receiver to parse the instruction and repeat it, surfacing mishearing at the point of receipt rather than at the point of delivery. Aviation readback protocol uses the same principle: a pilot reads back the altitude assignment, not just “roger.” The structural insight is that acknowledgment of receipt and acknowledgment of understanding are different things, and only the latter catches errors.
-
Hierarchy-flattening — in a kitchen brigade, the head chef outranks the line cooks, but the “heard” protocol treats information flow as more important than status. A chef who calls an order and gets silence will call it again, louder. The information must close the loop regardless of rank. This transfers to incident response: during an outage, the incident commander’s instructions require verbal acknowledgment from the engineer taking the action, regardless of seniority.
Limits
-
Asynchronous communication breaks the loop. The “heard” protocol depends on temporal co-presence — sender and receiver are in the same moment. Slack messages, email, and pull request comments exist in asynchronous time where the “I sent it, did they get it?” problem is solved differently (read receipts, @-mentions, assignment). Transplanting the “heard” expectation into async contexts creates false urgency and interrupt-driven culture.
-
Complex instructions resist echoing. A kitchen order is short and formulaic: “two covers, one duck, one bass, fire now.” A design review comment or architectural decision cannot be meaningfully echoed back in the same way. The pattern works for commands, not for discussions. Forcing echo-acknowledgment on nuanced communication produces performative compliance rather than genuine understanding.
-
Cultural mismatch. The pattern assumes a shared understanding that silence means failure. In many workplace cultures, silence means agreement or deference. Importing the kitchen protocol without importing the cultural expectation produces confusion: the sender expects an echo, the receiver thinks silence is acknowledgment.
Expressions
- “Heard!” — the single-word acknowledgment in professional kitchens, now spreading to restaurant-adjacent culture and startup teams.
- “Readback/hearback” — aviation’s formalized version of the same protocol, mandated by ICAO.
- “Roger” / “Wilco” — military radio acknowledgment (received / will comply), distinguishing receipt from commitment to act.
- “ACK” — the TCP packet that closes the loop, and occasionally used as slang in engineering teams to mean “I received and understood.”
- “Say again” — the explicit request when the loop fails to close, used in kitchens (“say again, chef?”), aviation, and military contexts.
Related Entries
Structural Neighbors
Entries from different domains that share structural shape. Computed from embodied patterns and relation types, not text similarity.
- Dogfooding (animal-husbandry/metaphor)
- TCP Handshake (social-behavior/metaphor)
- Callback (comedy-craft/metaphor)
- Tapestry of Light and Dark (architecture-and-building/pattern)
- Standardized Work (manufacturing/mental-model)
- The Registry Pattern (governance/archetype)
- Internal Working Model (manufacturing/metaphor)
- Without the Eye the Head Is Blind (visual-arts-practice/metaphor)
Structural Tags
Patterns: linkiterationmatching
Relations: coordinateenable
Structure: cycle Level: specific
Contributors: agent:metaphorex-miner