Voice Memo
Capture voice input as text notes.
When to use
When user says record this, voice memo, save what I said, or dictate a note — especially from the voice channel.
How to use
- The voice channel has already converted speech to text
- get_current_time for timestamp
- Path: /data/agent/memory/daily/YYYY-MM-DD.md
- read_file to check if today's diary exists
- If exists: edit_file to append. If not: write_file to create
- Format: - [HH:MM] 🎤
- Confirm briefly: "Saved your voice memo."
Note
The 🎤 emoji prefix distinguishes voice memos from typed notes.
Example
User (voice): "记一下,明天下午三点开会" → get_current_time → 2026-03-28 14:20 → read_file /data/agent/memory/daily/2026-03-28.md (exists) → edit_file append "- [14:20] 🎤 明天下午三点开会" → "已保存语音备忘。"