Minutes minutes-list
List recent meetings and voice memos. Use when the user asks "what meetings did I have", "show my recent recordings", "any meetings today", "list my voice memos", or wants an overview of their meeting history. Also use when they need to find a specific meeting by browsing rather than searching.
install
source · Clone the upstream repo
git clone https://github.com/silverstein/minutes
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/silverstein/minutes "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/plugins/minutes/skills/minutes-list" ~/.claude/skills/silverstein-minutes-minutes-list-cd64c6 && rm -rf "$T"
manifest:
.claude/plugins/minutes/skills/minutes-list/SKILL.mdsource content
/minutes-list
Show recent meetings and voice memos, sorted newest-first.
Usage
# List last 10 recordings (default) minutes list # Show more minutes list --limit 20 # Only voice memos minutes list -t memo # Only meetings minutes list -t meeting
Output
Human-readable list to stderr, JSON array to stdout. Each entry has:
,title
,date
,content_typepath
To read a specific meeting's full transcript, use
Read on its path.
Gotchas
- Returns nothing on first use — If
doesn't exist yet or has no~/meetings/
files, list returns an empty array. This is normal before the first recording..md - JSON goes to stdout, human-readable to stderr — If you pipe the output (e.g.,
), you get JSON only. The human-readable table goes to stderr.minutes list | jq - In-progress recordings don't appear — List only shows completed, processed recordings. Use
to check if something is currently recording.minutes status - Sorted by date in frontmatter, not file modification time — If you manually edit a meeting file, it won't change its position in the list.