Minutes verify
Skill silverstein/minutes/.agents/skills/minutes/minutes-verify
Verify that Minutes is properly set up and working — model downloaded, mic accessible, directories exist, no stale state. Use when the user says "is minutes working", "check my setup", "verify minutes", "test recording setup", "why isn't minutes working", "minutes health check", or after running setup for the first time.From its SKILL.md
npx -y skills add silverstein/minutes --skill minutes-verifyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
3.1 KB, 666 tokens by cl100k_base, as published. Nobody here has run it
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-verify"
/minutes-verify
Run a health check on the Minutes installation to confirm everything is working.
How to verify
Run the verification script included with this skill:
bash "$MINUTES_SKILL_ROOT/scripts/verify-setup.sh"
The script checks each component and outputs a pass/fail status for each. Read the output and report results to the user.
What gets checked
| Check | What it verifies |
|---|---|
| Binary | minutes command exists on PATH |
| Model | At least one whisper model downloaded in ~/.minutes/models/ or ~/.cache/whisper/ |
| Meetings dir | ~/meetings/ directory exists |
| Memos dir | ~/meetings/memos/ directory exists |
| PID state | No stale PID file in ~/.minutes/recording.pid |
| Audio input | CLI-context audio input visibility (macOS only; desktop readiness is authoritative for the signed app) |
| Config | ~/.config/minutes/config.toml exists (optional — defaults work fine) |
| Spotlight privacy | macOS .metadata_never_index markers exist for ~/.minutes and ~/meetings when those directories exist |
After verification
If any checks fail, tell the user exactly what to do:
- Binary missing →
cargo build --releasein the minutes repo, then add to PATH - No model →
minutes setup --model small(recommended) or--model tiny(faster, lower quality) - No meetings dir →
mkdir -p ~/meetings/memos— will also be created on first recording - Stale PID →
rm ~/.minutes/recording.pid— previous recording crashed without cleanup - Audio input warning → Treat as CLI-context-only. If the signed desktop app's Readiness Center shows Audio input/Microphone as ready, trust the desktop app identity.
- Spotlight privacy warning → Open the desktop app or run
minutes setupso Minutes can recreate the.metadata_never_indexmarkers.
Gotchas
- The script is macOS-specific for the audio input check (uses
system_profiler). On Linux, that check will be skipped. On macOS, shell-context checks can disagree with the signed desktop app; use the desktop Readiness Center for TCC-sensitive truth. - "Model not found" is the #1 setup issue — most people forget to run
minutes setupafter building. - Config file is optional — if
~/.config/minutes/config.tomldoesn't exist, that's fine. Minutes uses compiled defaults. Only flag it as "not configured" (informational), not as an error. - Spotlight privacy uses folder markers — Minutes verifies
.metadata_never_index; it does not disable Spotlight indexing for the whole user volume.
What ships with it: 2 files
3.9 KB alongside SKILL.md, 1 of them executable
agents/
- openai.yaml245 B
scripts/
- verify-setup.shruns3.7 KB
Gives 0 of the 12 instructions most quality gates skills give in 666 tokens
Counted across 1,524 of the 2,830 authors here whose files we hold, read 2026-09-06
- Read full output and check exit codein 45 of 1524, across 40 files
- Verify output confirms the claimin 44 of 1524, across 39 files
- Identify the command that proves the claimin 43 of 1524, across 39 files
- Execute the full verification commandin 36 of 1524, across 30 files
- Produce a verification reportin 34 of 1524, across 18 files
- Review git diff changesin 30 of 1524, across 16 files
- Fix build failures immediatelyin 29 of 1524, across 9 files
- Group findings by severityin 28 of 1524
- State claim only with evidencein 27 of 1524, across 22 files
- Verify regression tests with red-green cyclein 26 of 1524, across 22 files
- Run the full test suitein 26 of 1524, across 25 files
- Run test suite with coveragein 25 of 1524, across 10 files
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.