Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions agents/conductors/intake/_intake.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,16 +633,17 @@ def render_dashboard(c: dict) -> str:
"""
records = sorted(c["records"], key=_pick_key)
L = [
"# PyAutoMind task dashboard",
"# PyAutoMind Dashboard",
"",
f"<!-- generated by `pyauto-brain intake dashboard --apply` on "
f"{c['generated']} — regenerate, do not hand-edit -->",
"",
]
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 "
Expand Down Expand Up @@ -823,13 +824,13 @@ def record_row(r):
"<head>",
'<meta charset="utf-8">',
'<meta name="viewport" content="width=device-width, initial-scale=1">',
"<title>PyAutoMind task dashboard</title>",
"<title>PyAutoMind Dashboard</title>",
f"<!-- generated by `pyauto-brain intake dashboard --apply` on "
f"{c['generated']} — regenerate, do not hand-edit -->",
f"<style>{_HTML_CSS}</style>",
"</head>",
"<body>",
"<h1>📋 PyAutoMind task dashboard</h1>",
"<h1>📋 PyAutoMind Dashboard</h1>",
"<p>Every task the Mind is holding. Tap a task's 📋 and its "
"<code>/start_dev</code> command is on your clipboard — paste it into "
"a Claude Code chat to route Claude straight to that task.</p>",
Expand Down
Loading