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.
install
source · Clone the upstream repo
git clone https://github.com/silverstein/minutes
manifest:
tooling/skills/sources/minutes-verify/skill.mdsource content
/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 "${CLAUDE_PLUGIN_ROOT}/skills/minutes-verify/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 | command exists on PATH |
| Model | At least one whisper model downloaded in or |
| Meetings dir | directory exists |
| Memos dir | directory exists |
| PID state | No stale PID file in |
| Audio input | At least one audio input device available (macOS only) |
| Config | exists (optional — defaults work fine) |
After verification
If any checks fail, tell the user exactly what to do:
- Binary missing →
in the minutes repo, then add to PATHcargo build --release - No model →
(recommended) orminutes setup --model small
(faster, lower quality)--model tiny - No meetings dir →
— will also be created on first recordingmkdir -p ~/meetings/memos - Stale PID →
— previous recording crashed without cleanuprm ~/.minutes/recording.pid - No audio input → Check System Settings > Sound > Input, ensure a microphone is selected
Gotchas
- The script is macOS-specific for the audio input check (uses
). On Linux, that check will be skipped.system_profiler - "Model not found" is the #1 setup issue — most people forget to run
after building.minutes setup - Config file is optional — if
doesn't exist, that's fine. Minutes uses compiled defaults. Only flag it as "not configured" (informational), not as an error.~/.config/minutes/config.toml