minutes-search

Solid

Search past meeting transcripts and voice memos for specific topics, people, decisions, or ideas. Use this whenever the user asks "what did we discuss about X", "find that meeting where we talked about Y", "what did Alex say", "did we decide on", "what was that idea about", or any question that could be answered by searching their meeting history. Also use for "do I have any notes about" or "check my meetings for".

AI & Automation 1,239 stars 131 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /minutes-search Find information across all meeting transcripts and voice memos. ## Usage ```bash # Basic search minutes search "pricing strategy" # Filter to just voice memos minutes search "onboarding idea" -t memo # Filter to just meetings minutes search "sprint planning" -t meeting # Date filter + limit minutes search "API redesign" --since 2026-03-01 --limit 5 ``` ## Flags | Flag | Description | |------|-------------| | `-t, --content-type <meeting\|memo>` | Filter by type | | `--since <date>` | Only results after this date (ISO format, e.g., `2026-03-01`) | | `-l, --limit <n>` | Maximum results (default: 10) | ## Output Returns JSON to stdout with an array of matches. Each result includes: - `title` — Meeting or memo title - `date` — When it was recorded - `content_type` — "meeting" or "memo" - `snippet` — The line containing the match - `path` — Full path to the markdown file Human-readable output goes to stderr. To read the full transcript of a match, use `cat <path>` on any result's path. ## How search works Search is case-insensitive and matches against both the transcript body and the YAML frontmatter title. It walks all `.md` files in `~/meetings/` (including the `memos/` subfolder). For richer semantic search, users can configure QMD as the search engine in `~/.config/minutes/config.toml`: ```toml [search] engine = "qmd" qmd_collection = "meetings" ``` ## Search coaching When the user's search query is vague or too broad, push back before runnin...

Details

Author
silverstein
Repository
silverstein/minutes
Created
2 months ago
Last Updated
2 days ago
Language
Rust
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

minutes-list

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.

1,239 Updated 2 days ago
silverstein
AI & Automation Solid

minutes-ideas

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.

1,239 Updated 2 days ago
silverstein
AI & Automation Solid

minutes-note

Add a note to the current recording or annotate a past meeting. Use whenever the user says "note that", "remember this", "mark this as important", "add a note about", "annotate the meeting", or wants to capture a thought during or after a recording. Plain text input — no markdown needed.

1,239 Updated 2 days ago
silverstein
AI & Automation Solid

memory-recall

Search and recall relevant memories from past sessions via memsearch. Use when the user's question could benefit from historical context, past decisions, debugging notes, previous conversations, or project knowledge -- especially questions like 'what did I decide about X', 'why did we do Y', or 'have I seen this before'. Also use when you see `[memsearch] Memory available` hints injected via SessionStart or UserPromptSubmit. Typical flow: search for 3-5 chunks, expand the most relevant, optionally deep-drill into original transcripts via the anchor format. Skip when the question is purely about current code state (use Read/Grep), ephemeral (today's task only), or the user has explicitly asked to ignore memory.

1,872 Updated 2 days ago
zilliztech
AI & Automation Solid

mem-search

Search claude-mem's persistent cross-session memory database. Use when user asks "did we already solve this?", "how did we do X last time?", or needs work from previous sessions.

79,783 Updated yesterday
thedotmack