← ClaudeAtlas

meeting-prep-cclisted

Generate a pre-meeting prep brief in Claude Code. Researches participants, pulls vault context, builds agenda, surfaces sharp questions. Use when user says "prep for this meeting," "I have a call with," "meeting tomorrow with," or "prep brief for [name/company]."
BrianRWagner/ai-marketing-claude-code-skills · ★ 309 · AI & Automation · score 74
Install: claude install-skill BrianRWagner/ai-marketing-claude-code-skills
# Meeting Prep (Claude Code Edition) Generate a meeting prep brief from your Obsidian vault. Researches participants, surfaces vault history, builds a prioritized agenda, and generates sharp questions. No autonomy — you run it, you get your brief. --- ## How to Use Open Claude Code in your vault directory and say: ``` Run the Meeting Prep skill. Meeting with [name] from [company]. Type: [sales/WRS/strategy/partnership/interview]. Time: [date/time]. ``` --- ## INTAKE Check that the user has provided: - Participant name(s) and company - Meeting type (WRS / Sales / Strategy / Partnership / Interview / Other) - Meeting time/date - Optional: prior notes, last meeting summary If meeting type is missing, ask: ``` What type of meeting is this? WRS client / Sales / Strategy / Partnership / Interview / Other ``` --- ## ANALYZE Run these steps in order. Capture all output before formatting the brief. ### Step 1 — Vault Search ```bash VAULT="${VAULT_PATH:-/root/obsidian-vault}" NAME="[PARTICIPANT_NAME]" COMPANY="[COMPANY_NAME]" echo "=== VAULT CONTEXT ===" grep -rl "$NAME\|$COMPANY" "$VAULT" \ --include="*.md" \ -not -path "*/.git/*" \ -not -path "*/.obsidian/*" \ | head -10 | while read f; do echo "--- ${f##$VAULT/} ---" grep -n "$NAME\|$COMPANY" "$f" | head -5 done ``` ### Step 2 — Prior Meeting Notes ```bash VAULT="${VAULT_PATH:-/root/obsidian-vault}" find "$VAULT/bambf/meeting-prep" -name "*.md" 2>/dev/null \ | xargs grep -l "$NAME\|$COMPANY" 2>/d