minutes-list
GitHub列出最近的会议和语音备忘录,支持按类型筛选及限制数量。用于帮助用户浏览或查找特定会议历史,提供结构化数据以便后续处理。
Trigger Scenarios
Install
npx skills add silverstein/minutes --skill minutes-list -g -y
SKILL.md
Frontmatter
{
"name": "minutes-list",
"description": "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.",
"compatibility": "opencode"
}
/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_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.mdfiles, 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 statusto check if something is currently recording. - 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.
Version History
-
a9a4a8b
Current 2026-08-20 02:22
新增安全策略,强制限制对话出口(egress),要求通过特定命令重新授权并验证退出状态后才能读取文件路径,禁止直接使用通用读取工具访问结果路径。
- 1dfcb30 2026-07-25 08:27


