skills/obsidian/obsidian-meeting-prep/SKILL.md
Prepares meeting materials by gathering context from Obsidian vault, enriching with research, and creating comprehensive meeting documentation. Generates both internal prep notes with background and external agendas with structure, all saved as properly linked markdown notes in vault.
npx skillsauth add astoreyai/claude-skills obsidian-meeting-prepInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Prepares you for meetings by gathering context from your Obsidian vault, enriching it with research, and creating comprehensive meeting materials. Generates internal prep notes for attendees and external-facing agendas for meetings.
When asked to prepare for a meeting:
Collect essential information:
Meeting basics:
Participants:
Meeting purpose:
Context:
Project-related search:
# Find project notes
find /path/to/vault/projects -name "*project-name*"
# Search project folder
grep -r "relevant term" /path/to/vault/projects/project-name/
Previous meetings:
# Find meeting notes
find /path/to/vault/meetings -name "*topic*" -o -name "*project*"
# Recent meetings
find /path/to/vault/meetings -name "*.md" -mtime -30
Specifications and designs:
# Find specs
grep -l "type: specification" /path/to/vault/**/*.md
# Find designs
find /path/to/vault -path "*/designs/*" -name "*.md"
Tasks and issues:
# Find related tasks
grep -l "project: \[\[project-name\]\]" /path/to/vault/tasks/*.md
# Find open issues
grep -l "status: open" /path/to/vault/**/*.md | grep -i "issue\|bug"
Decision records:
# Find decisions
grep -l "type: decision" /path/to/vault/**/*.md
# Recent decisions for project
grep -l "project.*project-name" /path/to/vault/decisions/*.md
Dataview query:
TABLE type, updated, tags
FROM "projects" OR "meetings" OR "specs"
WHERE contains(file.name, "project-name")
OR contains(tags, "#project-tag")
SORT updated DESC
LIMIT 20
For each relevant note:
# Read note
cat /path/to/vault/path/to/note.md
Extract:
Organize information by relevance and importance.
Add context:
Anticipate questions:
Identify discussion points:
Generate background document for internal attendees:
touch /path/to/vault/meetings/prep/meeting-name-prep.md
Prep note structure:
---
type: meeting-prep
meeting: "[[meetings/meeting-name]]"
date: YYYY-MM-DD
project: "[[projects/project-name]]"
attendees:
- "[[people/person-1]]"
- "[[people/person-2]]"
tags:
- meeting-prep
- PROJECT-TAG
visibility: internal
---
# Meeting Prep: [Meeting Name]
> [!info] Meeting Details
> **Date**: YYYY-MM-DD HH:MM
> **Duration**: X hours
> **Location**: [Where/Link]
> **Attendees**: [[person-1]], [[person-2]]
## Purpose
Clear statement of meeting objectives.
## Background
### Project Context
Current state and relevant history.
- Status: [description]
- Recent changes: [what's new]
- Related: [[project-note]], [[spec-note]]
### Previous Discussions
Summary of relevant prior meetings.
- [[previous-meeting-1]]: Key outcomes
- [[previous-meeting-2]]: Decisions made
### Key Decisions
Important decisions affecting this meeting.
- [[decision-1]]: What was decided and why
- [[decision-2]]: Impact and implications
## Current Situation
### What's Working Well
Positive developments and progress.
### Challenges
Current obstacles and issues.
- Challenge 1: [[related-task]]
- Challenge 2: [[related-issue]]
### Open Questions
Unresolved issues needing discussion.
1. Question 1
2. Question 2
## Key Discussion Topics
### Topic 1: [Name]
**Context**: Background and why this matters
**Current state**: Where things stand
**Options**: Potential approaches
**Our position**: Recommended direction
### Topic 2: [Name]
[Continue for each major topic]
## Data & Metrics
Relevant numbers and trends.
- Metric 1: Current value (trend)
- Metric 2: Current value (trend)
## Stakeholder Perspectives
### Internal Team
- View 1: [[person-1]]'s perspective
- View 2: [[person-2]]'s perspective
### External Participants
- Client needs and concerns
- Partner requirements
## Potential Objections
Anticipated concerns and responses.
## Goals for This Meeting
What we want to achieve.
- [ ] Goal 1
- [ ] Goal 2
- [ ] Goal 3
## Materials to Reference
- [[spec-document]]
- [[design-mockups]]
- [[data-report]]
## Follow-Up Considerations
Potential next steps and actions.
## Quick Reference
Critical facts and figures for easy access.
See reference/prep-note-template.md for full template.
Generate external-facing agenda document:
touch /path/to/vault/meetings/agenda/meeting-name-agenda.md
Agenda structure:
---
type: meeting-agenda
date: YYYY-MM-DD
project: "[[projects/project-name]]"
duration: X hours
attendees:
- "[[people/internal-1]]"
- "External Person Name"
tags:
- agenda
- PROJECT-TAG
visibility: external
---
# Meeting Agenda: [Meeting Name]
**Date**: YYYY-MM-DD HH:MM
**Duration**: X hours
**Location**: [Where/Video link]
## Attendees
- Internal: [[person-1]], [[person-2]]
- External: Name 1, Name 2
## Meeting Objectives
1. Objective 1
2. Objective 2
3. Objective 3
## Agenda
### 1. Welcome & Introductions (5 min)
- Brief introductions
- Meeting objectives overview
### 2. Topic 1: [Name] (20 min)
**Objective**: What we want to accomplish
**Discussion points**:
- Point 1
- Point 2
- Point 3
**Desired outcome**: Decision/alignment on X
### 3. Topic 2: [Name] (15 min)
[Continue for each topic with time allocations]
### 4. Topic 3: [Name] (20 min)
...
### 5. Action Items & Next Steps (10 min)
- Summarize decisions
- Assign action items
- Schedule follow-up
## Background Materials
- [[Reference document 1]]
- [[Reference document 2]]
## Parking Lot
Topics for future discussion if time doesn't permit.
---
## Post-Meeting
Meeting notes: [[meetings/meeting-name-notes]]
Action items: [[tasks/meeting-name-actions]]
See reference/agenda-template.md for full template.
Create meeting folder:
meetings/
└── meeting-name/
├── prep.md # Internal prep note
├── agenda.md # External agenda
└── notes.md # Post-meeting notes (placeholder)
Link from project:
## Upcoming Meetings
- [[meetings/meeting-name/agenda]] - YYYY-MM-DD
Link in prep note and agenda:
## Related
- Prep notes: [[meetings/meeting-name/prep]]
- Agenda: [[meetings/meeting-name/agenda]]
- Project: [[projects/project-name]]
- Spec: [[specs/feature-spec]]
Focus: Options, trade-offs, recommendation Prep: Research alternatives, gather data, prepare analysis
Focus: Progress, blockers, timeline Prep: Collect metrics, identify issues, note changes
Focus: Ideas, possibilities, creativity Prep: Relevant examples, constraints, desired outcomes
Focus: Timeline, resources, milestones Prep: Current state, dependencies, capacity
Focus: Features, value, feedback Prep: Demo script, talking points, Q&A prep
Focus: Issue, root cause, solutions Prep: Problem analysis, attempted solutions, data
# Recent notes (last 30 days)
find /path/to/vault -name "*.md" -mtime -30
# Notes from specific month
find /path/to/vault -name "2025-10*.md"
# Notes mentioning specific person
grep -r "\[\[people/person-name\]\]" /path/to/vault/
# Multi-keyword search
grep -r "keyword1" /path/to/vault/ | grep "keyword2"
# All project-related content
find /path/to/vault/projects/project-name -name "*.md"
grep -r "project:.*project-name" /path/to/vault/
Internal Prep Note:
External Agenda:
After meeting, link prep to outcomes:
## Meeting Outcome
Actual meeting notes: [[meetings/meeting-name/notes]]
### Decisions Made
- Decision 1: [[decisions/decision-name]]
- Decision 2: [Description]
### Action Items Created
- [[tasks/action-1]]
- [[tasks/action-2]]
### Follow-Up Required
- [ ] Schedule follow-up meeting
- [ ] Update project plan
- [ ] Communicate to team
Upcoming meetings:
TABLE date, project, attendees
FROM "meetings"
WHERE type = "meeting-agenda"
AND date >= date(today)
SORT date ASC
Recent prep work:
LIST
FROM "meetings"
WHERE type = "meeting-prep"
SORT file.mtime DESC
LIMIT 10
Meetings by project:
TABLE date, type
FROM "meetings"
WHERE contains(string(project), "project-name")
SORT date DESC
"Can't find relevant context":
"Too much information":
"Participants from different contexts":
"External participants need context":
scripts/find_meeting_context.py: Automated context gathering
scripts/generate_agenda.py: Generate agenda from template
scripts/meeting_summary.py: Summarize related notes
scripts/extract_action_items.py: Pull action items from notes
See examples/ for complete workflows:
content-media
# YouTube Transcriber Skill Extract transcripts from YouTube videos, playlists, and channels with automatic intelligent processing. ## Overview One unified command that intelligently assesses input and handles everything—single videos, batch files, playlist expansion, channel extraction. No need to choose between commands; it figures out what to do. ## Capabilities - **Auto-Detect Input**: Single URL, file of URLs, playlist, channel - **Smart Expansion**: Automatically expands playlists/cha
development
# Trading Analysis Skill **Version**: 1.0.0 **Category**: Financial Analysis / Trading **Author**: Claude Code **Last Updated**: November 22, 2025 ## Overview Comprehensive trading performance analysis and edge identification system for Interactive Brokers accounts. Analyzes CSV statements to identify trading patterns, position sizing issues, time-of-day edges, and risk management problems. ## Features ### 1. **CSV Statement Parsing** - Parse Interactive Brokers activity statements (CSV for
development
# System Health Check & Cleanup Skill **Version**: 1.0.0 **Category**: System Administration / Performance Optimization **Author**: Claude Code **Last Updated**: November 22, 2025 ## Overview Automated system health monitoring and cleanup workflow. Diagnoses performance issues, identifies resource bottlenecks, fixes orphaned services, kills stale processes, and cleans cache bloat. Designed for archimedes (32c/125GB) but works on any Linux system. ## Features ### 1. **System Diagnostics** -
testing
Unified worklog system. Synthesizes session work into daily markdown files with clean bullet points. Supports weekly rollups for Slack #progress sharing. Replaces fragmented checkpoint/session-state/weekly-notes systems.