meeting-prep

meeting-prep is a skill for Claude Code from sonichi/sutando. It costs 35 tokens per session (656 once invoked), scanned A, original, MIT.

A meeting briefing tool that gathers information about an upcoming calendar meeting, its attendees, and recent related email conversations. It can also prepare talking points and an agenda.

In plain words
What is it for?
Use it before an upcoming meeting or on demand to understand who is attending, review recent context, and prepare discussion points.
Why use it?
It removes the need to search the calendar, contacts, email, and sometimes the web separately before a meeting.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

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.

agentmods
npx agentmods add skills/sonichi/sutando/meeting-prep
Any agent
npx skills add sonichi/sutando --skill meeting-prep
Clone the repo
git clone --depth 1 https://github.com/sonichi/sutando

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 meeting-prep

README.md
[![agentmods](https://agentmods.dev/badge/skills/sonichi/sutando/meeting-prep.svg)](https://agentmods.dev/skills/sonichi/sutando/meeting-prep)
Your own site
<a href="https://agentmods.dev/skills/sonichi/sutando/meeting-prep"><img src="https://agentmods.dev/badge/skills/sonichi/sutando/meeting-prep.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 656 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00035 $0.00656
Opus 5 $0.00017 $0.00328
Sonnet 5 $0.00007 $0.00131
Haiku 4.5 $0.00003 $0.00066

Measured 6d ago against content hash d28eb8560aed, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

meeting-prep 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 6d 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/meeting-prep/SKILL.md · 81 lines

How it starts

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

Meeting Prep

Prepare a briefing for an upcoming meeting — attendee info, recent context, and talking points.

Usage: /meeting-prep [meeting name or time]

ARGUMENTS: $ARGUMENTS

How it works

  1. Find the meeting. If ARGUMENTS specifies a meeting name or time, find it. Otherwise, find the next meeting starting within 60 minutes.
$CLAUDE_CONFIG_DIR/skills/google-calendar/scripts/google-calendar.py events list \
  --time-min NOW --time-max NOW_PLUS_60MIN
  1. Extract attendees. From the calendar event, get the list of attendee emails.

  2. Look up each attendee. For each attendee (skip the owner):

    a. Contacts — search by email:

    python3 $CLAUDE_CONFIG_DIR/skills/macos-tools/scripts/contacts.py search "[email protected]"
    

    b. Recent emails — search Gmail for recent threads with this person:

    gws gmail users messages list --params 'q=from:[email protected] OR to:[email protected] newer_than:14d'
    

    Read the top 2-3 threads to extract context.

    c. Web presence — if the person is external or unfamiliar, do a quick web search for their name + company to understand their role.

  3. Build the brief. Generate a concise prep document:

Meeting: [title]
Time: [start] - [end]
Location: [link or room]

Attendees:
- [Name] ([role/company]) — [1-line context from recent emails]
- ...

Recent context:
- [Key thread 1 summary]
- [Key thread 2 summary]

Suggested talking points:
- [Based on recent threads and meeting title]
- ...

Action items to follow up on:
- [Any commitments from prior meetings/emails]
  1. Deliver. Write to results/meeting-prep-{timestamp}.txt so the voice agent can speak it. Also write to notes/meeting-prep-{date}-{title-slug}.md for reference.

Auto-scheduling

The proactive loop should check for meetings starting in the next 30-45 minutes. If one is found and no prep exists yet, run this skill automatically. Add this check to the proactive loop:

Read the full file on GitHub · 81 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 81 lines · 35 tokens per session scan A d28eb8560aed

Subscribe to this mod's changes

meeting-prep is a skill published in the GitHub repository sonichi/sutando (392 stars, last pushed today), licensed MIT. It adds 35 tokens to every session and 656 once invoked, about $0.0002 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-08-30.