The cycle traces ideas through their lives—the moments of insight, the detours, the vindications—and the blackboard model has one of the more instructive trajectories available. Raj Reddy was right about the structure (intelligence is orchestration) and wrong about the contents (knowledge should be hand-built rather than learned), and the field spent decades at the contents while the structure waited. Now that the contents have been solved by statistical learning, the structure problem—how to make many capable agents cooperate reliably, how to prevent a confident mistake from propagating through the shared workspace and being elaborated into sophisticated nonsense—is the frontier problem, and the blackboard is the frame in which it has been waiting.
The cycle uses the blackboard to clarify what is and is not new about multi-agent systems. The shared scratchpad that modern multi-agent frameworks use to coordinate their agents is a blackboard in everything but name. The orchestrator that decides which agent should act next is Reddy’s control component. The specialization of agents by capability is his decomposition of a hard problem into heterogeneous knowledge sources. Even the opportunism is preserved: agents contribute when the state of the shared workspace makes their contribution relevant. The vocabulary is new. The architecture is fifty years old. And the lesson Reddy drew from Hearsay-II—that the bottleneck in a system of cooperating specialists is the coordination, not the specialists themselves—is the lesson the field is now learning at a scale that makes it urgent.
Intelligence orchestration is what the blackboard model produces when it works: a collective that is more capable and more reliable than any of its components, because the specialization distributes the cognitive load and the shared workspace allows each component to build on what the others have contributed. When it fails, it produces the opposite: a chamber in which a confident error echoes until it sounds like consensus, amplified by the fluency of each successive agent that builds on it. The control problem is the difference between these two outcomes, and it is not yet solved—in machines or in the human institutions that have been running blackboard processes for centuries.
The blackboard architecture was developed in the Hearsay-II system, built at Carnegie Mellon between roughly 1973 and 1976 under the leadership of Reddy, Lee D. Erman, Victor R. Lesser, and Frederick Hayes-Roth. The problem it was designed to solve was continuous speech recognition—a task that demands phonetic knowledge, syntactic knowledge, semantic knowledge, and pragmatic knowledge simultaneously, with no clean ordering of their application. Hearsay-I had already demonstrated that cooperating knowledge sources could recognize connected speech; Hearsay-II formalized the cooperation into an architecture that could be described, extended, and reasoned about independently of the specific knowledge sources it coordinated. The key insight was that the specialists should communicate only through the shared workspace—that direct coupling between knowledge sources would make the system brittle and opaque, while indirect coupling through the blackboard made it modular and inspectable.
The architecture was documented in a foundational 1980 paper in ACM Computing Surveys and became an influential design pattern in AI systems through the 1980s. It was eventually overshadowed by the expert-systems boom, then by the neural-network revolution, and then by the decade-long dominance of the monolithic large language model. Its re-emergence in the multi-agent frameworks of the mid-2020s was not a deliberate revival but an independent convergence—practitioners rediscovering by engineering necessity the architectural principle that Reddy had derived from the structure of the speech problem half a century earlier.
The three components and their logic. The blackboard (shared workspace), the knowledge sources (specialized agents), and the control component (orchestrator) are not merely convenient divisions of a complex system. They embody a theory of how cooperation works: specialists who can see the full state of the problem and contribute opportunistically, without having to negotiate with each other directly, produce better collective outcomes than specialists who must coordinate through direct communication. The indirect coupling—everyone reads and writes to the shared medium rather than talking to each other—is what makes the system extensible and inspectable. Add a new knowledge source (or agent) and it integrates naturally, because it only needs to read the blackboard and post to it, not interface with every other specialist.
The control problem is the hard part. Deciding which knowledge source should act, and when, is the central difficulty of the blackboard design—and it is the part of multi-agent AI that matters most. In Hearsay-II, control was hand-designed and the knowledge sources were predictable. In a contemporary agent system, the orchestrator must coordinate components that are vast, opaque, and capable of behaving in ways their designers did not anticipate. The control problem has therefore not merely persisted; it has metastasized. The field has powerful components and primitive orchestration. Multi-agent systems inherit the blackboard’s structure without yet inheriting the engineering discipline around its hardest part.
Cooperative error amplification. A blackboard system can amplify truth or amplify error with equal facility. When a knowledge source posts a correct partial result, the others build on it and the system converges. When it posts a confident mistake, the others build on that instead, elaborating a structure of reasoning that rests on a false foundation and sounds more plausible with each successive contribution. Reddy understood this and built control mechanisms specifically to detect and suppress bad hypotheses before they propagated. In a modern agent system, the agents are far more fluent and far more capable of generating convincing falsehood. The architecture that enables cooperation enables, with equal facility, the cooperative manufacture of sophisticated nonsense. This is not a bug to be fixed by better components; it is a consequence of the architecture, and addressing it requires the same kind of careful control-component design that Reddy found hardest fifty years ago.