Skip to content

Instantly share code, notes, and snippets.

@bigsnarfdude
Last active August 11, 2026 15:13
Show Gist options
  • Select an option

  • Save bigsnarfdude/e827d1563543503674eb9741e3024d31 to your computer and use it in GitHub Desktop.

Select an option

Save bigsnarfdude/e827d1563543503674eb9741e3024d31 to your computer and use it in GitHub Desktop.
Shared blackboard lineage in CS
The Blackboard Architecture is one of the foundational design patterns in artificial intelligence (AI)
and software engineering for coordinating distributed, autonomous, or specialized computational units.
First operationalized during the DARPA Speech Understanding Research (SUR) program in the early 1970s,
the paradigm solves complex, opportunistic problem-solving tasks by replacing rigid sequential control f
low with asynchronous reads and writes to a central, globally shared memory store ("the blackboard").
This report traces the structural mechanics, chronological evolution, parallel intellectual lineages
(such as Gelernter’s Linda tuple spaces), and modern applications of blackboard systems in
Large Language Model (LLM) multi-agent orchestration.
LINEAR AGENT CHAIN (Message Passing)
Agent A ---> (Summary Payload) ---> Agent B ---> (Summary Payload) ---> Agent C
* High risk of context loss, hallucination compounding, and single-point cascading failure.
BLACKBOARD ARCHITECTURE (Shared State)
+-----------------------------------+
| CENTRAL BLACKBOARD STORE |
| (Shared State, History, Hypotheses) |
+-----------------------------------+
^ ^ ^
| | |
(R/W) (R/W) (R/W)
v v v
Agent A Agent B Agent C
* Eliminates message-passing degradation; supports asynchronous, non-linear reasoning loops.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment