From 7c496b87c8586ae7bc4b736d55a368a5dcd16006 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Thu, 20 Aug 2026 10:56:58 -0400 Subject: [PATCH] intake dashboard: retitle Mind pages to 'PyAutoMind Dashboard' (PyAutoLabs/PyAutoScientist#13) Co-Authored-By: Claude Fable 5 --- agents/conductors/intake/_intake.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/agents/conductors/intake/_intake.py b/agents/conductors/intake/_intake.py index 242c971..9c07781 100755 --- a/agents/conductors/intake/_intake.py +++ b/agents/conductors/intake/_intake.py @@ -633,7 +633,7 @@ def render_dashboard(c: dict) -> str: """ records = sorted(c["records"], key=_pick_key) L = [ - "# PyAutoMind task dashboard", + "# PyAutoMind Dashboard", "", f"", @@ -641,8 +641,9 @@ def render_dashboard(c: dict) -> str: ] pages = _pages_url(c.get("home", "")) if pages: - L += [f"Reading on a phone? The [one-tap copy version]({pages}) puts " - "the command on your clipboard with a single tap of 📋.", ""] + L += [f"This is the markdown version of the " + f"[PyAutoMind Dashboard]({pages}), which puts a task's command " + "on your clipboard with a single tap of 📋.", ""] L += [ "Every task the Mind is holding, on one page: what is in flight, what " "is parked, and the whole backlog to pick from. Pick a task and run " @@ -823,13 +824,13 @@ def record_row(r): "", '', '', - "PyAutoMind task dashboard", + "PyAutoMind Dashboard", f"", f"", "", "", - "

📋 PyAutoMind task dashboard

", + "

📋 PyAutoMind Dashboard

", "

Every task the Mind is holding. Tap a task's 📋 and its " "/start_dev command is on your clipboard — paste it into " "a Claude Code chat to route Claude straight to that task.

",