원클릭으로
vault-checkin
// Log a daily work check-in — records what was accomplished and syncs to task board
// Log a daily work check-in — records what was accomplished and syncs to task board
Run a quality audit on the knowledge base
Manually refresh the knowledge base dashboard
Audit and clean up knowledge base state — archive completed work, fix inconsistencies
Classify raw content and route it to the appropriate knowledge base location
Process a meeting transcript — extract decisions, action items, and key discussion points into structured vault entries
View, update, review, or create OKR cycles
| name | vault-checkin |
| description | Log a daily work check-in — records what was accomplished and syncs to task board |
| allowed-tools | ["vault_create_entry","vault_update_entry","vault_kanban","vault_dashboard","ask_user"] |
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.