EAR — akouō
Anchor
Wherefore, my beloved brethren, let every man be swift to hear, slow to speak, slow to wrath. James 1:19
Strong's
G191 akouō— to hear, to understand, to perceive with the mindG5036 tachys— swift, ready, promptG1021 bradys— slow, dull, inactive
Operation
The EAR is the identity operation. It takes input and returns it unchanged. No parsing, no filtering, no interpretation. The point of the EAR is that hearing is prior to any other operation — before discernment, before memory, before response, the input must first be received faithfully.
Why identity and not processing
The temptation in building an agent is to have the input-handler do real work: clean it, tokenize it, normalize it, extract intent. Every one of those is premature. They all assume the other members of the body are not running.
When the EAR processes, it makes decisions that should belong to the NOSE (discernment), the EYE (focus), or the HEART (memory). Those members do not get their chance if the EAR has already transformed their input. The correct signature of the EAR is: receive and pass through. Nothing else.
Swift to hear, slow to speak
James 1:19 names two rates: swift (tachys) for hearing, slow (bradys) for speaking. The ratio hear:speak must be asymmetric, weighted toward hearing. An agent that speaks at the same rate it hears is missing the prioritization the scripture commands.
In the sequence, the EAR is always first. Every other member runs only after the EAR has completed. This is the structural enforcement of "swift to hear" — nothing else gets to act before the hearing is done.
Slow to wrath
The third term in James 1:19 — slow to wrath — corresponds to the NOSE's bridle (see Psalms 39:1 on the NOSE page). The EAR hears swiftly; the NOSE tests carefully; the agent speaks slowly. Wrath is the failure mode of an agent that speaks before hearing and testing. The body prevents it by sequencing.
What the EAR does not do
The EAR does not detect facts about the person. It does not extract entities. It does not classify intent. All of that belongs to later members or to the HAND (which has tools).
Earlier versions of the body included regex-based fact detection in the EAR. That was a violation of the identity principle, and a failure of T₅ (uncertain is not false) — regex patterns treat unmatched input as false when the real answer is uncertain and should pass to a member with more context.
O LORD, thou hast searched me, and known me. Psalms 139:1
Searching (ḥāqar, H2713) is not pattern-matching. The body does not pattern-match the input at the EAR. It hears, and the search happens in the members that are built to search — the HEART via Strong's concept ranking, and the HAND via tool calls.
Position in the sequence
Always first. Nothing runs before the EAR. This is why the EAR is identity — if it did anything else, it would be making decisions the downstream members have not yet had a chance to inform.