minutes-ideas
GitHub用于检索用户最近14天通过语音备忘录记录的想法、笔记或提醒。支持跨设备上下文召回,通过CLI查询并展示摘要,帮助用户快速回顾和深入挖掘过往灵感与思考内容。
Trigger Scenarios
Install
npx skills add silverstein/minutes --skill minutes-ideas -g -y
SKILL.md
Frontmatter
{
"name": "minutes-ideas",
"description": "Surface recent voice memos and ideas captured from any device. Use when the user asks \"what ideas did I have?\", \"what were my recent memos?\", \"what did I record while walking?\", or wants to recall a captured thought."
}
/minutes-ideas — Recent Voice Memos & Ideas
Surface voice memos and ideas captured from any device in the last 14 days. This is the recall layer for the cross-device ghost context pipeline.
How to run
- Search for recent voice memos using the
minutesCLI:
minutes list --content-type memo --limit 20
-
Require exit status 0 and use the JSON written to stdout. If the CLI is unavailable or fails, report the memo source unavailable; never scan the memo directory directly.
-
Present the memos as a clean list:
- Date, title, duration, device (if from iPhone)
- Ask: "Want to dig into any of these?"
-
If the user picks one, run
minutes get "<exact path>" --json, require exit status 0, and present only the returned transcript/summary. Never reopen the list path through the host filesystem.
Ghost Context
These memos were captured on the user's phone (or Mac) and automatically transcribed by the Minutes watcher. They may contain ideas, thoughts, observations, or reminders that the user recorded while away from their desk.
When the user asks "what was that idea I had while walking?" — search these memos first, then broaden to full meeting search if needed.
Version History
-
a9a4a8b
Current 2026-08-20 02:19
废弃直接扫描本地文件系统的降级方案,强制要求通过minutes CLI获取数据,提升了数据获取的规范性与安全性。
- 1dfcb30 2026-07-25 08:24


