Skip to content

Commit 4ff5919

Browse files
Jammy2211Jammy2211claude
authored
Trim the task dashboard header (#248) (#236)
Move the one-tap-copy phone line to the top, shorten the description to two sentences, and drop the 'Tasks only' and 'Live on GitHub' lines (and the now-unused GH_SEARCH constant). PyAutoLabs/PyAutoMind#248. Co-authored-by: Jammy2211 <JNightingale2211@gmail.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent c6af996 commit 4ff5919

1 file changed

Lines changed: 3 additions & 14 deletions

File tree

agents/conductors/intake/_intake.py

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -546,9 +546,6 @@ def _summary_label(value: str) -> str:
546546
PRIORITY_RANK = {"high": 0, "medium": 1, "normal": 2, "low": 3}
547547
DIFFICULTY_RANK = {"small": 0, "medium": 1, "large": 2, "too-large": 3}
548548
PICK_LIST_MAX = 12
549-
# Live GitHub views, for the half of this page a static file cannot hold: the
550-
# issues themselves. Org-wide searches, so a new repo needs no edit here.
551-
GH_SEARCH = "https://github.com/search?q=org%3APyAutoLabs+is%3A{kind}+is%3Aopen&type={kind}s"
552549

553550

554551
def _pick_key(r: dict) -> tuple:
@@ -641,20 +638,15 @@ def render_dashboard(c: dict) -> str:
641638
f"<!-- generated by `pyauto-brain intake dashboard --apply` on "
642639
f"{c['generated']} — regenerate, do not hand-edit -->",
643640
"",
644-
"Every task the Mind is holding, on one page: what is in flight, what "
645-
"is parked, and the whole backlog to pick from. Pick a line, then run "
646-
"`/start_dev <prompt-path>` to start it. On a phone, tap a task's 📋 "
647-
"to reveal that command, copy it, and paste it into a Claude Code "
648-
"chat to route Claude straight to the task.",
649-
"",
650641
]
651642
pages = _pages_url(c.get("home", ""))
652643
if pages:
653644
L += [f"Reading on a phone? The [one-tap copy version]({pages}) puts "
654645
"the command on your clipboard with a single tap of 📋.", ""]
655646
L += [
656-
"Tasks only — the organism's health lives with the Heart (`/health`), "
657-
"not here.",
647+
"Every task the Mind is holding, on one page: what is in flight, what "
648+
"is parked, and the whole backlog to pick from. Pick a task and run "
649+
"its `/start_dev` command in a Claude Code chat to start it.",
658650
"",
659651
"| Where | Count |",
660652
"|-------|------:|",
@@ -663,9 +655,6 @@ def render_dashboard(c: dict) -> str:
663655
f"| [Planned](#planned) (`planned.md`) | {len(c['planned'])} |",
664656
f"| [Backlog](#backlog) (`draft/`) | {c['total']} |",
665657
"",
666-
f"Live on GitHub: [open issues]({GH_SEARCH.format(kind='issue')}) · "
667-
f"[open pull requests]({GH_SEARCH.format(kind='pr')})",
668-
"",
669658
"## Start here",
670659
"",
671660
]

0 commit comments

Comments
 (0)