AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Meeting Search

skill-meteora-pro-devboy-tools-meeting-search · by meteora-pro

Find meetings by keyword, participant, host, or date range and surface a short, rankable hit list.

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-meteora-pro-devboy-tools-meeting-search

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-meteora-pro-devboy-tools-meeting-search)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Meeting Search? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

meeting-search

Answer "which meeting did we talk about X?" without making the user scroll through a calendar. The skill narrows a corpus of meeting notes down to a short hit list the user can act on — drill-down into a single meeting's metadata is a follow-up step, and pulling the full transcript is the job of meeting-transcript.

When to use

  • The user names a topic, keyword, or phrase ("the migration call", "anything about SSO") and wants to locate the meeting.
  • The user wants a window of recent meetings ("what did we have this week?", "list calls with Alice last month").
  • Before running meeting-to-tasks or meeting-transcript, confirm the target meeting id.

If no search term is given — just a window or a participant — skip the keyword search and go straight to get_meeting_notes with the filter.

Procedure

1. Keyword search

Use search_meeting_notes when the user supplied a topic. All filters (date range, participants, host) combine with the keyword on the provider side — there is no client-side filter.

devboy tools call search_meeting_notes '{
  "query": "migration",
  "from_date": "2026-03-01T00:00:00Z",
  "to_date":   "2026-04-17T00:00:00Z",
  "limit": 20
}'

Dates are ISO 8601. The tool caps limit at 50 per call; paginate with offset if you need a deeper sweep.

2. Filter-only listing (no keyword)

devboy tools call get_meeting_notes '{
  "from_date": "2026-04-10T00:00:00Z",
  "participants": ["alice@example.com"],
  "limit": 20
}'

Use this for "last N days" or "calls with Alice" — no keyword means do not invent one.

3. Rank the hits

The provider returns meetings newest-first but is not topic-ranked. When several hits look plausible, resolve ties by:

  1. Recency — the user usually wants the most recent occurrence.
  2. Participant overlap — prefer meetings whose attendees match the user's context (the person they are collaborating with, the team they asked about).
  3. Keyword density — if the provider surfaces summary, keywords, or topics_discussed, a meeting that hits multiple of them is a stronger match than one that mentions the term in passing.

Present at most 5–10 candidates. If more exist, say so and offer to narrow by date or participant rather than dumping them all.

4. Drill down to one meeting

Once the user picks a hit, fetch its metadata for a short card — title, date, duration, participants, action-items count, a one-line summary:

devboy tools call get_meeting_notes '{
  "from_date": "",
  "to_date":   "",
  "limit": 5
}'

(There is no single-meeting "get by id" helper — narrow the date window and match on id.)

Success criteria

  • The user can name the meeting they meant without reading a transcript.
  • For every hit the agent shows, at minimum: title, date, 1-line summary or top keyword.
  • If zero hits come back, the skill suggests a broader filter (wider date range, different keyword) rather than inventing a meeting.

Guardrails

  • Do not dump transcripts here. A search result is metadata + a one-line summary. Full transcript retrieval lives in meeting-transcript.
  • Do not paraphrase the summary. Quote the provider's summary verbatim — it is short and PII-sensitive; rewording risks distortion.
  • Participants are emails. When the user says "calls with Alice", ask for the email before filtering — display names from the provider are not guaranteed unique.

Non-goals

  • Ranking by semantic similarity beyond what the provider returns. The tool is a keyword search, not a vector search.
  • Cross-provider search. Only the meeting-notes provider that is configured (e.g. Fireflies) is queried.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.