$npx -y skills add chacosoldier/compabob --skill morning-briefAssemble a start-of-day briefing — priorities, what is due, what is owed, today's meetings, and anything overdue. Use for "/morning-brief", "what's on my plate", "brief me", or at the start of the first session of the day.
| 1 | # Morning Brief |
| 2 | |
| 3 | Produce one scannable briefing that tells the user what matters today. |
| 4 | |
| 5 | ## Steps |
| 6 | |
| 7 | 1. **Date.** Confirm today's date (the `inject-now` hook provides it). |
| 8 | 2. **Priorities.** Read today's daily note `vault/Daily/YYYY-MM-DD.md` if it exists, and yesterday's for anything carried over. Pull the `## Priorities` section. |
| 9 | 3. **Tasks.** Scan the vault and `memory/topics/brief-queue.md` for items due today or overdue. The `crm-relationships` and `comms-meetings` agents can supply follow-ups owed and owing. |
| 10 | 4. **Meetings.** If a calendar integration is enabled, list today's meetings with one line of context each. If not, say so and skip. |
| 11 | 5. **Brief queue.** Include anything captured via the `daily-copilot` "remember this" flow for today, then clear those entries. |
| 12 | 6. **Synthesize.** |
| 13 | |
| 14 | ## Output |
| 15 | |
| 16 | Lead with the single most important thing about today, in one sentence. Then: |
| 17 | |
| 18 | ``` |
| 19 | ## Morning Brief — <date> |
| 20 | |
| 21 | **Today's focus**: [the one thing] |
| 22 | |
| 23 | **Priorities** |
| 24 | - ... |
| 25 | |
| 26 | **Due / overdue** |
| 27 | - ... |
| 28 | |
| 29 | **Meetings** |
| 30 | - HH:MM [title] — [one line of context] |
| 31 | |
| 32 | **Owed to you / owed by you** |
| 33 | - ... |
| 34 | ``` |
| 35 | |
| 36 | Keep it short. If a section is empty, omit it rather than padding. End with no closing line. |