$npx -y skills add chacosoldier/compabob --skill weekly-reviewEnd-of-week review — what got done, what slipped, decisions made, and next week's top 3 priorities. Use for "/weekly-review", "end-of-week review", "what happened this week", or on the last working day of the week.
| 1 | # Weekly Review |
| 2 | |
| 3 | Produce a terse end-of-week summary that captures what changed and what is still owed. |
| 4 | |
| 5 | ## Steps |
| 6 | |
| 7 | 1. **Determine the Week.** Confirm the ISO week (e.g. `2026-W21`). Use `date` or the `inject-now` hook. |
| 8 | |
| 9 | 2. **Gather inputs.** Read: |
| 10 | - `vault/Daily/` — all daily notes from Monday through today (or the last 7 days). Pull `## Priorities`, `## Completed`, and any `## Reflection` sections. |
| 11 | - `vault/Decisions/` — any decision records dated this week. |
| 12 | - `memory/topics/` — entries modified this week (check `memory/MEMORY.md` for the index). |
| 13 | - If meeting notes exist in `vault/`, scan recent ones for open action items. |
| 14 | |
| 15 | 3. **Synthesize five sections:** |
| 16 | |
| 17 | - **Done** — what was completed (shipped, merged, decided, closed). |
| 18 | - **Slipped** — what was planned but not done; carry-forward items. |
| 19 | - **Decisions** — key decisions made (link to `vault/Decisions/` files). |
| 20 | - **Owed to others** — commitments the user owes to someone else. |
| 21 | - **Owed to self** — commitments the user made to themselves. |
| 22 | |
| 23 | 4. **Propose top 3 priorities for next week.** Base them on the slip-list and the most consequential pending commitments. One sentence each. |
| 24 | |
| 25 | 5. **Write to vault** (optional). Ask the user; if they approve, write to `vault/Weekly/YYYY-WW.md`. |
| 26 | |
| 27 | ## Output |
| 28 | |
| 29 | Lead with one sentence summarising the week. Then: |
| 30 | |
| 31 | ``` |
| 32 | ## Weekly Review — YYYY-WW |
| 33 | |
| 34 | **Done** |
| 35 | - ... |
| 36 | |
| 37 | **Slipped** |
| 38 | - ... |
| 39 | |
| 40 | **Decisions** |
| 41 | - ... |
| 42 | |
| 43 | **Owed to others** |
| 44 | - ... |
| 45 | |
| 46 | **Owed to self** |
| 47 | - ... |
| 48 | |
| 49 | ### Next week's top 3 |
| 50 | 1. ... |
| 51 | 2. ... |
| 52 | 3. ... |
| 53 | ``` |
| 54 | |
| 55 | Terse and scannable. Omit any empty section. End with no closing line. |