minutes-setup

minutes-setup is a skill for Codex from silverstein/minutes. It costs 67 tokens per session (773 once invoked), scanned A, original, MIT.

A guided first-time setup for Minutes, a local meeting-recording and transcription tool.

In plain words
What is it for?
Use it to install or configure Minutes, choose and download a Whisper speech model, build the program when needed, and prepare it for recording.
Why use it?
It checks what is already configured and walks through missing pieces such as the speech-recognition model, folders, and audio input.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: names the AskUserQuestion tool; installed under .agents/ (shared by several agents).

About the project

Minutes is an open-source, local-first meeting recorder that transcribes meetings, calls, and voice memos on the device and stores the results as Markdown files. It is for people who want their meeting records available to Claude Code, Codex, Cursor, and other MCP clients without uploading them. The catalogue add-ons extend agent workflows for querying and using those local meeting files.

silverstein/minutes · 1,467 stars · on GitHub · useminutes.app

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/silverstein/minutes/minutes-setup
Any agent
npx skills add silverstein/minutes --skill minutes-setup
Clone the repo
git clone --depth 1 https://github.com/silverstein/minutes

Made for: Codex.

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 minutes-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/silverstein/minutes/minutes-setup.svg)](https://agentmods.dev/skills/silverstein/minutes/minutes-setup)
Your own site
<a href="https://agentmods.dev/skills/silverstein/minutes/minutes-setup"><img src="https://agentmods.dev/badge/skills/silverstein/minutes/minutes-setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 773 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.00067 $0.00773
Opus 5 $0.00034 $0.00387
Sonnet 5 $0.00013 $0.00155
Haiku 4.5 $0.00007 $0.00077

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

Security

Grade A, and why

minutes-setup 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.

.agents/skills/minutes/minutes-setup/SKILL.md · 97 lines

How it starts

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

Skill Path

Before running helper scripts or opening bundled references, set:

export MINUTES_SKILLS_ROOT="$(git rev-parse --show-toplevel)/.agents/skills/minutes"
export MINUTES_SKILL_ROOT="$MINUTES_SKILLS_ROOT/minutes-setup"

/minutes-setup

Walk the user through first-time Minutes setup, step by step.

Setup steps

1. Check current state first

Run the verify skill's script to see what's already done:

bash "$MINUTES_SKILLS_ROOT/minutes-verify/scripts/verify-setup.sh"

Skip any steps that already pass.

2. Build the binary (if needed)

cd ~/Sites/minutes
export CXXFLAGS="-I$(xcrun --show-sdk-path)/usr/include/c++/v1"
cargo build --release

The binary lands at target/release/minutes. The user should add it to their PATH or create a symlink.

3. Download a whisper model

Ask the user which quality level they want using AskUserQuestion:

Model Size Speed Quality Best for
tiny 75 MB ~10x real-time Low Quick tests, short memos
small 466 MB ~4x real-time Good Daily meetings (recommended)
medium 1.5 GB ~2x real-time Great Important meetings, accents
large-v3 3.1 GB ~1x real-time Best Legal, medical, foreign language

Then run:

minutes setup --model <chosen-model>

4. Create directories

mkdir -p ~/meetings/memos

5. Audio input (if recording calls)

For in-person conversations, the built-in mic works fine. For Zoom/Meet/Teams:

  1. Install BlackHole: brew install blackhole-2ch
  2. Open Audio MIDI Setup (Spotlight → "Audio MIDI Setup")
  3. Create a Multi-Output Device combining speakers + BlackHole
  4. Set the Multi-Output Device as system output
  5. Set BlackHole as Minutes' input (or system default input)

See minutes-record/references/audio-devices.md for the full guide.

6. Verify

Run verify again to confirm everything passes:

bash "$MINUTES_SKILLS_ROOT/minutes-verify/scripts/verify-setup.sh"

Read the full file on GitHub · 97 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 · 97 lines · 67 tokens per session scan A 3a607ff900a6

Subscribe to this mod's changes

minutes-setup is a skill published in the GitHub repository silverstein/minutes (1,467 stars, last pushed today), licensed MIT. It adds 67 tokens to every session and 773 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-08-30.

Related

Other skills, from other repositories

scheduling

Set up recurring or scheduled work — anything the user wants run on a schedule, repeatedly, or at a future time ("every morning", "each weekday at 9am", "daily digest", "weekly report", "remind me", "run this on a cron"). Teaches how to author a durable Vexa Scheduler routine that survives restarts. Use this instead…

Vexa-ai/vexa · 91 tokens

steno

Make the agent aware of the user's Steno meeting notes and able to pull them in on request. Steno (https://github.com/stenolabs/stenoai) records, transcribes, and summarizes meetings entirely on-device, storing each as a Markdown summary plus a transcript. This skill locates that store cross-platform (macOS, Windows…

stenolabs/stenoai · 300 tokens

meeting_notes

Structure raw meeting notes into actionable minutes with follow-ups.

siddsachar/row-bot · 14 tokens

granola-to-steno

Sync Granola meeting notes into Steno's file-based store. Reads recent meetings from the Granola MCP (titles, dates, participants, AI summaries, verbatim transcripts) and regenerates Steno's output/summary.md and transcripts/transcript.txt files in a target folder (e.g. an iCloud Drive directory). The operation is…

stenolabs/stenoai · 163 tokens

meeting-minutes

Meeting notes processor with action item extraction.

modimihir07/agentic-os · 11 tokens

design-team-meeting-structure

Use when a team's meetings feel like the wrong type of conversation for the decisions being made, when meetings are too frequent or too infrequent, or when team members feel their time is wasted — to design the right meeting types, cadences, and facilitation practices for how the team actually works.

jeffreytse/grimoire-core · 66 tokens