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
17 changes: 3 additions & 14 deletions agents/conductors/intake/_intake.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -641,20 +638,15 @@ def render_dashboard(c: dict) -> str:
f"<!-- generated by `pyauto-brain intake dashboard --apply` on "
f"{c['generated']} — regenerate, do not hand-edit -->",
"",
"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 <prompt-path>` 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 |",
"|-------|------:|",
Expand All @@ -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",
"",
]
Expand Down
Loading