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.
npx skills add silverstein/minutes --skill minutes-list --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# /minutes-list Show recent meetings and voice memos, sorted newest-first. ## Usage ```bash # 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_type`, `path` Treat each returned `path` as a hint, not a retained capability. To read a specific meeting, reauthorize it through `minutes get "<exact path>" --json`, require exit status 0, and use only that result. Never reopen a result path with the host `Read` tool. ## Gotchas - **Returns nothing on first use** — If `~/meetings/` doesn't exist yet or has no `.md` files, list returns an empty array. This is normal before the first recording. - **JSON goes to stdout, human-readable to stderr** — If you pipe the output (e.g., `minutes list | jq`), you get JSON only. The human-readable table goes to stderr. - **In-progress recordings don't appear** — List only shows completed, processed recordings. Use `minutes status` to check if something is currently recording. - **Sorted by date in frontmatter, not file modification t
- Usage
- Output
- Gotchas
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
What does the minutes-list skill do?
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.
How do I install it?
Run `npx skills add silverstein/minutes --skill minutes-list --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From silverstein/minutes, a repository with 1,410 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
