Agent Skills
› silverstein/minutes
› minutes-note
minutes-note
GitHub用于在会议录音期间添加带时间戳的笔记,或为过往会议文件追加标注。支持实时记录和事后补充,笔记作为高优先级上下文辅助 AI 总结,内容需为纯文本。
Trigger Scenarios
用户说 'note that'、'remember this'、'mark this as important'
用户要求 'add a note about' 或 'annotate the meeting'
用户在录音中或会后想要记录想法
Install
npx skills add silverstein/minutes --skill minutes-note -g -y
SKILL.md
Frontmatter
{
"name": "minutes-note",
"description": "Add a note to the current recording or annotate a past meeting. Use whenever the user says \"note that\", \"remember this\", \"mark this as important\", \"add a note about\", \"annotate the meeting\", or wants to capture a thought during or after a recording. Plain text input — no markdown needed.",
"user_invocable": true
}
/minutes-note
Add a timestamped note during a recording, or annotate a past meeting.
During a recording
# Add a note to the active recording (auto-timestamped)
minutes note "Alex wants monthly billing not annual billing"
minutes note "Case agreed — compromise at monthly billing for experiment"
Each note gets a timestamp matching the recording position (e.g., [4:23]). Notes feed into the LLM summarizer as high-priority context — the AI knows what you thought was important and weights those parts of the transcript more heavily in the summary.
After a meeting
# Annotate an existing meeting file
minutes note "Follow-up: Alex confirmed via email on Mar 18" --meeting ~/meetings/2026-03-17-pricing-call.md
Appends to the ## Notes section of the meeting file with a date stamp.
Tips
- Notes are plain text — just type what you're thinking, no formatting needed
- Short notes work best: "pricing pushback" > "Alex expressed concerns about the current pricing structure and suggested..."
- Notes are searchable via
minutes search
Gotchas
- Must have an active recording for live notes —
minutes note "..."without--meetingrequires a recording in progress. Check withminutes statusfirst. If no recording is active, use--meeting <path>to annotate an existing file. --meetingrequires the full path — Use the exact path fromminutes listorminutes search, e.g.,--meeting ~/meetings/2026-03-17-pricing-call.md. Tab completion works.- Notes don't support markdown — The note content is plain text. Markdown formatting like
**bold**or- listswill be stored literally, not rendered. - Quotes in notes need escaping — If your note contains quotes, wrap the whole thing in single quotes or escape them:
minutes note 'Alex said "no way"'.
Version History
- 1dfcb30 Current 2026-07-25 08:26


