@@ -633,16 +633,17 @@ def render_dashboard(c: dict) -> str:
633633 """
634634 records = sorted (c ["records" ], key = _pick_key )
635635 L = [
636- "# PyAutoMind task dashboard " ,
636+ "# PyAutoMind Dashboard " ,
637637 "" ,
638638 f"<!-- generated by `pyauto-brain intake dashboard --apply` on "
639639 f"{ c ['generated' ]} — regenerate, do not hand-edit -->" ,
640640 "" ,
641641 ]
642642 pages = _pages_url (c .get ("home" , "" ))
643643 if pages :
644- L += [f"Reading on a phone? The [one-tap copy version]({ pages } ) puts "
645- "the command on your clipboard with a single tap of 📋." , "" ]
644+ L += [f"This is the markdown version of the "
645+ f"[PyAutoMind Dashboard]({ pages } ), which puts a task's command "
646+ "on your clipboard with a single tap of 📋." , "" ]
646647 L += [
647648 "Every task the Mind is holding, on one page: what is in flight, what "
648649 "is parked, and the whole backlog to pick from. Pick a task and run "
@@ -823,13 +824,13 @@ def record_row(r):
823824 "<head>" ,
824825 '<meta charset="utf-8">' ,
825826 '<meta name="viewport" content="width=device-width, initial-scale=1">' ,
826- "<title>PyAutoMind task dashboard </title>" ,
827+ "<title>PyAutoMind Dashboard </title>" ,
827828 f"<!-- generated by `pyauto-brain intake dashboard --apply` on "
828829 f"{ c ['generated' ]} — regenerate, do not hand-edit -->" ,
829830 f"<style>{ _HTML_CSS } </style>" ,
830831 "</head>" ,
831832 "<body>" ,
832- "<h1>📋 PyAutoMind task dashboard </h1>" ,
833+ "<h1>📋 PyAutoMind Dashboard </h1>" ,
833834 "<p>Every task the Mind is holding. Tap a task's 📋 and its "
834835 "<code>/start_dev</code> command is on your clipboard — paste it into "
835836 "a Claude Code chat to route Claude straight to that task.</p>" ,
0 commit comments