Strong consistency is a memory consistency model that guarantees any read operation returns the value from the most recent write operation, making a distributed system appear as if it has a single, up-to-date copy of the data. This strict linearizability ensures that all agents observe operations in a single, global order, which is essential for maintaining deterministic state in multi-agent systems and preventing race conditions during collaborative tasks.
