meetings-search

meetings-search is a skill for Claude Code from flonat/flonat-research. It costs 56 tokens per session (1,081 once invoked), scanned A, original, MIT.

A search tool for meeting transcripts and voice memos. It finds mentions of people, topics, decisions, commitments, or ideas in recorded conversations.

In plain words
What is it for?
Use it to locate past discussions and then open the full transcript for context.
Why use it?
It removes the need to remember which meeting contained a particular detail or read every transcript from the beginning.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: $skill-name invocation.

Good fit Use it to locate past discussions and then open the full transcript for context.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/flonat/flonat-research/meetings-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add flonat/flonat-research --skill meetings-search
Clone the repo
git clone --depth 1 https://github.com/flonat/flonat-research

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for meetings-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/flonat/flonat-research/meetings-search/github.svg)](https://agentmods.dev/skills/flonat/flonat-research/meetings-search)
Your own site
<a href="https://agentmods.dev/skills/flonat/flonat-research/meetings-search"><img src="https://agentmods.dev/badge/skills/flonat/flonat-research/meetings-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for meetings-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/flonat/flonat-research/meetings-search"><img src="https://agentmods.dev/badge/skills/flonat/flonat-research/meetings-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,081 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.01081
Opus 5 $0.00028 $0.00541
Sonnet 5 $0.00011 $0.00216
Haiku 4.5 $0.00006 $0.00108

Measured 8d ago against content hash 4884d550d549, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

meetings-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/meetings-search/SKILL.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Find information across all meeting transcripts and voice memos.

Usage

# 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 ~/vault/meetings/ (including the memos/ subfolder).

For richer semantic search, users can configure QMD as the search engine in ~/.config/minutes/config.toml:

[search]
engine = "qmd"
qmd_collection = "meetings"

Search coaching

When the user's search query is vague or too broad, push back before running it:

  • "everything" or "all meetings" → "That'll return hundreds of results. What specifically are you looking for? A person, a topic, or a decision?"
  • Single common word like "meeting" or "project" → "That's too broad. Can you narrow it — a person's name, a specific topic, or a date range?"
  • "that meeting" or "the one where" → "Help me narrow it down. Do you remember who was in the meeting, roughly when it was, or a specific thing that was said?"

Suggest search strategies based on what the user is looking for:

  • Finding a person's input → Search their name: minutes search "Alex"
  • Finding a decision → Search decision keywords: minutes search "decided" or minutes search "agreed"
  • Finding an idea → Search voice memos: minutes search "idea" -t memo
  • Finding something from a time range → Use --since: minutes search "pricing" --since 2026-03-01

Read the full file on GitHub · 86 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 86 lines · 56 tokens per session scan A 4884d550d549

Subscribe to this mod's changes

meetings-search is a skill published in the GitHub repository flonat/flonat-research (133 stars, last pushed 16d ago), licensed MIT. It adds 56 tokens to every session and 1,081 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories