Skip to main content
ClaudeWave
Skill1.3k repo starsupdated today

minutes-weekly

# minutes-weekly This Claude Code skill synthesizes a week of recorded meetings and voice memos into a forward-looking executive brief. It identifies recurring themes across multiple meetings, tracks how decisions evolved or conflicted over the week, flags commitments that remain uncompleted, and highlights priorities for the following Monday. Use it when a user requests a weekly review, weekly summary, week recap, or outstanding items summary, or at the natural end of a work week when retrospection is needed.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/silverstein/minutes /tmp/minutes-weekly && cp -r /tmp/minutes-weekly/.opencode/skills/minutes-weekly ~/.claude/skills/minutes-weekly
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

## Skill Path

Before running helper scripts or opening bundled references, set:

```bash
export MINUTES_SKILLS_ROOT="$(git rev-parse --show-toplevel)/.opencode/skills"
export MINUTES_SKILL_ROOT="$MINUTES_SKILLS_ROOT/minutes-weekly"
```

# /minutes-weekly

Synthesize an entire week of meetings and voice memos into a forward-looking brief — themes, decision arcs, stale commitments, and what deserves attention Monday.

## How it works

This is a synthesis skill, not a command wrapper. It reads across all meetings, cross-references decisions and action items, and produces an intelligence brief.

### Phase 1: Gather this week's recordings

```bash
minutes list --limit 50
```

Filter to recordings from the last 7 days by checking the `date` field in each result's frontmatter. Do NOT use `minutes search` with a date string as the query — that searches file content, not dates.

For each recording from the past 7 days, read the full file with `Read` to get content.

**If zero recordings this week:**
Say: "No recordings found for the past 7 days. Nothing to synthesize."
Offer: "Want me to look at the past 2 weeks instead?"
Do NOT hallucinate a weekly summary.

**If only 1-2 recordings:**
Still produce the brief — it's shorter but still valuable. Note: "Light week — only [N] recordings."

### Phase 2: Theme extraction

Identify the 3-5 dominant themes across all meetings this week. A theme is a topic that appeared in 2+ meetings.

For each theme:
- Which meetings discussed it
- How the conversation evolved across meetings
- Whether a resolution was reached

Present as:

```
## This Week's Themes

### 1. Pricing (3 meetings)
- Mon: Case proposed $599 baseline
- Wed: Alex pushed back to annual billing
- Fri: Agreed on monthly billing experiment
- Status: RESOLVED (after 3 discussions)

### 2. Q2 Roadmap (2 meetings)
- Tue: Committed to April ship date
- Thu: Discussed pushing to May
- Status: CONFLICTING — not reconciled
```

### Phase 3: Decision evolution arcs

For every decision made this week, search for prior decisions on the same topic in the last 30 days:

```bash
minutes search "<topic>" --since <30-days-ago> --limit 20
```

Classify each decision:

- **STABLE** — Decision held across 2+ mentions → "Locked in"
- **VOLATILE** — Changed 2+ times in 14 days → "Still in flux"
- **CONFLICTING** — Two active contradictory decisions → "Needs reconciliation"
- **NEW** — First time this topic was decided → "Fresh"

Present as a table:

```
## Decision Arcs

| Decision | Status | Arc | Last Meeting |
|----------|--------|-----|-------------|
| Pricing: monthly billing experiment | VOLATILE | $599→annual billing→monthly billing | Fri w/ Alex |
| Hire senior eng by Q2 | STABLE | Set Mar 10, held | Tue w/ Case |
| Q2 ship date | CONFLICTING | April vs May | Thu w/ team |
```

If there are CONFLICTING decisions, flag them prominently:
"⚠️ You have conflicting decisions on Q2 ship date. Monday is a good time to reconcile."

### Phase 4: Action item audit

Scan all meetings from the past 30 days for action items:

```bash
minutes actions
```

Or grep across meeting frontmatter for `action_items` with `status: open`.

Categorize:
- **Completed this week** — items that were marked done
- **Still open, on track** — items with future due dates
- **Overdue** — items with past due dates, still open
- **Assigned to others** — items others owe the user

Flag overdue items prominently:
"⚠️ 3 action items are overdue. The oldest is from Mar 10 (pricing doc for Alex)."

### Phase 4b: Relationship intelligence (from conversation graph)

If the `minutes` CLI is available, pull relationship data:

```bash
minutes people --json --limit 20
minutes commitments --json
```

From the people data, produce:

**Relationship changes this week:**
- Who you met with most this week (compare to their usual frequency)
- Anyone new you met for the first time
- Anyone on your "losing touch" list

**Stale commitments by person:**
- Group overdue/stale commitments by person name
- Include the meeting they came from and the original due date
- Prioritize by age (oldest first)

