一键导入
notes-reminders
Manage quick notes and time-based reminders. Use when a user asks to save a note, create a reminder, list notes, or search through saved notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage quick notes and time-based reminders. Use when a user asks to save a note, create a reminder, list notes, or search through saved notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Get current weather using wttr.in (no API key required). Use when a user asks about weather, temperature, forecast, or conditions for any location.
Personal daily briefing and productivity assistant. Use when a user asks for a daily summary, morning briefing, or wants a productivity overview combining weather, reminders, and news.
Check soccer/football scores, game details, and player stats. Use when a user asks about football matches, scores, standings, or fixtures.
Manage and monitor a personal stock watchlist. Use when a user asks about stock prices, wants to add/remove stocks from their watchlist, or get a portfolio summary.
Control Amazon Alexa devices and smart home via the `alexacli` CLI. Use when a user asks to speak/announce on Echo devices, control lights/thermostats/locks, send voice commands, or query Alexa.
AI-optimized web search using Tavily API. Use when you need web search, current events, news, fact-checking, or research. Returns clean structured results optimized for AI. No browser needed.
| name | notes-reminders |
| description | Manage quick notes and time-based reminders. Use when a user asks to save a note, create a reminder, list notes, or search through saved notes. |
| metadata | {"openclaw":{"emoji":"📝","requires":{"bins":["bash"]}}} |
File-based notes and reminders stored in /openclaw-app/data/notes/.
✅ USE this skill when:
❌ DON'T use this skill when:
Notes are stored as individual files in /openclaw-app/data/notes/:
note_YYYYMMDD_HHMMSS.mdreminder_YYYYMMDD_HHMMSS.mdmkdir -p /openclaw-app/data/notes
cat > "/openclaw-app/data/notes/note_$(date +%Y%m%d_%H%M%S).md" << 'EOF'
# Note Title
Date: $(date -u +"%Y-%m-%d %H:%M UTC")
Content goes here.
EOF
mkdir -p /openclaw-app/data/notes
cat > "/openclaw-app/data/notes/reminder_$(date +%Y%m%d_%H%M%S).md" << 'EOF'
# Reminder
Due: YYYY-MM-DD HH:MM
Status: pending
Reminder content here.
EOF
ls -lt /openclaw-app/data/notes/note_* 2>/dev/null | head -20
grep -l "Status: pending" /openclaw-app/data/notes/reminder_* 2>/dev/null | while read f; do echo "=== $f ==="; cat "$f"; echo; done
grep -ril "search term" /openclaw-app/data/notes/ 2>/dev/null
cat /openclaw-app/data/notes/<filename>
sed -i 's/Status: pending/Status: done/' /openclaw-app/data/notes/<reminder_file>
rm /openclaw-app/data/notes/<filename>
/openclaw-app/data/ is mounted or backed up to S3