diff --git a/agents/conductors/intake/_intake.py b/agents/conductors/intake/_intake.py index b783d9c..242c971 100755 --- a/agents/conductors/intake/_intake.py +++ b/agents/conductors/intake/_intake.py @@ -546,9 +546,6 @@ def _summary_label(value: str) -> str: PRIORITY_RANK = {"high": 0, "medium": 1, "normal": 2, "low": 3} DIFFICULTY_RANK = {"small": 0, "medium": 1, "large": 2, "too-large": 3} PICK_LIST_MAX = 12 -# Live GitHub views, for the half of this page a static file cannot hold: the -# issues themselves. Org-wide searches, so a new repo needs no edit here. -GH_SEARCH = "https://github.com/search?q=org%3APyAutoLabs+is%3A{kind}+is%3Aopen&type={kind}s" def _pick_key(r: dict) -> tuple: @@ -641,20 +638,15 @@ def render_dashboard(c: dict) -> str: f"", "", - "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 line, then run " - "`/start_dev ` to start it. On a phone, tap a task's ๐Ÿ“‹ " - "to reveal that command, copy it, and paste it into a Claude Code " - "chat to route Claude straight to the task.", - "", ] 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 += [ - "Tasks only โ€” the organism's health lives with the Heart (`/health`), " - "not here.", + "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 " + "its `/start_dev` command in a Claude Code chat to start it.", "", "| Where | Count |", "|-------|------:|", @@ -663,9 +655,6 @@ def render_dashboard(c: dict) -> str: f"| [Planned](#planned) (`planned.md`) | {len(c['planned'])} |", f"| [Backlog](#backlog) (`draft/`) | {c['total']} |", "", - f"Live on GitHub: [open issues]({GH_SEARCH.format(kind='issue')}) ยท " - f"[open pull requests]({GH_SEARCH.format(kind='pr')})", - "", "## Start here", "", ]