Present as:

```
## Relationship Pulse

**Most active:** Sarah Chen (3 meetings this week, usually 1/week)
**New contact:** Jordan Mills (first meeting Thursday)
**Losing touch:** Alex Kumar (5 meetings total, last seen 3 weeks ago)

### Stale Commitments
- **Alex Kumar:** Send tech spec (due Mar 20, from Q2 Planning)
- **mat:** Pull March revenue numbers (due Mar 22, from Investor Update Prep)
```

If no graph data is available (minutes people returns empty), skip this phase silently. It's additive, not required.

### Phase 5: Unresolved preps

Scan `~/.minutes/preps/` for prep files from this week that were never followed by a debrief:

```bash
ls ~/.minutes/preps/ 2>/dev/null
```

For each prep file from the last 7 days: check if a meeting with that person occurred after the prep date. If the user prepped but never debriefed:

"You prepped for a call with Alex on Tuesday but I don't see a debrief. Did the call happen?"

This catches meetings that happened but weren't recorded, or recordings that weren't processed.

### Phase 6: Forward brief

Produce a "what deserves your attention Monday" section:

Before deciding how to order the weekly output, check:

```bash
node "$MINUTES_SKILLS_ROOT/_runtime/hooks/lib/minutes-learn-cli.mjs" get-presentation-focus weekly
```

If the result is:
- `decisions-first` → lead with Decision Arcs and unresolved conflicts before commitments
- `commitments-first` → lead with Action Item Audit / stale commitments before decision arcs
- `memo-heavy` → surface voice memos and idea capture much more prominently in the synthesis

Use this concrete ordering:

- `decisions-first`
  1. Decision Arcs
  2. This Week's Themes
  3. Action Item Audit / stale commitments
  4. Relationship Pulse
  5. Attention Monday

- `commitments-first`
  1. Action Item Audit / stale commitments
  2. Decision Arcs
  3. This Week's Themes
  4. Relationship Pulse
minutes-briefSkill

Fast non-interactive briefing before any meeting — auto-detects your next calendar event, pulls relationship history, surfaces open commitments, and produces a one-page brief in under 30 seconds. Use this whenever the user says "brief me", "give me a quick brief", "what's coming up", "background on my next call", "who am I meeting next", "brief me on Sarah", "I have a call in 10 min", "quick rundown", or right before walking into a meeting. Different from /minutes-prep — brief is the fast hook-fireable version that doesn't ask questions and doesn't set goals. Use brief when speed matters; use prep when the user wants to think hard about goals first.

minutes-cleanupSkill

Manage old recordings — find large files, archive old meetings, delete processed originals. Use when the user says "clean up recordings", "how much space are meetings using", "delete old recordings", "archive meetings", "manage meeting storage", or asks about disk space from minutes.

minutes-debriefSkill

Post-meeting debrief — analyzes what happened, compares outcomes to your prep intentions, tracks decision evolution. Use when the user says "debrief", "what just happened in that meeting", "what did we decide", "debrief that call", "post-meeting", "what changed", or right after stopping a recording.

minutes-graphSkill

Cross-meeting entity graph — query who/what/when across all your meetings as structured data, with co-occurrence and cross-entity queries that text search can't answer. Use whenever the user says "show me everyone who mentioned X", "all mentions of Y across meetings", "who knows about Z", "graph", "across all meetings", "entity search", "first time we talked about", "trend for X over time", "who's been mentioned alongside", or wants to query meetings as an index rather than full-text search. Builds a JSON entity index on first run (one-time slow), then answers queries instantly. Surface this skill for relationship intelligence, due diligence, or any "across all my history" question that text search alone can't answer.

minutes-ideasSkill

Surface recent voice memos and ideas captured from any device. Use when the user asks "what ideas did I have?", "what were my recent memos?", "what did I record while walking?", or wants to recall a captured thought.

minutes-ingestSkill

Extract facts from meetings and update your knowledge base — person profiles, chronological log, and index. Use when the user asks "ingest my meetings", "update my knowledge base", "extract facts from meetings", "sync meetings to wiki", "backfill knowledge", or wants their PARA/Obsidian/wiki profiles updated from conversation data.

minutes-lintSkill

Health-check your meeting knowledge for contradictions, stale commitments, and decision conflicts. Use when the user asks "any conflicts in my meetings", "check for stale action items", "lint my meetings", "consistency check", "are there contradictions", or wants to audit their decision history.

minutes-listSkill

List recent meetings and voice memos. Use when the user asks "what meetings did I have", "show my recent recordings", "any meetings today", "list my voice memos", or wants an overview of their meeting history. Also use when they need to find a specific meeting by browsing rather than searching.