Log a daily work check-in — records what was accomplished and syncs to task board
Log what the user worked on today.
Look for indicators: "@brett", "@brandon", name mentions, or context clues.
If unclear, use ask_user to confirm.
Extract:
vault_create_entry(entry_type: "checkin", entry_date: "{today}", author: "{person}", ...)
Content should include work items as a bulleted list, blockers section, and notes section.
If a checkin already exists for this person today, use vault_update_entry to append.
For each work item that sounds like a completion:
vault_kanban(action: "search", search_term: "{work_item}") to find matching tasksask_user: "Is '{work item}' the same as '{kanban task}'?"vault_kanban(action: "complete", task_id: "...")vault_dashboard(dashboard_type: "activity") to update the dashboard.
Report: checkin file created, work items recorded, kanban matches found/completed.