fix(briefing): exclude paused-project tasks from briefing tooling

list_notes gains exclude_paused_projects; list_tasks tool sets it when
no explicit project filter is given. Paused projects no longer leak
tasks into briefings or list_tasks results.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-10 20:42:33 -04:00
parent 5f4759a5e8
commit 66f906a629
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -1509,6 +1509,7 @@ async def execute_tool(
due_after=_parse_due_date(arguments.get("due_after")),
project_id=project_id,
milestone_id=milestone_id,
exclude_paused_projects=project_id is None,
limit=int(arguments.get("limit", 10)),
sort="due_date",
order="asc",