From de68d3f6b63f24abc30f23ce0d26cff8572bb7e3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 23 Aug 2026 16:52:52 +0000 Subject: [PATCH] scientist: the Brain board joins the organism router MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A fifth row on the umbrella board: the Brain's operational board (the morning door), consuming its published badge.json headline (clear to work / N need you) like the Heart/Hands/Memory rows, with /board as its one-tap door command. No separate footer nav here — this board IS the boards list. Co-Authored-By: Claude --- scripts/organism_board.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/organism_board.py b/scripts/organism_board.py index 743d56e..0f2848c 100644 --- a/scripts/organism_board.py +++ b/scripts/organism_board.py @@ -37,10 +37,12 @@ HOME = Path(__file__).resolve().parents[1] -# The four boards, in routing order. (name, repo, what the board is, -# the door command a 📋 chip copies.) +# The five boards, in routing order. (name, repo, what the board is, +# the door command a 📋 chip copies.) Brain publishes the same badge.json +# headline contract as Heart/Hands/Memory (brain_board.yml). BOARDS = ( ("Mind", "PyAutoMind", "tasks — pick what to work on", "/start_dev "), + ("Brain", "PyAutoBrain", "operations — the morning door: what needs you", "/board"), ("Heart", "PyAutoHeart", "health — is the organism ok?", "/health"), ("Hands", "PyAutoHands", "releases — what shipped", "/release"), ("Memory", "PyAutoMemory", "knowledge — papers and wikis", "/memory "),